:root {
    --primary-color: #1a2744;
    --secondary-color: #c8a84b;
    --light-bg: #f4f2ee;
    --success-color: #27ab6e;
    --teal-color: #20a69a;
    --border-color:#f2ecec;
}

* {
    font-family: 'Source Sans 3', sans-serif;
}
/* Google Custom Search Engine widget'ını gizlemek için */
#___gcse_0{display: none;}

body {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
}

/* ============ BREADCRUMB ============ */
.breadcrumb-section {
    background: #fff;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 13px;
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.15s;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}
/* HEADER */
.site-header {
    background: var(--primary-color);
    padding: 0;
    border-bottom: 3px solid var(--secondary-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Lora', serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff !important;
    letter-spacing: -0.3px;
}

.navbar-brand span {
    color: var(--secondary-color);
}

.nav-link {
    color: #ccd3e8 !important;
    font-size: 13px;
    transition: color 0.3s;
    padding: 0.5rem 0.75rem !important;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #1a2744 0%, #2c3e6b 60%, #1a2744 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);
}


/* 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;
}

/* lawyer GRID */
.lawyer-card {
    background: #fff;
    border: 0.5px solid #ddd;
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.lawyer-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(26, 39, 68, 0.15);
    color: inherit;
    text-decoration: none;
}

.lawyer-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--primary-color);
    border: 2px solid #e8e4d8;
    background: #f8f5ee;
    flex-shrink: 0;
}

.lawyer-name {
    font-size: 12px;
    color: #444;
    font-weight: 500;
    line-height: 1.3;
}

.lawyer-count {
    font-size: 11px;
    color: #999;
}
.lawyer-card .lawyer-count {
    font-size: 11px;
    color: #999;
}
/* 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;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.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);
}

.lawyer-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,.av-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);
}
.sidebar-description {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}

.sidebar-link {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: #c8a84b;
    text-decoration: none;
    font-weight: 500;
}
.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;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}
/* Makale Listesi Stilleri */
.articles-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 30px;
}

