/* ==========================================================================
   GİRİŞ VE HERO ALANI STİLLERİ
   ========================================================================== */
.hb-hero-container {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 450px;
    border-radius: 0; /* Robotik yuvarlatılmış köşeler yerine net, keskin hatlar */
    overflow: hidden;
    margin-bottom: 40px;
    font-family: inherit;
}

.hb-hero-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.3s ease;
}

/* Sol Taraf: Veresiye / Mat Editoryal Gri */
.hb-side-left {
    background: #f4f5f7;
    color: #455a64;
}

/* Sağ Taraf: Peşin / Ağırbaşlı Krem */
.hb-side-right {
    background: #faf9f5;
    color: #5d4037;
    border-left: 1px solid rgba(0,0,0,0.05);
}

.hb-hero-content h2 {
    font-size: 24px;
    font-weight: 800;
    margin: 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hb-badge {
    background: #111111;
    color: #fff;
    padding: 4px 12px;
    border-radius: 0;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hb-badge-premium {
    background: #ff6d00;
}

/* Ortadaki Aksiyon Butonu */
.hb-action-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hb-main-btn {
    background: #111111;
    color: #fff;
    border: none;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 0; /* Buton formundaki yapay zeka yuvarlaklığı kırıldı */
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.2s;
}

.hb-main-btn:hover {
    background: #000;
}

/* ==========================================================================
   ŞİFRESİZ OTP GİRİŞ MODAL STİLLERİ
   ========================================================================== */
.hb-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hb-modal-wrapper {
    background: #fff;
    width: 100%;
    max-width: 420px;
    border-radius: 0;
    border: 1px solid #111111;
    position: relative;
    padding: 40px 30px;
    animation: hbModalFadeIn 0.25s ease-out;
}

.hb-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #111111;
    cursor: pointer;
}

.hb-modal-body h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111111;
    text-transform: none;
}

.hb-modal-body p {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.hb-form-group {
    margin-bottom: 20px;
    text-align: left;
}

.hb-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111111;
    text-transform: none;
}

.hb-form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 15px;
    outline: none;
    font-family: inherit;
}

.hb-form-group input:focus {
    border-color: #111111;
}

.hb-submit-btn {
    width: 100%;
    background: #111111;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 0;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s;
}

.hb-submit-btn:hover {
    background: #000;
}

.hb-response-message {
    margin-top: 15px;
    font-size: 13px;
    font-weight: 700;
}

@keyframes hbModalFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   VERİ GİRİŞ / DÜZENLEME FORMU STİLLERİ
   ========================================================================== */
.hb-form-wrapper {
    background: #ffffff;
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
}

.hb-form-wrapper h2 {
    font-size: 24px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 8px;
    text-transform: none;
}

.hb-form-wrapper p {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
}

.hb-form-wrapper textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 15px;
    outline: none;
    resize: none;
    font-family: inherit;
}

.hb-form-wrapper textarea:focus {
    border-color: #111111;
}

.hb-form-alert {
    padding: 16px;
    background: #fff5f5;
    color: #c62828;
    border-left: 4px solid #d32f2f;
    font-weight: 700;
    text-align: center;
    margin: 20px auto;
    max-width: 600px;
    font-size: 14px;
}

.hb-alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left-color: #2e7d32;
}

.hb-form-correction-alert {
    padding: 16px 20px;
    background: #fff5f5;
    border-left: 4px solid #d32f2f;
    color: #c62828;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* ==========================================================================
   EDİTORYAL & BUTİK TOPLULUK SLIDER TASARIMI (AI HAVASI SİLİNDİ)
   ========================================================================== */
.hb-grid-main-wrapper {
    width: 100%;
    margin-top: 50px;
    font-family: inherit;
}

.hb-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    border-bottom: 1px solid #111111; /* Dergi tarzı asil bir hiza çizgisi */
    padding-bottom: 12px;
}

.hb-grid-section-title {
    font-size: 20px;
    font-weight: 800;
    color: #111111;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: inherit;
}

/* Çiğ parıltılar ve robotik buton stilleri elendi */
.hb-slider-controls {
    display: flex;
    gap: 8px;
}

