/* ==========================================================================
   Hiza Soft — tema üstüne eklenen özel bileşenler
   app.css'e dokunmadan çalışır; açık/koyu mod uyumludur.
   ========================================================================== */

:root {
    --hiza-primary: #5956E9;
    --hiza-primary-soft: rgba(89, 86, 233, 0.08);
    --hiza-success: #17976C;
    --hiza-surface: #ffffff;
    --hiza-surface-alt: #F6F8FC;
    --hiza-border: #E3E6E9;
    --hiza-muted: #6A6A7B;
    --hiza-radius: 16px;
    --hiza-shadow: 0 12px 40px rgba(37, 34, 186, 0.08);
}

.active-dark-mode {
    --hiza-surface: #2B2B33;
    --hiza-surface-alt: #24242B;
    --hiza-border: #3E3E48;
    --hiza-muted: #A9A9BA;
    --hiza-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* --------------------------------------------------------------------------
   Header: telefon + teklif butonu
   -------------------------------------------------------------------------- */
.hiza-header-phone a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text-dark);
    white-space: nowrap;
}

.active-dark-mode .hiza-header-phone a {
    color: var(--dark-title-light);
}

.hiza-header-phone a i {
    color: var(--hiza-primary);
}

.hiza-header-phone a:hover {
    color: var(--hiza-primary);
}

.header-action .hiza-header-cta .axil-btn {
    height: 46px;
    line-height: 46px;
    padding: 0 22px;
    font-size: 15px;
}

.hiza-mobile-cta {
    padding: 24px 20px 8px;
}

/* --------------------------------------------------------------------------
   WhatsApp yüzen buton
   -------------------------------------------------------------------------- */
.hiza-whatsapp-float {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 99;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 16px;
    border-radius: 999px;
    background: #25D366;
    color: #fff !important;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
}

.hiza-whatsapp-float i {
    font-size: 22px;
}

.hiza-whatsapp-float:hover {
    background: #1EBE5B;
    color: #fff !important;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .hiza-whatsapp-float {
        left: 16px;
        bottom: 16px;
        padding: 14px;
    }

    .hiza-whatsapp-float span {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Hero: güven rozetleri ve ikili buton
   -------------------------------------------------------------------------- */
.hiza-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.hiza-hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--hiza-primary-soft);
    border: 1px solid rgba(89, 86, 233, 0.18);
    color: var(--hiza-primary);
    font-size: 14px;
    font-weight: 600;
}

.active-dark-mode .hiza-hero-badges span {
    background: rgba(89, 86, 233, 0.16);
    color: #A9A7FF;
}

.hiza-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.hiza-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 60px;
    padding: 0 28px;
    border-radius: 8px;
    border: 2px solid var(--hiza-border);
    font-weight: 600;
    color: var(--color-text-dark);
    transition: var(--transition);
}

.active-dark-mode .hiza-btn-ghost {
    color: var(--dark-title-light);
    border-color: var(--hiza-border);
}

.hiza-btn-ghost:hover {
    border-color: var(--hiza-primary);
    color: var(--hiza-primary);
}

.hiza-btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    color: #fff !important;
    background: transparent;
}

.hiza-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

.hiza-hero-note {
    margin-top: 18px;
    font-size: 15px;
    color: var(--hiza-muted);
}

.hiza-hero-note i {
    color: var(--hiza-success);
    margin-right: 6px;
}

/* --------------------------------------------------------------------------
   Güven şeridi (logo/rakam bandı)
   -------------------------------------------------------------------------- */
.hiza-trustbar {
    border-top: 1px solid var(--hiza-border);
    border-bottom: 1px solid var(--hiza-border);
    padding: 34px 0;
    background: var(--hiza-surface-alt);
}

.hiza-trustbar-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 48px;
    margin: 0;
}

.hiza-trustbar-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.active-dark-mode .hiza-trustbar-list li {
    color: var(--dark-title-light);
}

