/* =================================================================
    1. TEMEL KURULUM, FONT VE RENK PALETİ
================================================================= */
:root {
    --primary-blue: #367cff;
    --primary-blue-dark: #1e5fe8;
    --light-blue-bg: #f0f6ff;
    --purple: #6f42c1;
    --gradient-main: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    --dark-text: #2d3436;
    --light-text: #636e72;
    --background-color: #FFFFFF;
    --card-background: #FFFFFF;
    --border-color: #dfe6e9;
    --font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--dark-text);
    font-family: var(--font-family);
    padding-top: 80px;
}

/* =================================================================
    2. NAVBAR & GENEL BUTONLAR
================================================================= */
.navbar {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.navbar-brand .brand-highlight {
    color: var(--primary-blue);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--light-text);
    font-weight: 500;
    transition: color 0.2s ease;
}

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary-blue);
    }

.btn-nav-secondary,
.btn-nav-primary {
    border-radius: 50rem;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-nav-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

    .btn-nav-secondary:hover {
        background-color: var(--primary-blue);
        color: white;
    }

.btn-nav-primary {
    background: var(--gradient-main);
    color: white;
    border: none;
}

    .btn-nav-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(54, 124, 255, 0.4);
    }

.btn-purple {
    background: linear-gradient(to right, #4a90e2, #5a7edc, #6b6cd6);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .btn-purple:hover {
        background: linear-gradient(to right, #3a82d0, #4c71cb, #5d5cc6);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        transform: translateY(-2px);
    }

/* =================================================================
    3. HERO SECTION & GENEL BÖLÜM BAŞLIKLARI
================================================================= */
.hero-wrapper {
    background-color: var(--light-blue-bg);
    padding: 6rem 0;
    margin-top: -80px;
    padding-top: calc(80px + 6rem);
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--dark-text);
}

    .hero-headline .highlight-text {
        color: var(--primary-blue);
    }

.hero-subheadline {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 650px;
    margin: 1.5rem auto 0 auto;
}

.main-search-container {
    max-width: 700px;
    background: var(--card-background);
    border-radius: 50rem;
    padding: 0.5rem;
    padding-left: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: 2.5rem !important;
}

.search-icon {
    color: var(--light-text);
    margin-right: 0.75rem;
}

.main-search-input {
    border: none;
    background: transparent;
    padding: 0.75rem 0;
    font-size: 1rem;
}

    .main-search-input:focus {
        box-shadow: none;
        background: transparent;
    }

.btn-action {
    background: var(--gradient-main);
    color: white;
    border-radius: 50rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .btn-action:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(54, 124, 255, 0.4);
    }

.section-heading {
    font-weight: 700;
    color: var(--dark-text);
}

.section-subheading {
    color: var(--light-text);
    font-size: 1.1rem;
}


/* =================================================================
    4. ANA SAYFA BÖLÜMLERİ
================================================================= */
.why-us-section {
    background: var(--gradient-main);
    color: white;
}

    .why-us-section .section-heading,
    .why-us-section .section-subheading {
        color: white;
    }

.feature-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    height: 100%;
    transition: background-color: 0.3s ease;
}

    .feature-item:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: var(--primary-blue);
    border-radius: 50%;
    font-size: 1.25rem;
    margin-right: 1.5rem;
}

.feature-text h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.how-to-start-section {
    background-color: var(--light-blue-bg);
}

.start-panel {
    background-color: var(--card-background);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.panel-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.start-panel ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--light-text);
    font-weight: 500;
}

.step-icon-small {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-main);
    color: white;
    font-size: 1rem;
    margin-right: 1rem;
}

/* =================================================================
    5. ORTAK KART STILLERİ
================================================================= */
.profile-card {
    background-color: var(--card-background);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    cursor: pointer;
}

    .profile-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(45, 52, 54, 0.1);
        border-color: var(--primary-blue);
    }

.profile-header {
    display: flex;
    align-items: center;
    padding: 1rem;
}

.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid var(--light-blue-bg);
}

.profile-info {
    line-height: 1.2;
}

.profile-location {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--light-text);
    text-transform: uppercase;
}

.profile-name {
    font-weight: 600;
    color: var(--dark-text);
    margin: 0.25rem 0;
}

.profile-rating {
    color: #ffc107;
    font-size: 0.9rem;
}

.profile-body {
    padding: 1rem;
    background-color: var(--light-blue-bg);
    font-size: 0.85rem;
    color: var(--dark-text);
    line-height: 1.6;
}