.articles-header {
    background: linear-gradient(135deg, #009688 0%, #34495e 100%);
    color: white;
    padding: 25px 30px;
    text-align: center;
}

.articles-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.articles-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.articles-list {
    padding: 30px;
}

.article-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-item:hover {
    background: #e8f4f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-item:last-child {
    margin-bottom: 0;
}

.article-title {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 8px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.article-date {
    display: flex;
    align-items: center;
}

.article-category {
    background: #3498db;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.article-excerpt {
    color: #555;
    line-height: 1.5;
}

.no-articles {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    padding: 40px;
}
.reviews-card
 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

            .lawyer-header {
                display: flex;
                align-items: center;
                border-bottom: 2px solid #f0f0f0;
            }


            .lawyer-info h2 {
                color: #333;
                margin-bottom: 8px;
                font-size: 24px;
            }

            .lawyer-info p {
                color: #666;
                font-size: 16px;
                margin-bottom: 5px;
            }

            .rating-summary {
                display: flex;
                align-items: center;
                margin-top: 10px;
            }

            .stars-display {
                display: flex;
                margin-right: 15px;
            }

            .star {
                font-size: 20px;
                color: #ddd;
                cursor: pointer;
                transition: all 0.3s ease;
                margin-right: 2px;
            }

            .star.filled {
                color: #ffd700;
            }

            .star:hover {
                transform: scale(1.2);
            }

            .rating-text {
                color: #666;
                font-size: 14px;
            }

            .review-form {
                background: #f8f9ff;
                border-radius: 15px;
                padding: 10px;
                margin: 10px 0;
                border: 2px solid #e8ecff;
            }

            .form-title {
                color: #333;
                font-size: 20px;
                margin-bottom: 20px;
                font-weight: 600;
            }

            .form-group label {
                display: block;
                margin-bottom: 8px;
                color: #333;
                font-weight: 500;
            }

            .rating-input {
                display: flex;
                align-items: center;
                margin-bottom: 15px;
            }

            .rating-stars {
                display: flex;
                margin-right: 15px;
            }

            .rating-star {
                font-size: 25px;
                color: #ddd;
                cursor: pointer;
                transition: all 0.3s ease;
                margin-right: 5px;
            }

            .rating-star:hover,
            .rating-star.active {
                color: #ffd700;
                transform: scale(1.1);
            }

            .rating-star:hover ~ .rating-star {
                color: #ddd;
            }

            .rating-value {
                font-size: 16px;
                color: #666;
                font-weight: 500;
            }

                        
            .reviews-section {
                margin-top: 30px;
            }

            .reviews-title {
                color: #333;
                font-size: 18px;
                margin-bottom: 20px;
                font-weight: 600;
            }

            .review-item {
                background: white;
                border-radius: 12px;
                padding: 10px;
                margin-bottom: 10px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
                border-left: 3px solid #c8a84b;
            }

            .review-header {
                display: flex;
                justify-content: between;
                align-items: center;
                margin-bottom: 10px;
            }

            .reviewer-name {
                font-weight: 600;
                color: #333;
                font-size: 14px;
            }

            .review-date {
                color: #999;
                font-size: 14px;
                margin-left: auto;
            }

            .review-rating {
                display: flex;
                margin: 8px 0;
            }

            .review-text {
                color: #555;
                line-height: 1.6;
                margin-top: 10px;
                font-size: 14px;
            }

            .stats-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
                margin: 20px 0;
            }

            .stat-card {
                background: linear-gradient(45deg, #667eea, #764ba2);
                color: white;
                padding: 20px;
                border-radius: 12px;
                text-align: center;
            }

            .stat-number {
                font-size: 28px;
                font-weight: bold;
                margin-bottom: 5px;
            }

            .stat-label {
                font-size: 14px;
                opacity: 0.9;
            }
/* ============ PAGE HEADER ============ */
.page-header {
    background: linear-gradient(135deg, #2c3e6b 0%, var(--primary-color) 100%);
    color: white;
    padding: 15px 0;
    margin-bottom: 40px;

}

.page-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ============ FAQ HERO SECTION ============ */
.faq-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4b55e 100%);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 24px rgba(26, 39, 68, 0.1);
    color: var(--primary-color);
    text-align: center;
}

.faq-hero h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.faq-hero p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.faq-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============ SEARCH BOX ============ */
.faq-search-section {
    margin-bottom: 40px;
}

.faq-search {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-search input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 15px;
    outline: none;
    background: white;
}

.faq-search button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 28px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.15s;
}

.faq-search button:hover {
    background: #2c3e6b;
}

/* ============ FAQ CATEGORIES ============ */
.faq-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 18px;
    border: 1.5px solid var(--border-color);
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ============ FAQ ACCORDION ============ */
.faq-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 16px rgba(26, 39, 68, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    transition: background 0.2s;
    user-select: none;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #f0e8cc 0%, #fffcf4 100%);
}

