/* ============================================
   QAQC Job Portal - Base44 Clone
   Bootstrap 5 Compatible | Fully Responsive
   ============================================ */

:root {
    --primary: #1e3a5f;
    --primary-dark: #0a2a44;
    --primary-light: #2d5a87;
    --secondary: #d4af37;
    --secondary-dark: #b8962e;
    --secondary-light: #e6c44c;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --black: #000000;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --radius-sm: 0.5rem;
    --radius: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
}

/* Base Styles */
body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: var(--gray-800);
    background-color: var(--gray-50);
    line-height: 1.5;
    overflow-x: hidden;
}

/* ============================================
   HEADER - Base44 Style
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.site-header .navbar {
    padding: 0.75rem 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--gray-500);
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: var(--gray-700);
    transition: var(--transition);
    border-radius: 0.5rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
    background: rgba(30, 58, 95, 0.08);
}

.btn-outline-primary-custom {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background: transparent;
    transition: var(--transition);
}

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

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: var(--white);
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   HERO SLIDER - Base44 Style
   ============================================ */
/* ============================================
   HERO SECTION WITH BACKGROUND SLIDER
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 70px;
    padding: 80px 0 60px;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.hero-bg-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(10, 42, 68, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    color: var(--white);
    padding: 20px 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Search Form */
.search-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 60px;
    padding: 0.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.search-form input,
.search-form select {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 60px;
}

.search-form button {
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 60px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Popular Tags */
.popular-tags .badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.popular-tags .badge:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Hero Statistics Cards */
.hero-stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1.2rem 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary);
}

.hero-stat-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.hero-stat-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ============================================
   BUTTONS - Geniş Padding
   ============================================ */
.btn-primary-custom,
.btn-outline-primary-custom,
.btn-premium,
.btn-premium-outline {
    padding: 0.9rem 2rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
}

.btn-sm {
    padding: 0.5rem 1.2rem !important;
}

.btn-lg {
    padding: 1rem 2.5rem !important;
}

/* ============================================
   RESPONSIVE - HERO
   ============================================ */