.job-post-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background-color: var(--card-background);
    transition: all 0.3s ease;
}

    .job-post-card:hover {
        border-color: var(--primary-blue);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transform: translateY(-4px);
    }

.job-post-card-image {
    flex-shrink: 0;
    text-align: center;
    color: var(--light-text);
}

.job-id {
    display: block;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.job-post-card-content {
    flex-grow: 1;
}

.job-title a {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

    .job-title a:hover {
        color: var(--primary-blue);
    }

.job-location {
    font-size: 0.9rem;
    margin: 0.25rem 0 0.75rem 0;
}

.job-tags .badge {
    font-size: 0.75rem;
    padding: 0.4em 0.8em;
    font-weight: 500;
}

.job-post-card-actions {
    flex-shrink: 0;
    text-align: right;
}

.job-date {
    font-size: 0.8rem;
}

.helper-card-rich {
    display: flex;
    gap: 1.5rem;
    border: 1px solid var(--border-color);
    background-color: var(--card-background);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

    .helper-card-rich:hover {
        border-color: var(--primary-blue);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
        transform: translateY(-5px);
    }

.helper-card-rich-img {
    flex-shrink: 0;
}

    .helper-card-rich-img img {
        width: 120px;
        height: 120px;
        border-radius: 12px;
        object-fit: cover;
    }

.helper-card-rich-body {
    flex-grow: 1;
}

.card-body-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

.card-body-title {
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0;
    color: var(--dark-text);
}

ul.card-body-details {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: var(--light-text);
}

    ul.card-body-details li {
        display: flex;
        align-items: center;
        margin-bottom: 0.6rem;
    }

        /* İKON BOŞLUK SORUNU İÇİN GÜNCELLENMİŞ KURAL */
        ul.card-body-details li i.fas {
            margin-right: 0.5rem !important;
            color: var(--primary-blue);
            width: auto;
        }

.card-body-summary {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

/* =================================================================
    6. FİLTRELEME SİDEBAR
================================================================= */
.filter-sidebar {
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
}

.filter-title {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-group {
    margin-bottom: 1.5rem;
}

    .filter-group h6 {
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--dark-text);
        margin-bottom: 0.75rem;
    }

    .filter-group .form-check-label {
        font-size: 0.9rem;
        color: var(--light-text);
    }


/* =================================================================
    7. SAYFALAMA (PAGINATION)
================================================================= */
.pagination {
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(54, 124, 255, 0.25);
    --bs-pagination-active-bg: var(--primary-blue);
    --bs-pagination-active-border-color: var(--primary-blue);
    --bs-pagination-color: var(--primary-blue);
}

    .pagination .page-link {
        transition: all 0.2s ease;
    }

/* =================================================================
    8. ZİYARETÇİ MODALI İÇİN BLUR EFEKTİ
================================================================= */
.blurred-content {
    filter: blur(5px);
    pointer-events: none;
    transition: filter 0.5s ease;
}

/* =================================================================
    9. GÜNCELLENMİŞ FOOTER TASARIMI
================================================================= */
.site-footer {
    background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
    color: #e0e0e0;
    font-size: 0.9rem;
}

    .site-footer .footer-brand {
        font-weight: 700;
        color: #ffffff;
        font-size: 1.75rem;
    }

        .site-footer .footer-brand .brand-highlight {
            color: var(--primary-blue);
        }

    .site-footer .footer-title {
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 1.25rem;
        position: relative;
        padding-bottom: 0.5rem;
        display: inline-block;
    }

        .site-footer .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: #6dd5ed;
        }

    .site-footer .footer-link {
        color: #b0c4de;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .site-footer .footer-link:hover {
            color: #ffffff;
            transform: translateX(4px);
        }

    .site-footer ul li {
        display: flex;
        align-items: center;
    }

    .site-footer .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: transparent;
        border: 1px solid #b0c4de;
        color: #b0c4de;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        margin-right: 0.5rem;
        transition: all 0.3s ease;
    }

        .site-footer .social-icon:hover {
            background: #ffffff;
            color: #2a5298;
            transform: translateY(-3px);
            border-color: #ffffff;
        }

.footer-logo-container .fas {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

/* =================================================================
    10. YORUM YAPMA İÇİN YILDIZ DEĞERLENDİRME (DÜZELTİLMİŞ)
================================================================= */
.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    margin-left: -5px;
}

    .rating > input {
        display: none;
    }

    .rating > label {
        color: #ddd;
        cursor: pointer;
        font-size: 2rem;
        transition: color 0.2s;
        padding: 0 5px;
    }

        .rating > label:hover,
        .rating > label:hover ~ label {
            color: #ffc107;
        }

    .rating > input:checked ~ label {
        color: #ffc107;
    }

.profile-rating-list {
    font-size: 1rem;
}

.message-sent .d-flex.align-items-center {
    position: relative;
}

.delete-msg-btn {
    position: absolute;
    top: 50%;
    left: -35px;
    transform: translateY(-50%);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    padding: 0 5px;
    line-height: 1;
    font-size: 1.2rem;
    border: none;
    background: transparent;
    color: #dc3545;
    cursor: pointer;
}

.message-sent:hover .delete-msg-btn {
    visibility: visible;
    opacity: 1;
}


/* =================================================================
    12. ANA SAYFA AKSİYON KARTLARI
================================================================= */
.action-cards-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    margin-top: -80px;
    position: relative;
    background-color: white;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem;
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

    .action-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(54, 124, 255, 0.2);
        border-color: var(--primary-blue);
    }

.action-card__icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-main);
    color: white;
    margin-bottom: 1.5rem;
}