.faq-question:hover {
    background: linear-gradient(135deg, #f5f5f5 0%, #f0f0f0 100%);
}

.faq-item.active .faq-question:hover {
    background: linear-gradient(135deg, #f0e8cc 0%, #fffcf4 100%);
}

.question-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

.answer-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Answer with nested content */
.answer-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.answer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.answer-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.answer-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.answer-highlight {
    background: #fffcf4;
    padding: 12px 16px;
    border-left: 3px solid var(--secondary-color);
    border-radius: 4px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
}

/* ============ FAQ TAGS ============ */
.faq-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.faq-tag {
    display: inline-block;
    background: #eef1f8;
    color: #2c3e6b;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ============ HELPFUL WIDGET ============ */
.faq-helpful {
    padding: 16px;
    background: #f9f9f9;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    font-size: 13px;
}

.helpful-text {
    color: #666;
}

.helpful-buttons {
    display: flex;
    gap: 8px;
}

.helpful-btn {
    padding: 6px 12px;
    border: 0.5px solid var(--border-color);
    background: white;
    color: #666;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.15s;
}

.helpful-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ============ CONTACT SECTION ============ */
.faq-contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e6b 100%);
    color: white;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.faq-contact-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.faq-contact-section p {
    font-size: 15px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.faq-contact-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-contact {
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-contact {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary-contact:hover {
    background: #d4b55e;
}

.btn-secondary-contact {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-contact:hover {
    background: white;
    color: var(--primary-color);
}

.question-count {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* ============ 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 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;
    font-size: 12px;
    text-align: center;
}

/* ============ AD BOX ============ */
/* AD PLACEHOLDER */

.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;
}
/* Sidebar'daki reklam alanı için özel stil */
.ad-box {
    background: white;
    border: 1px dashed #ddd;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    color: #999;
    font-size: 12px;
    margin: 30px 0;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
}
.ad-box.ad-300-250 {
    width: 100%;
    min-width: 300px;
    height: 250px;
}

.ad-box.ad-728-90 {
    width: 100%;
    min-width: 728px;
    height: 90px;
}
.ad-box.ad-300-728 {
    width: 100%;
    max-width: 300px;
}
.ad-box.ad-468-60 {
    width: 100%;
    min-width: 468px;
}
/* ============ MAIN LISTING GRID ============ */
.listing-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.listing-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 18px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.listing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.listing-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(26, 39, 68, 0.12);
    transform: translateY(-4px);
}

.listing-card:hover::before {
    transform: scaleX(1);
}

.listing-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #eef1f8 0%, #f8f5ee 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.listing-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
    margin: 0;
}

.listing-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    color: #999;
    margin-top: auto;
    padding-top: 12px;
    border-top: 0.5px solid #f0f0f0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

.listing-badge {
    display: inline-block;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 12px;
    background: #eef1f8;
    color: #2c3e6b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    width: fit-content;
}

.listing-badge.highlight {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4b55e 100%);
    color: var(--primary-color);
}

/* ============ LISTING VARIATION: COMPACT ROW ============ */
.listing-type-row .listing-card {
    grid-template-columns: auto 1fr auto;
    display: grid;
    padding: 14px 16px;
    border-radius: 6px;
    gap: 16px;
    align-items: center;
}

.listing-type-row .listing-icon {
    grid-column: 1;
    grid-row: 1 / 3;
}

.listing-type-row .listing-title {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
}

.listing-type-row .listing-meta {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.listing-type-row .listing-badge {
    grid-column: 3;
    grid-row: 1 / 3;
    justify-self: end;
    align-self: center;
}
/* ============ PAGINATION ============ */
.pagination-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 4px;
}

.pagination li {
    display: flex;
}

.pagination a,
.pagination .page-link {
    padding: 8px 12px;
    border: 0.5px solid var(--border-color);
    border-radius: 6px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s;
    display: block;
}

.pagination a:hover,
.pagination .page-link:not(.disabled):hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination .active a,
.pagination .page-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination .disabled a,
.pagination .page-link.disabled {
    color: #ccc;
    pointer-events: none;
}

.page-info {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
}
@media(max-width: 500px) {
    .ad-728-90,.ad-300-250,.ad-300-728,.ad-468-60 { 
        width: 100%; 
        height: auto; 
    }
}
/* RESPONSIVE */

@media (max-width: 768px) {
    .ad-728-90,
        .ad-300-250,
        .ad-300-728,
        .ad-468-60 {
            width: 100%;
            height: auto;
        }
.faq-hero {
        padding: 30px;
    }

    .faq-hero h2 {
        font-size: 20px;
    }

    .faq-stats {
        gap: 12px;
    }

    .faq-question {
        padding: 16px;
    }

    .question-text {
        font-size: 14px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .faq-contact-buttons {
        flex-direction: column;
    }

    .btn-contact {
        width: 100%;
    }
    .lawyer-header {
        flex-direction: column;
        text-align: center;
    }

    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .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;
    }
    .footer {
        padding: 40px 0 20px 0;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 40px;
    }

    .footer-section {
        margin-bottom: 40px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
    .articles-list {
        padding: 20px;
    }
        .listing-container {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 12px;
        }
    
        .listing-card {
            padding: 14px;
        }
    
        .listing-icon {
            width: 36px;
            height: 36px;
            font-size: 16px;
        }
    
        .listing-title {
            font-size: 13px;
        }
            .page-info {
                font-size: 12px;
            }
    
            .pagination a,
            .pagination .page-link {
                padding: 6px 10px;
                font-size: 12px;
            }
}
@media (max-width: 992px) {
    .listing-container {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}
/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-card {
    animation: fadeIn 0.5s ease-out forwards;
}
.lawyer-list {
    padding: 20px;
}

.lawyer-list-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
}

.lawyer-list-item:last-child {
    border-bottom: none;
}

.lawyer-list-item:hover {
    color: #dc3545;
    transform: translateX(5px);
}

.lawyer-list-item i {
    color: #1f2e4f;
    margin-right: 10px;
    width: 15px;
}
.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    padding: 8px 0;
    border-bottom: 0.5px solid #f0f0f0;
}

.filter-list li:last-child {
    border-bottom: none;
}

.filter-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.15s;
}

.filter-list a:hover {
    color: var(--secondary-color);
}

.filter-count {
    color: #999;
    font-size: 11px;
    font-weight: 600;
}

.nav-link {
    color: #ccd3e8 !important;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}


/* PROFILE HERO */
.profile-hero {
    background: linear-gradient(135deg, #2c3e6b 0%, var(--primary-color) 100%);
    color: white;
    padding: 30px 0;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-header {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    flex-shrink: 0;
}

.profile-info h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

.profile-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
    font-size: 13px;
}

.profile-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-meta-item.verified {
    background: rgba(39, 171, 110, 0.2);
    padding: 5px 10px;
    border-radius: 6px;
    color: #fff;
}

/* RATING & STATUS */
.rating-section {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.rating-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stars {
    color: var(--secondary-color);
}

/* TABS */
.nav-tabs {
    border-bottom: 2px solid #e0e0e0;
}

.nav-tabs .nav-link {
    color: var(--primary-color);
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 500;
    padding: 12px 0;
    margin-right: 20px;
}

.nav-tabs .nav-link:hover {
    border-bottom-color: var(--secondary-color);
    color: var(--secondary-color);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
    background: transparent;
}

/* INFO CARDS */
.info-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s, transform 0.3s;
}

.info-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.info-item label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.info-item {
    margin-bottom: 10px;
}

.info-item p {
    font-size: 14px;
    margin: 0;
    color: var(--primary-color);
    font-weight: 500;
}

/* CONTACT BUTTONS */
.contact-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.btn-contact {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    transition: all 0.3s;
}

.btn-primary-custom {
    background: var(--primary-color);
    color: white;
}

.btn-primary-custom:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary-custom:hover {
    background: var(--primary-color);
    color: white;
}

.btn-danger-custom {
    background: var(--danger-color);
    color: white;
}

.btn-danger-custom:hover {
    background: #b81b6e;
    color: white;
}

.btn-success-custom {
    background: var(--success-color);
    color: white;
}

.btn-success-custom:hover {
    background: #1f8b59;
    color: white;
}

/* BADGE */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: rgba(39, 171, 110, 0.15);
    color: var(--success-color);
}

.status-inactive {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
}

.status-pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ff9800;
}

/* SECTION HEADER */
.section-header {
    background: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
}

.section-header h3 {
    font-size: 16px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* LIST ITEMS */
.list-item {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item:hover {
    background: #fafafa;
}

.list-item-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 4px;
}

.list-item-meta {
    font-size: 12px;
    color: #999;
}

/* MAP SECTION */
.map-container {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: 300px;
    margin-bottom: 20px;
}

/* SIDEBAR */
.sidebar-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.verification-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
}

.verification-check:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--success-color);
    font-weight: bold;
}

.check-icon.fail {
    color: #dc3545;
}

/* WARNING BOX */
.warning-box {
    background: #fffbea;
    border-left: 4px solid #ff9800;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 13px;
}

/* FOOTER */
.site-footer {
    background: var(--primary-color);
    color: #8a9bbf;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.site-footer h5 {
    color: white;
    font-size: 15px;
    margin-bottom: 15px;
}

.site-footer a {
    color: #8a9bbf;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.8;
}

.site-footer a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 12px;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-info h1 {
        font-size: 22px;
    }

    .profile-meta {
        justify-content: center;
    }

    .info-row {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .btn-contact {
        width: 100%;
        text-align: center;
    }

    .nav-tabs .nav-link {
        margin-right: 10px;
        padding: 10px 0;
        font-size: 13px;
    }

    .map-container {
        height: 200px;
    }
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card {
    animation: fadeIn 0.5s ease-out forwards;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
         