.hiza-trustbar-list li i {
    color: var(--hiza-success);
    font-size: 18px;
}

/* --------------------------------------------------------------------------
   Özellik / güvence kartları
   -------------------------------------------------------------------------- */
.hiza-card {
    height: 100%;
    padding: 32px 28px;
    border-radius: var(--hiza-radius);
    background: var(--hiza-surface);
    border: 1px solid var(--hiza-border);
    transition: var(--transition);
}

.hiza-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hiza-shadow);
    border-color: rgba(89, 86, 233, 0.35);
}

.hiza-card .hiza-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hiza-primary-soft);
    color: var(--hiza-primary);
    font-size: 22px;
    margin-bottom: 20px;
}

.active-dark-mode .hiza-card .hiza-card-icon {
    background: rgba(89, 86, 233, 0.18);
    color: #A9A7FF;
}

.hiza-card h5 {
    font-size: 19px;
    margin-bottom: 12px;
}

.hiza-card p {
    margin-bottom: 0;
    font-size: 16px;
}

/* --------------------------------------------------------------------------
   Teknoloji etiketleri
   -------------------------------------------------------------------------- */
.hiza-tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
}

.hiza-tech-list li {
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--hiza-surface);
    border: 1px solid var(--hiza-border);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text-dark);
}

.active-dark-mode .hiza-tech-list li {
    color: var(--dark-title-light);
}

/* --------------------------------------------------------------------------
   Paket / fiyat kartları
   -------------------------------------------------------------------------- */
.hiza-plan {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 36px 30px;
    border-radius: var(--hiza-radius);
    background: var(--hiza-surface);
    border: 1px solid var(--hiza-border);
    transition: var(--transition);
}

.hiza-plan:hover {
    box-shadow: var(--hiza-shadow);
}

.hiza-plan.is-featured {
    border-color: var(--hiza-primary);
    box-shadow: var(--hiza-shadow);
}

.hiza-plan-tag {
    position: absolute;
    top: -14px;
    left: 30px;
    padding: 6px 16px;
    border-radius: 999px;
    background: var(--hiza-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.hiza-plan h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.hiza-plan .hiza-plan-for {
    display: block;
    font-size: 15px;
    color: var(--hiza-muted);
    margin-bottom: 22px;
}

.hiza-plan-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--hiza-border);
}

.hiza-plan-price .amount {
    font-family: var(--font-secondary);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.2;
}

.active-dark-mode .hiza-plan-price .amount {
    color: var(--dark-title-light);
}

.hiza-plan-price .unit {
    font-size: 15px;
    color: var(--hiza-muted);
}

.hiza-plan-features {
    margin: 0 0 28px;
    flex-grow: 1;
}

.hiza-plan-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
}

.hiza-plan-features li::before {
    content: "\f00c";
    font-family: var(--font-awesome);
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--hiza-success);
    font-size: 14px;
}

.hiza-plan-features li.is-muted {
    color: var(--hiza-muted);
}

.hiza-plan-features li.is-muted::before {
    content: "\f068";
    color: var(--hiza-muted);
}

.hiza-plan-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--hiza-muted);
}

/* --------------------------------------------------------------------------
   Karşılaştırma tablosu
   -------------------------------------------------------------------------- */
.hiza-table-wrap {
    overflow-x: auto;
    border-radius: var(--hiza-radius);
    border: 1px solid var(--hiza-border);
    background: var(--hiza-surface);
}

.hiza-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.hiza-table th,
.hiza-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--hiza-border);
    font-size: 16px;
}

.hiza-table thead th {
    background: var(--hiza-surface-alt);
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--color-text-dark);
    white-space: nowrap;
}

.active-dark-mode .hiza-table thead th {
    color: var(--dark-title-light);
}

.hiza-table tbody tr:last-child td {
    border-bottom: 0;
}

.hiza-table .yes {
    color: var(--hiza-success);
    font-weight: 700;
}