.action-card__title {
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.action-card__text {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.action-card__button {
    margin-top: auto;
    font-weight: 600;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.action-card:hover .action-card__button {
    transform: scale(1.05);
}

/* =================================================================
    13. BAŞA DÖN BUTONU
================================================================= */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
    z-index: 1000;
    background-color: var(--primary-blue);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 0;
    line-height: 50px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

    .back-to-top:hover {
        background-color: var(--primary-blue-dark);
        transform: translateY(-3px);
    }

/* =================================================================
    14. MAKALELER SAYFASI TASARIMI
================================================================= */
.filter-list .list-group-item {
    padding: 0;
    border: none;
    background: transparent;
    margin-bottom: 5px;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
}

    .filter-list .list-group-item.active {
        background-color: var(--primary-blue);
        box-shadow: 0 4px 10px rgba(54, 124, 255, 0.3);
    }

        .filter-list .list-group-item.active .filter-link {
            color: white;
            font-weight: 600;
        }

.filter-link {
    text-decoration: none;
    color: var(--dark-text);
    display: block;
    padding: 0.75rem 1.25rem;
    transition: all 0.2s ease-in-out;
}

    .filter-link:hover {
        color: var(--primary-blue);
        background-color: #e9ecef;
        border-radius: 0.375rem;
    }

.filter-list .list-group-item.active .filter-link:hover {
    color: white;
}

.article-card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

    .article-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

.article-card-img {
    height: 200px;
    object-fit: cover;
}

.article-card-title a {
    text-decoration: none;
    color: var(--dark-text);
    transition: color 0.2s ease;
}

    .article-card-title a:hover {
        color: var(--primary-blue);
    }

.article-card-excerpt {
    font-size: 0.9rem;
    color: var(--light-text);
}

.article-card-footer {
    background-color: transparent;
    border-top: 1px solid #e9ecef;
}

/* =================================================================
    15. YAN MENÜ (OFFCANVAS) YENİ TASARIMI
================================================================= */
.offcanvas {
    border-left: 1px solid var(--border-color);
    box-shadow: -8px 0 30px rgba(0,0,0,0.1);
    --bs-offcanvas-width: 300px;
}

.offcanvas-header {
    padding: 1rem 1.5rem;
}

.offcanvas-title {
    font-weight: 600;
    color: var(--dark-text);
}

.offcanvas-profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--light-blue-bg);
    border-bottom: 1px solid var(--border-color);
}

    .offcanvas-profile-header img {
        width: 50px;
        height: 50px;
        object-fit: cover;
    }

    .offcanvas-profile-header .profile-info h6 {
        font-weight: 600;
        font-size: 1rem;
    }

#mainNavOffcanvas .nav-link {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--dark-text);
    border-radius: 8px;
    margin-bottom: 0.25rem;
    transition: all 0.2s ease-in-out;
}

    #mainNavOffcanvas .nav-link:hover {
        background-color: var(--light-blue-bg);
        color: var(--primary-blue);
        transform: translateX(4px);
    }

    #mainNavOffcanvas .nav-link .fa-fw {
        width: 28px;
        font-size: 0.95rem;
        color: var(--light-text);
        transition: color 0.2s ease-in-out;
    }

    #mainNavOffcanvas .nav-link:hover .fa-fw {
        color: var(--primary-blue);
    }