.hb-slider-arrow {
    background: transparent;
    border: 1px solid #111111;
    color: #111111;
    width: 40px;
    height: 40px;
    border-radius: 0;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.hb-slider-arrow:hover {
    background: #111111;
    color: #ffffff;
}

.hb-slider-view {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 30px 0;
}

.hb-slider-track {
    display: flex;
    gap: 35px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.hb-slider-track::-webkit-scrollbar {
    display: none;
}

/* 🚀 İnsani ve Keskin Kart Mimarisi (Gereksiz Yükseklik Sınırları Kaldırıldı) */
.hb-card {
    flex: 0 0 calc(33.333% - 24px);
    scroll-snap-align: start;
    background: #ffffff;
    border: none;
    border-left: 1px solid #e0e0e0; /* Sol tarafta editoryal bütünlük çizgisi */
    border-radius: 0;
    padding: 0 0 0 25px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.hb-card:hover {
    border-left-color: #111111;
}

.hb-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: #111111;
    margin: 0 0 6px 0;
    font-family: inherit;
    line-height: 1.3;
}

.hb-card h4 {
    font-size: 11px;
    font-weight: 700;
    color: #777777;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Yükseklik tamamen esnek oldu, içerik ne kadar ise o kadar yer kaplar */
.hb-card p {
    font-size: 14px;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hb-card-link {
    font-size: 13px;
    font-weight: 700;
    color: #111111;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.hb-card-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #111111;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hb-card:hover .hb-card-link::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* 💎 Premium Katman Çizgisi */
.hb-card-premium-style {
    background: transparent;
    border-left: 2px solid #111111;
}

.hb-card-badge-premium {
    display: inline-block;
    margin-bottom: 10px;
    background: #111111;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 0;
    letter-spacing: 0.5px;
}

/* 🔥 Trend Katmanı Çizgisi */
.hb-card-trend-style {
    border-left: 1px solid #ff6d00 !important;
}

.hb-card-badge-trend {
    display: inline-block;
    margin-bottom: 10px;
    background: #ff6d00;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 0;
    letter-spacing: 0.5px;
}

.hb-section-divider {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    margin: 45px 0;
}

/* ==========================================================================
   FİRMALARA ÖZEL DETAY SAYFASI (SINGLE PAGE) PREMİUM STİLLERİ
   ========================================================================== */
.hb-single-card-wrapper {
    max-width: 800px;
    margin: 40px auto;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    padding: 45px;
    font-family: inherit;
}

.hb-single-card-head {
    border-bottom: 2px solid #111111;
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.hb-single-card-head h1 {
    font-size: 32px;
    font-weight: 800;
    color: #111111;
    margin: 0 0 8px 0;
}

.hb-single-job {
    font-size: 13px;
    font-weight: 700;
    color: #0097a7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hb-single-card-body {
    margin-bottom: 35px;
}

.hb-single-card-body h3 {
    font-size: 17px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hb-single-card-body p {
    font-size: 16px;
    color: #333333;
    line-height: 1.7;
}

.hb-single-card-contact {
    background: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 0;
    padding: 25px;
    margin-bottom: 35px;
}

.hb-single-card-contact h3 {
    font-size: 15px;
    font-weight: 800;
    color: #111111;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.hb-contact-row {
    font-size: 15px;
    color: #444;
}

.hb-contact-row strong {
    color: #111111;
    display: inline-block;
    width: 120px;
}

.hb-single-web-link {
    color: #111111;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid #111111;
}

.hb-single-card-footer {
    text-align: left;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.hb-back-btn {
    font-size: 13px;
    font-weight: 700;
    color: #111111;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* RESPONSİVE UYUMLULUKLAR */
@media (max-width: 1024px) {
    .hb-card { flex: 0 0 calc(50% - 18px); }
}

@media (max-width: 768px) {
    .hb-hero-container {
        flex-direction: column;
        min-height: auto;
    }
    .hb-action-center {
        position: static;
        transform: none;
        text-align: center;
        padding: 20px;
        background: #fff;
    }
    .hb-card { 
        flex: 0 0 82%; 
        border-left: 2px solid #e0e0e0;
    }
    .hb-single-card-wrapper {
        padding: 25px;
        margin: 20px 10px;
    }
    .hb-single-card-head h1 {
        font-size: 26px;
    }
}

/* Checkbox & Address Custom Styles */
.hb-address-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .hb-address-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
.hb-form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 15px;
    outline: none;
    font-family: inherit;
    background: #fff;
    box-sizing: border-box;
}
.hb-form-group select:focus {
    border-color: #111111;
}
.hb-form-group.hb-form-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 25px;
}
.hb-form-group.hb-form-checkbox-group label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: none !important;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
}
.hb-form-group.hb-form-checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #111111;
    margin: 0;
}
.hb-form-group select:disabled {
    background-color: #f5f5f5;
    color: #888;
    cursor: not-allowed;
}