.hiza-table .no {
    color: var(--hiza-muted);
}

/* --------------------------------------------------------------------------
   SSS akordiyon
   -------------------------------------------------------------------------- */
.hiza-faq .accordion-item {
    border: 1px solid var(--hiza-border);
    border-radius: 12px !important;
    margin-bottom: 14px;
    overflow: hidden;
    background: var(--hiza-surface);
}

.hiza-faq .accordion-button {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 17px;
    padding: 20px 24px;
    background: var(--hiza-surface);
    color: var(--color-text-dark);
    box-shadow: none;
}

.active-dark-mode .hiza-faq .accordion-button {
    color: var(--dark-title-light);
}

.hiza-faq .accordion-button:not(.collapsed) {
    background: var(--hiza-primary-soft);
    color: var(--hiza-primary);
}

.hiza-faq .accordion-body {
    padding: 0 24px 22px;
    font-size: 16px;
    color: var(--hiza-muted);
}

/* --------------------------------------------------------------------------
   Süreç adımları (dikey zaman çizelgesi)
   -------------------------------------------------------------------------- */
.hiza-steps {
    counter-reset: hiza-step;
    margin: 0;
}

.hiza-steps li {
    position: relative;
    padding: 0 0 34px 66px;
    counter-increment: hiza-step;
}

.hiza-steps li::before {
    content: counter(hiza-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hiza-primary);
    color: #fff;
    font-family: var(--font-secondary);
    font-weight: 700;
}

.hiza-steps li::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 52px;
    bottom: 8px;
    width: 2px;
    background: var(--hiza-border);
}

.hiza-steps li:last-child {
    padding-bottom: 0;
}

.hiza-steps li:last-child::after {
    display: none;
}

.hiza-steps h5 {
    font-size: 19px;
    margin-bottom: 8px;
}

.hiza-steps p {
    margin-bottom: 0;
}

.hiza-step-time {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--hiza-surface-alt);
    border: 1px solid var(--hiza-border);
    font-size: 13px;
    font-weight: 600;
    color: var(--hiza-muted);
}

/* --------------------------------------------------------------------------
   Referans kartı üzerindeki "canlı" rozeti
   -------------------------------------------------------------------------- */
.project-grid .thumbnail {
    position: relative;
}

.hiza-live-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #17976C;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.hiza-live-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

.hiza-project-tag {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--hiza-surface-alt);
    border: 1px solid var(--hiza-border);
    font-size: 13px;
    font-weight: 600;
    color: var(--hiza-muted);
}

/* --------------------------------------------------------------------------
   Sektör rozetleri
   -------------------------------------------------------------------------- */
.hiza-sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0;
}

.hiza-sectors li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 12px;
    background: var(--hiza-surface);
    border: 1px solid var(--hiza-border);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-text-dark);
}

.active-dark-mode .hiza-sectors li {
    color: var(--dark-title-light);
}

.hiza-sectors li i {
    color: var(--hiza-primary);
    font-size: 18px;
}

/* --------------------------------------------------------------------------
   Partner kartı
   -------------------------------------------------------------------------- */
.hiza-partner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
    padding: 32px;
    border-radius: var(--hiza-radius);
    background: var(--hiza-surface);
    border: 1px solid var(--hiza-border);
}

.hiza-partner img {
    width: 260px;
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid var(--hiza-border);
}

.hiza-partner-body {
    flex: 1 1 320px;
}

.hiza-partner-body h4 {
    margin-bottom: 10px;
}

/* --------------------------------------------------------------------------
   CTA alanı düzeltmeleri
   -------------------------------------------------------------------------- */
.hiza-cta-text {
    color: rgba(255, 255, 255, 0.85) !important;
    max-width: 520px;
}

.hiza-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

/* --------------------------------------------------------------------------
   Footer eklemeleri
   -------------------------------------------------------------------------- */
.hiza-footer-brand {
    text-align: left;
}