@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .search-form {
        border-radius: 1rem;
        padding: 1rem;
    }
    
    .search-form button {
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .hero-stat-card h2 {
        font-size: 1.4rem;
    }
    
    .hero-stat-card p {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
  .popular-tags .badge {
    padding: 0.35rem 0.75rem !important;
    font-size: 0.6rem;
    margin-bottom: 5px;
}
    
    .hero-stat-card {
        padding: 0.8rem 0.5rem;
    }
    
    .hero-stat-card h2 {
        font-size: 1.2rem;
    }
    
    .hero-stat-card p {
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.4rem;
    }
    
    .search-form input,
    .search-form select {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .search-form button {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-stat-card h2 {
        font-size: 1rem;
    }
    
    .hero-stat-card p {
        font-size: 0.6rem;
    }
}
/* Popular Tags */
.popular-tags .badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.popular-tags .badge:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ============================================
   STATISTICS - Glassmorphism
   ============================================ */
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-card i {
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.stat-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-card p {
    color: var(--gray-500);
    margin: 0;
    font-size: 0.875rem;
}

/* ============================================
   JOB CARDS
   ============================================ */
.card {
    border-radius: var(--radius);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.premium-card {
    position: relative;
    border-top: 4px solid var(--secondary);
}

.premium-card .badge {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
}

.company-logo-sm,
.company-logo-md {
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.company-logo-sm img,
.company-logo-md img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salary {
    font-weight: 700;
    color: var(--primary);
    background: rgba(30, 58, 95, 0.05);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.category-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.category-card:hover h6,
.category-card:hover small,
.category-card:hover i {
    color: var(--white) !important;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.category-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover img {
    transform: scale(1.03);
}

/* ============================================
   CTA SECTION
   ============================================ */
.bg-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
}

/* ============================================
   FOOTER - Base44 Style
   ============================================ */
.site-footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    
}

.footer-top {
    padding: 4rem 0 2rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
	text-decoration-line: none;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

.site-footer h6 {
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.site-footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
}

.site-footer ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 0.75rem 1rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: transparent;
}

.newsletter-form .btn {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    background: var(--secondary);
    color: var(--primary);
    font-weight: 600;
    border: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

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

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-4px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero-slider .carousel-caption h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-slider .carousel-item {
        min-height: 550px;
    }
    
    .hero-slider .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .hero-slider .carousel-caption p {
        font-size: 1rem;
    }
    
    .search-form {
        border-radius: 1rem;
        padding: 1rem;
    }
    
    .search-form button {
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .footer-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .site-header .navbar {
        padding: 0.5rem 0;
    }
    
    .hero-slider {
        margin-top: 60px;
    }
    
    .hero-slider .carousel-item {
        min-height: 500px;
    }
    
    .hero-slider .carousel-caption h1 {
        font-size: 1.6rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-card h2 {
        font-size: 1.5rem;
    }
    
    .stat-card p {
        font-size: 0.75rem;
    }
    
    .popular-tags .badge {
        padding: 0.35rem 0.75rem;
        font-size: 0.7rem;
    }
    
    .footer-top {
        padding: 2rem 0 1rem;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-slider .carousel-caption h1 {
        font-size: 1.3rem;
    }
    
    .hero-slider .carousel-caption p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .search-form input,
    .search-form select {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .search-form button {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .stat-card {
        padding: 0.75rem;
    }
    
    .stat-card h2 {
        font-size: 1.25rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-icon i {
        font-size: 1.25rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card, .stat-card, .category-card {
    animation: fadeInUp 0.5s ease forwards;
}

.card:nth-child(1) { animation-delay: 0.05s; }
.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.15s; }
.card:nth-child(4) { animation-delay: 0.2s; }

/* ============================================
   UTILITIES
   ============================================ */
.text-primary-custom {
    color: var(--primary) !important;
}

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

.bg-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
}

.transition-hover {
    transition: var(--transition);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Selection Styling */
::selection {
    background: var(--secondary);
    color: var(--primary);
}
@media (min-width: 992px){
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1.4rem;
}
}


/* ============================================
   NOTIFICATION PANEL - FIXED POSITION
   Always on top, no scroll issues
   ============================================ */
.notification-wrapper {
    position: relative;
    display: inline-block;
}

.notification-btn {
    transition: all 0.2s ease;
    cursor: pointer;
}

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

/* Fixed Panel - Always on top */
.notification-panel {
    position: fixed;
    top: 70px;
    right: 20px;
    width: 380px;
    max-width: calc(100vw - 40px);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    animation: notificationFadeIn 0.2s ease;
}

/* Responsive - mobile adjustments */
@media (max-width: 768px) {
    .notification-panel {
        top: 60px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
    }
}

@keyframes notificationFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification-panel-header {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 10;
}

.notification-panel-list {
    max-height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
}

.notification-panel-list::-webkit-scrollbar {
    width: 4px;
}

.notification-panel-list::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 4px;
}

.notification-panel-list::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.notification-item {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--gray-200);
    transition: background 0.2s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

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

.notification-item.unread {
    background: rgba(30, 58, 95, 0.05);
    border-left: 3px solid var(--primary);
}

.notification-icon {
    width: 36px;
    height: 36px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon i {
    font-size: 1rem;
    color: var(--primary);
}

.notification-time {
    font-size: 0.65rem;
    color: var(--gray-500);
}

.notification-panel-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--gray-200);
    text-align: center;
    background: var(--white);
    position: sticky;
    bottom: 0;
    z-index: 10;
}

/* Overlay when panel is open (optional) */
.notification-overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.dropdown-menu.show {
    display: block;
    z-index: 1111111;
    position: fixed;
    top: 100%;
    left: auto;
}


:root {
    --premium-gold: #c29d38;
    --urgent-red: #ff4d4d;
    --card-bg: #fffbf2; /* Görseldeki hafif krem rengi */
    --text-dark: #2c3e50;
    --text-gray: #7f8c8d;
    --salary-green: #27ae60;
}

.premium-section {  background: #fcfcfd; }

/* Header */
.premium-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.premium-title-wrapper { display: flex; align-items: center; gap: 10px; }
.vip-star { color: var(--premium-gold); font-size: 20px; }
.vip-text { color: var(--premium-gold); font-weight: 700; letter-spacing: 1px; }
.premium-heading { font-size: 26px; color: var(--text-dark); margin: 0; margin-left: 5px; font-weight: 800;}
.premium-view-all { color: #576574; text-decoration: none; font-weight: 500; display: flex; align-items: center; gap: 8px;padding: 10px 15px;border-radius: 5px;transition: all 0.1s linear }
.premium-view-all:hover,.p-details-link:hover {background: #f3f3f3; }
/* Grid */
.premium-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

/* Card Styling */
.premium-job-card {
    background: var(--card-bg);
    border: 1px solid #f9eecd;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    transition: 0.3s ease;
}
.premium-job-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(194, 157, 56, 0.1); }

.card-top-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; }
.badge-group { display: flex; gap: 8px; }

.badge-premium {
    background: var(--premium-gold);
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge-tacili {
    background: var(--urgent-red);
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
}

.premium-save-btn {
    background: #f1f2f6;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #95a5a6;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.premium-save-btn.saved { color: var(--premium-gold); }

/* Body */
.premium-card-body { display: flex; gap: 15px; margin-bottom: 15px; }

.company-logo-box {
    width: 65px;
    height: 65px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.company-logo-box img { width: 85%; height: 85%; object-fit: contain; }
.placeholder-logo { font-size: 24px; color: #bdc3c7; }

.job-title-text { font-size: 17px; margin: 0 0 5px 0; }
.job-title-text a { color: var(--text-dark); text-decoration: none; font-weight: 700;overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; }
.company-name-text { color: var(--text-gray); margin: 0 0 12px 0; font-size: 14px; }

.meta-row { display: flex; gap: 15px; }
.meta-item { font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.location { color: #8395a7; }
.salary { color: var(--salary-green); }

.card-sep { border: none; border-top: 1px solid #f1e6c9; margin: 15px 0; }

/* Footer */
.premium-card-footer { display: flex; justify-content: space-between; align-items: center; }

.tag-work-type {
    background: #e1f0ff;
    color: #3498db;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}
.tag-level {
    border: 1px solid #dcdde1;
    color: #2f3640;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    margin-left: 5px;
}

.footer-stats { color: #95a5a6; font-size: 13px; display: flex; gap: 12px; }

/* Responsive */
@media (max-width: 768px) {
    .premium-jobs-grid { grid-template-columns: 1fr; }
    .premium-heading { font-size: 20px !important; max-width: 120px; }
	.job-title-text a{ font-size: 16px;display:block !important }
	.main-section-title{font-size: 20px !important; max-width: 150px;}
	.p-job-title a{ max-width:100% !important;}
	.section-title{font-size: 20px !important;}
}


/* Ortak Ayarlar */
.section-top-info { display: flex; justify-content: space-between; align-items: flex-end; }
.main-section-title { font-size: 26px; font-weight: 800; color: #1e293b; margin: 0; }
.view-all-text { color: #64748b; text-decoration: none; font-weight: 600; font-size: 14px; }
.view-all-text:hover { color: #2563eb; }

/* 1. Popular Jobs (Trend) Tasarımı */
.trend-badge { background: #fff7ed; color: #f97316;  border-radius: 6px; font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; margin-bottom: 5px; }

.popular-job-card { 
    background: #fff; border-radius: 15px; border: 1px solid #f1f5f9; 
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); height: 100%; display: flex; flex-direction: column;
}
.popular-job-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-color: #cbd5e1; }

.p-card-body { padding: 20px; flex-grow: 1; }
.p-card-top { position: relative; display: flex; gap: 12px; margin-bottom: 15px; }
.p-company-logo img { width: 50px; height: 50px; border-radius: 10px; object-fit: cover; border: 1px solid #f1f5f9; }
.p-job-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.p-job-title a { color: #1e293b; text-decoration: none; overflow: hidden;display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; max-width: 180px;}
.l-job-title a{overflow: hidden;display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1;}
.p-company-name { font-size: 13px; color: #64748b; margin: 0; }

.p-featured-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: #d4af371a;
    color: rgb(212 175 55 );
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    --tw-shadow: 0 1px 3px 0rgb(0 0 0 / .1), 0 1px 2px -1pxrgb(0 0 0 / .1);
    --tw-shadow-colored: 0 1px 3px 0 0 0 #0000, 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow);
    border-radius: calc(var(--radius) - 2px);
}

.p-card-meta { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: #64748b; }
.work-type-pill { background: #f8fafc; padding: 2px 8px; border-radius: 4px; display: inline-block; width: fit-content; }
.p-salary { color: #10b981; font-weight: 700; font-size: 15px; }

.p-card-footer { border-top: 1px solid #f1f5f9; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; }
.footer-stats { font-size: 12px; color: #94a3b8; display: flex; gap: 10px; }
.p-details-link {
    
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(30 58 95 / var(--tw-text-opacity, 1));
	padding: 10px 15px;
	border-radius:5px;
}

/* 2. Latest Jobs (Son) Tasarımı */
.new-badge { color: #1e293b; font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }

.latest-job-item { 
    background: #fff; border-radius: 12px; padding: 15px; border: 1px solid #f1f5f9;
    transition: 0.2s; position: relative;
}
.latest-job-item:hover { background: #f8fafc; }

.l-item-main { display: flex; gap: 15px; margin-bottom: 12px; }
.l-company-box img { width: 45px; height: 45px; border-radius: 8px; }
.l-content { flex-grow: 1; }
.l-title-row { display: flex; justify-content: space-between; align-items: flex-start; }
.l-job-title { font-size: 16px; font-weight: 700; margin: 0; color: #1e293b; }
.l-job-title a { color: inherit; text-decoration: none; }
.l-status-pill { background: #d4af371a;
    color: rgb(212 175 55 );
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    --tw-shadow: 0 1px 3px 0rgb(0 0 0 / .1), 0 1px 2px -1pxrgb(0 0 0 / .1);
    --tw-shadow-colored: 0 1px 3px 0 0 0 #0000, 0 1px 2px -1pxvar(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow);
    border-radius: calc(var(--radius) - 2px); }
.l-company-name { font-size: 13px; color: #64748b; margin: 4px 0 8px 0; }

.l-meta { display: flex; flex-wrap: wrap; gap: 15px; font-size: 12px; color: #94a3b8; align-items: center; }
.l-salary { color: #10b981; font-weight: 700; font-size: 14px; }

.l-item-footer { border-top: 1px dashed #e2e8f0; padding-top: 10px; display: flex; justify-content: space-between; align-items: center; }
.l-stats { font-size: 11px; color: #94a3b8; display: flex; gap: 12px; }
.l-more-btn { color: #334155; text-decoration: none; font-size: 12px; font-weight: 600; }
.l-more-btn:hover { color: #2563eb; }

.py-5 {
    padding-top: 4rem!important;
    padding-bottom: 4rem!important;
}
.popular-jobs-area{background: #fffbf2;}

/* Featured Companies Styles */
.top-badge {
    
    font-size: 14px;
    font-weight: 800;
   
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 26px;
    font-weight: 800;
    color: #1e293b;
}

.view-all-btn {
    text-decoration: none;
    color: #3b82f6;
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s;
}

.company-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: #153353;
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.comp-logo-box {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comp-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.empty-logo-svg {
    color: #cbd5e1;
}

.premium-pill {
    background: #fffbeb;
    color: #d97706;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.comp-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
	overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.comp-industry {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 12px;
}

.comp-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.comp-desc {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-footer-flex {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f8fafc;
}

.job-count-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #10b981;
    font-weight: 700;
    font-size: 13px;
}

.comp-detail-link {
    background: #f1f5f9;
    color: #475569;
    padding: 8px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.2s;
}

.comp-detail-link:hover {
    background: #1e293b;
    color: #ffffff;
}

/* Populyar Kateqoriyalar Özel Stil */
.category-badge {
    
    font-size: 14px;
    font-weight: 800;
    border-radius: 8px;
    
}

/* İstediğin özel class */
.premium-view-all {
    text-decoration: none;
    color: #1e293b;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    padding: 8px 20px;
    border-radius: 12px;
    background: #fff;
}
.premium-view-all:hover {
    background: #1e293b;
    color: #fff;
    transform: translateX(5px);
}

.category-item-link { text-decoration: none !important; }

.category-item-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 30px 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cat-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #1e293b;
    font-size: 24px;
    transition: 0.3s;
}

.cat-name {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-count {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

/* Hover Efektleri */
.category-item-card:hover {
    background: #1e293b;
    border-color: #1e293b;
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.2);
}

.category-item-card:hover .cat-icon-wrapper {
    background: #1e293b;
    color: #ffffff;
    transform: rotate(-10deg);
}

.category-item-card:hover .cat-name { color: #ffffff; }
.category-item-card:hover .cat-count { color: rgba(255, 255, 255, 0.8); }


/* Blog Özel Stil */
.blog-badge {
    
    font-size: 14px;
    font-weight: 800;
    border-radius: 8px;
    
}

.blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.blog-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-img-placeholder {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}

.blog-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffffff;
    padding: 8px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 2;
}

.blog-date-badge span { display: block; font-size: 18px; font-weight: 800; color: #1e293b; line-height: 1; }
.blog-date-badge small { font-size: 11px; text-transform: uppercase; color: #64748b; font-weight: 700; }

.blog-body { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }

.blog-title { font-size: 19px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; }
.blog-title a { color: #1e293b; text-decoration: none; transition: 0.3s; }
.blog-title a:hover { color: #3b82f6; }

.blog-excerpt { color: #64748b; font-size: 14px; line-height: 1.6; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.blog-footer { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid #f8fafc; }

.blog-meta { display: flex; gap: 15px; color: #94a3b8; font-size: 13px; }

.blog-read-more {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

/* Hover Efektleri */
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: #e2e8f0;
}

.blog-card:hover .blog-img { transform: scale(1.1); }
.blog-read-more:hover { gap: 8px; color: #1d4ed8; }

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: #fff !important;
   
}