.offcanvas-logout-footer {
    margin-top: auto;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-top: 1px solid var(--border-color);
}

/* =================================================================
   YENİ EKLENEN: OFFCANVAS DANIŞMANLIK BUTONU STİLLERİ
================================================================= */
.offcanvas-danismanlik-footer {
    padding: 1.25rem 1.5rem;
    background-color: #f8f9fa;
    border-top: 1px solid var(--border-color);
}

.btn-danismanlik {
    display: block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-main);
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 50rem;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(54, 124, 255, 0.25);
}

    .btn-danismanlik:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(54, 124, 255, 0.4);
        color: white;
    }


/* =================================================================
    16. ÖZEL DÜZELTMELER VE EKLEMELER
================================================================= */

#message-notification-badge {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    top: auto;
    right: auto;
}

.background-icons-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.background-icon {
    position: absolute;
    font-size: 4rem;
    color: rgba(0, 86, 179, 0.07);
    animation: floatAnimation 25s infinite ease-in-out;
}

    .background-icon.icon-1 {
        top: 10%;
        left: 5%;
        animation-delay: 0s;
        transform: scale(0.8);
    }

    .background-icon.icon-2 {
        top: 20%;
        right: 10%;
        animation-delay: -2s;
        transform: scale(1.2);
    }

    .background-icon.icon-3 {
        bottom: 15%;
        left: 15%;
        animation-delay: -4s;
        transform: scale(0.7);
    }

    .background-icon.icon-4 {
        top: 30%;
        left: 25%;
        animation-delay: -6s;
        transform: scale(1.1);
    }

    .background-icon.icon-5 {
        bottom: 25%;
        right: 20%;
        animation-delay: -8s;
        transform: scale(0.9);
    }

    .background-icon.icon-6 {
        top: 5%;
        right: 30%;
        animation-delay: -10s;
        transform: scale(0.6);
    }

    .background-icon.icon-7 {
        bottom: 5%;
        left: 40%;
        animation-delay: -12s;
        transform: scale(1.3);
    }

    .background-icon.icon-8 {
        top: 40%;
        right: 5%;
        animation-delay: -14s;
        transform: scale(0.85);
    }

    .background-icon.icon-9 {
        top: 60%;
        left: 8%;
        animation-delay: -1s;
        transform: scale(1.0);
    }

    .background-icon.icon-10 {
        bottom: 30%;
        left: 30%;
        animation-delay: -3s;
        transform: scale(0.75);
    }

    .background-icon.icon-11 {
        top: 15%;
        left: 60%;
        animation-delay: -5s;
        transform: scale(0.9);
    }

    .background-icon.icon-12 {
        bottom: 10%;
        right: 40%;
        animation-delay: -7s;
        transform: scale(1.1);
    }

    .background-icon.icon-13 {
        top: 50%;
        left: 5%;
        animation-delay: -9s;
        transform: scale(0.7);
    }

    .background-icon.icon-14 {
        top: 50%;
        right: 50%;
        animation-delay: -11s;
        transform: scale(1.2);
    }

    .background-icon.icon-15 {
        top: 25%;
        right: 25%;
        animation-delay: -13s;
        transform: scale(0.8);
    }

    .background-icon.icon-16 {
        bottom: 5%;
        right: 5%;
        animation-delay: -15s;
        transform: scale(1.05);
    }

@keyframes floatAnimation {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-20px) translateX(15px);
    }

    50% {
        transform: translateY(10px) translateX(-15px);
    }

    75% {
        transform: translateY(-15px) translateX(20px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}

/* =================================================================
   17. YARDIMCI PROFİL KARTI İYİLEŞTİRMELERİ (Kompakt Görünüm)
================================================================= */
.helper-card-rich {
    padding: 1rem;
    gap: 1rem;
    align-items: flex-start;
}

.helper-card-rich-img img {
    width: 90px;
    height: 90px;
}

.card-body-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
}

.card-body-title {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.profile-rating-list {
    margin-top: 0.1rem;
}

ul.card-body-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.85rem;
}

    ul.card-body-details li {
        margin-bottom: 0;
    }

.card-body-header .btn-purple {
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* =================================================================
   18. ANA SAYFA KATEGORİ KARTLARI
================================================================= */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    color: var(--dark-text);
    height: 140px;
}

    .category-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-blue);
    }

.category-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.category-card__title {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
}