.hiza-footer-about {
    margin-top: 18px;
    font-size: 15px;
    max-width: 360px;
}

.hiza-footer-contact ul li a,
.hiza-footer-contact ul li.hiza-footer-hours {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.hiza-footer-contact i {
    width: 16px;
    color: var(--hiza-primary);
}

/* --------------------------------------------------------------------------
   Form eklemeleri (KVKK onayı, honeypot)
   -------------------------------------------------------------------------- */
.hiza-hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.hiza-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--hiza-muted);
    margin-bottom: 22px;
}

.hiza-consent input {
    margin-top: 4px;
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.hiza-form-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--hiza-muted);
    text-align: center;
}

.hiza-form-note i {
    color: var(--hiza-success);
}

/* --------------------------------------------------------------------------
   Hata sayfası
   -------------------------------------------------------------------------- */
.hiza-error-area {
    padding: 120px 0 100px;
    text-align: center;
}

.hiza-error-code {
    font-family: var(--font-secondary);
    font-size: 96px;
    font-weight: 700;
    line-height: 1;
    color: var(--hiza-primary);
    margin-bottom: 12px;
}

.hiza-error-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
}

/* --------------------------------------------------------------------------
   Küçük ekran düzeltmeleri
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .hiza-footer-brand {
        text-align: center;
    }

    .hiza-footer-about {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575px) {
    .hiza-hero-actions .axil-btn,
    .hiza-hero-actions .hiza-btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .hiza-error-code {
        font-size: 68px;
    }
}

/* --------------------------------------------------------------------------
   Menü yerleşimi: başlık çubuğu tek satırda kalsın
   -------------------------------------------------------------------------- */
@media only screen and (min-width: 992px) {
    .mainmenu > li {
        margin: 0 14px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .mainmenu > li {
        margin: 0 12px;
    }

    .hiza-header-phone {
        display: none;
    }
}

@media only screen and (max-width: 1199px) {
    .hiza-header-phone {
        display: none;
    }
}

.header-action > ul {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-action > ul > li {
    margin: 0;
}

/* --------------------------------------------------------------------------
   İletişim kanalı kartları
   -------------------------------------------------------------------------- */
.hiza-contact-card {
    display: flex;
    gap: 20px;
    padding: 26px 26px;
    border-radius: var(--hiza-radius);
    background: var(--hiza-surface);
    border: 1px solid var(--hiza-border);
    margin-bottom: 18px;
    transition: var(--transition);
}

.hiza-contact-card:hover {
    border-color: rgba(89, 86, 233, 0.35);
    box-shadow: var(--hiza-shadow);
}

.hiza-contact-card .ikon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hiza-primary-soft);
    color: var(--hiza-primary);
    font-size: 20px;
}

.active-dark-mode .hiza-contact-card .ikon {
    background: rgba(89, 86, 233, 0.18);
    color: #A9A7FF;
}

.hiza-contact-card.is-whatsapp .ikon {
    background: rgba(37, 211, 102, 0.12);
    color: #1EBE5B;
}

.hiza-contact-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.hiza-contact-card p {
    font-size: 15px;
    color: var(--hiza-muted);
    margin-bottom: 10px;
}

.hiza-contact-card .hiza-contact-deger {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--hiza-primary);
    word-break: break-word;
}

.hiza-contact-card .hiza-contact-deger:hover {
    color: var(--color-link);
}

.hiza-contact-card.is-whatsapp .hiza-contact-deger {
    color: #1EBE5B;
}

@media (max-width: 575px) {
    .hiza-contact-card {
        padding: 22px 20px;
        gap: 16px;
    }

    .hiza-contact-card .hiza-contact-deger {
        font-size: 19px;
    }
}

/* --------------------------------------------------------------------------
   Küçük ekranda hero başlığı: satırlar birbirine değmesin
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .banner-content .title,
    .breadcrum-area .title {
        line-height: 1.2;
    }
}
