
/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero-section {
    background: linear-gradient(135deg, #0f2c6b 0%, #1967d2 55%, #2d9bb3 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
    min-height: 480px;
    display: flex;
    align-items: center;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 80% 50%, rgba(45,155,179,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 300px 300px at 10% 80%, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}
.hero-blob {
    position: absolute;
    right: -80px; top: -60px;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.hero-blob-2 {
    position: absolute;
    left: -100px; bottom: -80px;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
    letter-spacing: 0.4px;
}
.hero-tag span { width:6px; height:6px; border-radius:50%; background:#2ecc71; display:inline-block; }

.hero-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.hero-title em {
    font-style: normal;
    background: linear-gradient(90deg, #7ec8e3, #a8edea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    line-height: 1.6;
    max-width: 480px;
}

/* Arama kutusu */
.hero-search {
    background: #fff;
    border-radius: 14px;
    padding: 8px 8px 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    max-width: 520px;
}
.hero-search input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #1a1a2e;
    background: transparent;
    min-width: 0;
}
.hero-search input::placeholder { color: #9aa5b4; }
.hero-search-btn {
    background: linear-gradient(135deg, #1967d2, #2d9bb3);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 24px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.15s;
}
.hero-search-btn:hover { opacity: 0.88; }

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.hero-stat-item {
    display: flex;
    flex-direction: column;
}
.hero-stat-num {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.hero-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    margin-top: 3px;
    font-weight: 500;
}

/* Sağ görsel bölgesi */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 380px;
}
.hero-img {
    height: 360px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
}
.hero-card-float {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.hero-card-float-1 { top: 30px; right: -10px; }
.hero-card-float-2 { bottom: 60px; left: -10px; }
.hero-card-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
}
.hero-card-icon.blue  { background: #eef4ff; color: #1967d2; }
.hero-card-icon.green { background: #eafaf1; color: #27ae60; }
.hero-card-text-main { font-size: 13px; font-weight: 700; color: #1a1a2e; }
.hero-card-text-sub  { font-size: 11px; color: #9aa5b4; }

/* ══════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════ */
.sec-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}
.sec-header-left { display: flex; flex-direction: column; gap: 4px; }
.sec-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #1967d2;
}
.sec-title {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.2;
}
.sec-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #1967d2;
    text-decoration: none;
    border: 1.5px solid #d0e0f8;
    padding: 8px 18px;
    border-radius: 9px;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
}
.sec-all-link:hover { background: #eef4ff; border-color: #1967d2; color: #1967d2; text-decoration: none; }

/* ══════════════════════════════════════
   İLAN KARTLARI
══════════════════════════════════════ */
.jobs-section {
    padding: 64px 0 48px;
    background: #f7f9fc;
}

.job-card {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #e8ecf3;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    height: 100%;
    text-decoration: none !important;
    color: inherit;
}
.job-card:hover {
    box-shadow: 0 8px 32px rgba(25,103,210,0.12);
    border-color: #c2d4f5;
    transform: translateY(-2px);
}
.job-card-logo {
    width: 60px; height: 60px;
    border-radius: 12px;
    border: 1.5px solid #e8ecf3;
    object-fit: contain;
    flex-shrink: 0;
    padding: 4px;
    background: #fff;
}
.job-card-body { flex: 1; min-width: 0; }
.job-card-company {
    font-size: 11px;
    font-weight: 600;
    color: #1967d2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}
.job-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.job-card-arrow {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: #f0f6ff;
    display: flex; align-items: center; justify-content: center;
    color: #1967d2;
    font-size: 14px;
    flex-shrink: 0;
    transition: background 0.15s;
}
.job-card:hover .job-card-arrow { background: #1967d2; color: #fff; }

/* ══════════════════════════════════════
   AKAMEDİK BÖLÜMÜ
══════════════════════════════════════ */
.akamedik-section {
    padding: 72px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.akamedik-section::before {
    content: '';
    position: absolute;
    right: -200px; top: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25,103,210,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.akamedik-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eef4ff;
    color: #1967d2;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.akamedik-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 16px;
}
.akamedik-title span {
    background: linear-gradient(135deg, #1967d2, #2d9bb3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.akamedik-desc {
    font-size: 15px;
    color: #5a6a7e;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}
.akamedik-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}
.akamedik-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #3a4a5c;
    font-weight: 500;
}
.akamedik-feature i {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #eef4ff;
    color: #1967d2;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}
.akamedik-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1967d2 0%, #2d9bb3 100%);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: opacity 0.15s, transform 0.15s;
    box-shadow: 0 6px 24px rgba(25,103,210,0.25);
}
.akamedik-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.akamedik-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.akamedik-img {
    max-height: 400px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 40px rgba(25,103,210,0.15));
    position: relative;
    z-index: 2;
}
.akamedik-bg-circle {
    position: absolute;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(25,103,210,0.07), rgba(45,155,179,0.07));
    z-index: 1;
}

/* ══════════════════════════════════════
   BİLGİ BANKASI
══════════════════════════════════════ */
.blog-section {
    padding: 64px 0;
    background: #f7f9fc;
}
.blog-card {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #e8ecf3;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: 0 8px 32px rgba(25,103,210,0.10);
    transform: translateY(-3px);
}
.blog-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.blog-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-date {
    font-size: 11px;
    color: #9aa5b4;
    font-weight: 500;
    margin-bottom: 8px;
}
.blog-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 12px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 600;
    color: #1967d2;
    text-decoration: none;
    transition: gap 0.15s;
}
.blog-card-link:hover { gap: 8px; color: #1967d2; text-decoration: none; }

/* Responsive */
@media (max-width: 991px) {
    .hero-section { padding: 48px 0 40px; }
    .hero-visual { display: none; }
    .hero-stats { gap: 20px; }
    .akamedik-img-wrap { margin-top: 36px; }
}
@media (max-width: 575px) {
    .hero-search { flex-direction: column; align-items: stretch; }
    .hero-search-btn { text-align: center; }
}