/* Renk Varyasyonları */
.category-card--blue {
    background-color: var(--light-blue-bg);
    border-color: #cce0ff;
}

    .category-card--blue .category-card__icon {
        color: var(--primary-blue);
    }

.category-card--green {
    background-color: #eaf8f0;
    border-color: #bce6cf;
}

    .category-card--green .category-card__icon {
        color: #28a745;
    }

.category-card--orange {
    background-color: #fff4e6;
    border-color: #ffe0b3;
}

    .category-card--orange .category-card__icon {
        color: #fd7e14;
    }

.category-card--purple {
    background-color: #f1eefe;
    border-color: #d6cbfb;
}

    .category-card--purple .category-card__icon {
        color: var(--purple);
    }

.category-card--teal {
    background-color: #e9f7f7;
    border-color: #bceaea;
}

    .category-card--teal .category-card__icon {
        color: #20c997;
    }

.category-card--dark-blue {
    background-color: #eef3f8;
    border-color: #d1e0ee;
}

    .category-card--dark-blue .category-card__icon {
        color: #0d6efd;
    }


/* =================================================================
   19. ANA SAYFA DANIŞMANLIK FORMU
================================================================= */
.cta-form-container {
    display: flex;
    background-color: var(--card-background);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(45, 52, 54, 0.12);
    overflow: hidden;
    min-height: 150px;
}

.cta-form-text {
    background-color: var(--primary-blue); /* Mor yerine ana mavi */
    color: white;
    padding: 2rem 2.5rem;
    flex-basis: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-radius: 24px 80px 80px 24px; /* Bu satır kıvrımlı görünümü sağlar */
    margin-right: -60px; /* Form alanının metnin üzerine gelmesi için */
}

.cta-title {
    font-weight: 700;
    font-size: 1.75rem;
    margin: 0;
}

.cta-subtitle {
    margin: 0.5rem 0 0 0;
    opacity: 0.85;
    font-size: 0.9rem;
}

.cta-form-fields {
    flex-grow: 1;
    padding: 2rem 2.5rem 2rem 5rem; /* Soldaki boşluk, kıvrımın üzerine gelmesi için artırıldı */
    display: flex;
    align-items: center;
}

/* Altı Çizgili Form Stilleri */
.form-group-underline {
    position: relative;
    padding: 10px 0;
}

    .form-group-underline input {
        width: 100%;
        border: none;
        border-bottom: 2px solid #ccc;
        padding: 8px 0;
        background-color: transparent;
        font-size: 1rem;
        color: var(--dark-text);
        position: relative;
        z-index: 1;
    }

        .form-group-underline input:focus {
            outline: none;
            border-bottom-color: var(--primary-blue); /* Mor yerine ana mavi */
        }

    .form-group-underline label {
        position: absolute;
        top: 18px;
        left: 0;
        color: var(--light-text);
        transition: all 0.2s ease-in-out;
        pointer-events: none; /* Etiketin input'a tıklamayı engellememesi için */
    }

    .form-group-underline input:focus + label,
    .form-group-underline input:valid + label {
        top: -5px;
        font-size: 0.8rem;
        color: var(--primary-blue); /* Mor yerine ana mavi */
    }

/* CTA Buton Stili (Not: Sınıf adı "purple" kalsa da renkler mavidir) */
.btn-cta-purple {
    background-color: var(--primary-blue); /* Mor yerine ana mavi */
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .btn-cta-purple:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(54, 124, 255, 0.4); /* Mavi tonlarında gölge */
        background-color: var(--primary-blue-dark); /* Koyu mavi hover rengi */
    }

/* Mobil cihazlar için düzenleme */
@media (max-width: 992px) {
    .cta-form-container {
        flex-direction: column;
    }

    .cta-form-text {
        border-radius: 24px 24px 0 0;
        margin-right: 0;
        text-align: center;
    }

    .cta-form-fields {
        padding: 2rem;
    }

        .cta-form-fields form {
            flex-direction: column;
            width: 100%;
        }

    .form-group-underline {
        width: 100%;
    }
}
/* =================================================================
   İLAN KARTI İKON STİLİ (YENİ EKLENDİ)
================================================================= */
.job-category-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-blue-bg); /* Sitenizin mevcut açık mavi rengi */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem; /* İkonu büyütür */
    color: var(--primary-blue); /* Sitenizin ana mavi rengi */
    margin: 0 auto 0.5rem auto; /* Daireyi ortalar ve altına boşluk ekler */
}