@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

/* Lider Trafik – sayfa özel stilleri */

/* Header (main-header--four): dalgali arka plan pattern */
.main-header.main-header--four.sticky-header.sticky-header--one-page .main-header__inner {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.main-header.main-header--four.sticky-header.sticky-header--one-page .main-header__inner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.26;
    background-image: url("../images/menubg2018.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.main-header.main-header--four.sticky-header.sticky-header--one-page .main-header__inner > * {
    position: relative;
    z-index: 1;
}

/* Üst çubuk: solda e-posta/telefon, sağda portal (sosyal medya üst çubukta yok) */
.header-four .topbar__inner--lider {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 16px;
    align-items: center;
    width: 100%;
    max-width: 100%;
}
.header-four .topbar__lead {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px 20px;
    width: 100%;
    margin-left: 0;
}
.header-four .topbar__lead .topbar__info {
    margin: 0;
    flex: 0 1 auto;
    justify-content: flex-start;
}
.header-four .topbar__lead .topbar__portals {
    flex: 0 0 auto;
}
@media (max-width: 991px) {
    .header-four .topbar__lead .topbar__info {
        display: flex !important;
        flex-wrap: wrap;
        gap: 16px 24px;
        justify-content: flex-start;
    }
    .header-four .topbar__lead {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .header-four .topbar__lead .topbar__info {
        width: 100%;
    }
    .header-four .topbar__lead .topbar__portals {
        width: 100%;
        max-width: 560px;
    }
}
.topbar__portals {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 10px;
    width: min(100%, 560px);
    flex-shrink: 0;
}
@media (max-width: 575px) {
    .topbar__portals {
        width: 100%;
        max-width: none;
    }
    .topbar-portal-btn {
        font-size: 0.75rem;
        padding: 0.45rem 0.35rem;
        min-height: 36px;
    }
}
.topbar-portal-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 38px;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.25;
    border-radius: 8px;
    color: #fff !important;
    text-decoration: none;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition:
        transform 0.22s cubic-bezier(0.34, 1.2, 0.64, 1),
        box-shadow 0.22s ease,
        filter 0.2s ease,
        border-color 0.2s ease;
    overflow: hidden;
}
.topbar-portal-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, transparent 48%);
    pointer-events: none;
}
.topbar-portal-btn__text {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.topbar-portal-btn:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    filter: brightness(1.06) saturate(1.05);
    border-color: rgba(255, 255, 255, 0.35);
}
.topbar-portal-btn:active {
    transform: translateY(0);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.topbar-portal-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.65);
    outline-offset: 2px;
}
.topbar-portal-btn--red {
    background: linear-gradient(165deg, #e53935 0%, #b71c1c 100%);
}
.topbar-portal-btn--orange {
    background: linear-gradient(165deg, #fb8c00 0%, #e65100 100%);
}
.topbar-portal-btn--green {
    background: linear-gradient(165deg, #43a047 0%, #1b5e20 100%);
}
.topbar-portal-btn--light-blue {
    background: linear-gradient(165deg, #64b5f6 0%, #1e88e5 100%);
}

/* Mobilde scrollbar (kaydırma çubuğu / imleç) gizle */
@media (max-width: 991px) {
    html, body, * {
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
    }
    html::-webkit-scrollbar, body::-webkit-scrollbar,
    *::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        background: transparent !important;
    }
}

/* Harita: Yol Tarifi butonu – belirgin, ortada */
.contact-map__actions {
    display: flex;
    justify-content: center;
    padding: 1rem 15px 1.25rem;
}
.contact-map__directions-btn {
    padding: 0.6rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
}
@media (max-width: 575px) {
    .contact-map__actions { padding: 0.75rem 12px 1rem; }
    .contact-map__directions-btn { padding: 0.55rem 1.25rem; font-size: 1rem; }
}

/* Harita: konum işareti (pin) her zaman görünsün */
.contact-map__wrapper {
    position: relative;
}
.contact-map__marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -100%);
    z-index: 2;
    pointer-events: none;
    font-size: 48px;
    color: #c62828;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}

/* Footer QR (Genel Ayarlar > Footer QR kod) */
.footer-widget__qr {
    margin-top: 0.25rem;
}
.footer-widget__qr-link {
    display: inline-block;
    line-height: 0;
}
.footer-widget__qr-img {
    display: block;
    max-width: 250px;
    width: auto;
    height: auto;
    max-height: 160px;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
    .footer-widget__qr-img {
        max-width: 120px;
        max-height: 140px;
    }
}

/* Bülten (sade blok): mavi bant, beyaz başlık/metin */
.newsletter--sade {
    background: #0365d3;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.newsletter-sade__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 1.75rem 0;
    text-align: center;
}
.newsletter--sade .newsletter__form__title,
.newsletter-sade__title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #fff;
}
.newsletter--sade .newsletter__form__text,
.newsletter-sade__text {
    margin-bottom: 1rem !important;
    color: rgba(255, 255, 255, 0.95);
}
.newsletter-sade__form {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.65rem;
    max-width: 520px;
    margin: 0 auto;
}
.newsletter-sade__response {
    text-align: center;
    margin-top: 0.75rem;
}

/* Footer üst: footer-bg.jpg kaldırıldı; düz arka plan (metin kontrastı tema ile uyumlu) */
.main-footer .main-footer__top {
    position: relative;
    isolation: isolate;
    background-color: var(--insuba-black5, #0f3667);
}
.main-footer .main-footer__top::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.08;
    background-image: var(--lt-footer-logo-pattern);
    background-repeat: repeat;
    background-size: 150px auto;
    background-position: 24px 18px;
}
.main-footer .main-footer__top > .container {
    position: relative;
    z-index: 1;
}

/* Bülten: e-posta alanı Abone Ol butonu ile aynı radius ve yükseklik */
.newsletter__form__form input[type="email"],
.newsletter__form__form input[type="text"] {
    outline: 0;
    border: 0;
    width: 100%;
    height: 53px;
    padding: 0 1rem;
    padding-left: 28px;
    font-family: var(--insuba-font, "Roboto", sans-serif);
    font-size: 16px;
    font-weight: 400;
    color: var(--insuba-text, #636363);
    background-color: var(--insuba-white, #ffffff);
    border-radius: 27px;
    transition: all 500ms ease;
}
.newsletter__form__form input[type="email"]:focus,
.newsletter__form__form input[type="text"]:focus {
    color: var(--insuba-black, #122f2a);
}
@media (min-width: 576px) {
    /* Buton input içinde sağda; input sağ tarafta padding ile butona yer bırakır */
    .newsletter__form__form input[type="email"],
    .newsletter__form__form input[type="text"] {
        padding-right: 130px;
    }
}
@media (max-width: 575px) {
    .newsletter__form__form input[type="email"],
    .newsletter__form__form input[type="text"] {
        padding-left: 20px;
    }
}

/* Sade bülten: yukarıdaki genel pill/input stillerini ez (yan yana, düz kenar) */
.newsletter--sade .newsletter__form__form input[type="email"],
.newsletter--sade .newsletter__form__form input[type="text"] {
    flex: 1 1 220px;
    min-width: 0;
    width: auto;
    height: 48px;
    border-radius: 8px;
    border: 1px solid #dee6ef;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 576px) {
    .newsletter--sade .newsletter__form__form input[type="email"],
    .newsletter--sade .newsletter__form__form input[type="text"] {
        padding-right: 1rem;
    }
}
.newsletter--sade .newsletter__form__form button[type="submit"],
.newsletter--sade .newsletter__form__form .insuba-btn {
    border-radius: 8px;
    height: 48px;
    padding: 0 1.5rem;
    flex-shrink: 0;
    background-color: #3c5c83 !important;
    border-color: #3c5c83 !important;
    color: #fff !important;
    overflow: visible;
}
.newsletter--sade .newsletter__form__form .insuba-btn::after {
    display: none !important;
}
.newsletter--sade .newsletter__form__form button[type="submit"]:hover,
.newsletter--sade .newsletter__form__form .insuba-btn:hover {
    background-color: #4d6f99 !important;
    border-color: #4d6f99 !important;
    color: #fff !important;
}
.newsletter--sade .newsletter__form__form button[type="submit"] span,
.newsletter--sade .newsletter__form__form .insuba-btn span {
    color: #fff !important;
}
.newsletter--sade .newsletter-sade__response .text-success {
    color: #b8f5c8 !important;
}
.newsletter--sade .newsletter-sade__response .text-danger {
    color: #ffc9c9 !important;
}

/* Preloader: logoyu büyük göster */
.preloader__image {
  background-size: 180px auto;
  min-height: 120px;
}

/* Hizmetler (services-four): arka plan görseli services-four__bg__inner ile index.php içinde inline veriliyor; carousel referans HTML ile aynı yapıda. */

/* ----- Teklif Al modal ----- */
.teklif-modal .modal-dialog { max-width: 440px; }
.teklif-modal__content { border: none; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 56px rgba(15, 53, 100, 0.25); }
.teklif-modal__header {
    position: relative;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(135deg, #0f3564 0%, #0f3260 50%, #0759b4 100%);
    color: #fff;
    text-align: center;
}
.teklif-modal__icon-wrap {
    width: 56px; height: 56px;
    margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.15);
    border-radius: 14px;
}
.teklif-modal__icon { font-size: 1.5rem; color: #fff; }
.teklif-modal__title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.35rem;
    margin: 0 0 0.25rem;
    letter-spacing: -0.02em;
    color: #fff;
}
.teklif-modal__subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}
.teklif-modal__close {
    position: absolute;
    top: 1rem; right: 1rem;
    opacity: 0.85;
    font-size: 0.75rem;
}
.teklif-modal__close:hover { opacity: 1; }
.teklif-modal__body { padding: 1.75rem 1.5rem 1.5rem; background: #fff; }
.teklif-form__group { margin-bottom: 1.1rem; }
.teklif-form__label {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
    display: block;
}
.teklif-form__input {
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 0.6rem 0.9rem;
    font-size: 0.95rem;
    transition: border-color .2s, box-shadow .2s;
}
.teklif-form__input:focus {
    border-color: #0365d3;
    box-shadow: 0 0 0 3px rgba(3, 101, 211, 0.12);
    outline: 0;
}
.teklif-form__textarea { resize: vertical; min-height: 96px; }
.teklif-form__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}
.teklif-form__btn-cancel {
    border-radius: 10px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
}
.teklif-form__btn-submit {
    border-radius: 10px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #0365d3 0%, #0759b4 100%);
    border: none;
    color: #fff;
    transition: transform .15s, box-shadow .2s;
}
.teklif-form__btn-submit:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(3, 101, 211, 0.4);
}

/* Hero slider: referans bandının altında kalsın (band slider dönerken üstte görünsün) */
#home.main-slider-four {
    z-index: 1;
}

/* Hero arka plan: görseli margin-top ile aşağı kaydır (tema: top/bottom 0 → yükseklik + margin) */
#home.main-slider-four .main-slider-four__bg {
    top: 0;
    bottom: auto;
    margin-top: 48px;
    height: calc(100% - 48px);
    background-position: center center;
}

/* 2. slaytta kadrajı sabitle (sunucuda farklı algılanan görünüm için) */
#home.main-slider-four .slider-item--2 .main-slider-four__bg {
    background-position: center 32%;
}

/*
 * insuba.css: .main-slider-four .active .main-slider-four__bg { transform: scale(1.15); }
 * Aktif slayt yakınlaştığı için aynı piksel boyutundaki görseller bile slayt başına farklı görünür.
 */
.main-slider-four .active .main-slider-four__bg {
    transform: scale(1);
}

/* Slider arka plan üzerinde şeffaf siyah tabaka – beyaz yazıların okunabilirliği */
.main-slider-four__item {
    position: relative;
}
.main-slider-four__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
    pointer-events: none;
}
.main-slider-four__item .container {
    position: relative;
    z-index: 1;
}

/* Mobilde slider dikey dikdörtgen oran + yazı alanı aşağı kaydırıldı (başlık tam görünsün) */
@media (max-width: 991px) {
    .main-slider-four__item {
        aspect-ratio: 9 / 16;
        padding-top: 14%;
        padding-bottom: 14%;
        min-height: 0;
    }
    .main-slider-four__item .container {
        padding-top: 16%;
    }
    #home.main-slider-four .main-slider-four__bg {
        margin-top: 32px;
        height: calc(100% - 32px);
        background-size: cover;
    }
    .main-slider-four__insurance {
        display: none;
    }
}
@media (max-width: 575px) {
    .main-slider-four__item {
        padding-top: 12%;
        padding-bottom: 12%;
    }
    .main-slider-four__item .container {
        padding-top: 20%;
    }
}

/* ----- Referans bandı (slide-one--home-4, hero altı) ----- */
/* Slider geçişinde bant bozulmasın diye sliderın üstünde katmanlanır */
.slide-one--references {
    position: relative;
    z-index: 10;
    overflow: hidden;
    min-height: 120px;
    padding: 28px 0 !important;
}
@media (max-width: 575px) {
    .slide-one--references {
        padding: 22px 0 !important;
    }
}
.slide-one--references .slide-one__slide--logos {
    gap: 3rem;
    padding: 0 1rem;
    width: max-content;
    min-width: 100%;
    /* Sonsuz döngü: iki kopya var, -50% kaydırınca aynı görüntü tekrarlanır, boşluk olmaz */
    animation: refLogosScroll 40s linear infinite;
    animation-direction: normal;
}
@keyframes refLogosScroll {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}
.slide-one__logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 96px;
    position: relative;
}
/* Tıklanabilir alan + dikey hizalama (link tüm kutu boyunca) */
.slide-one__logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 96px;
    color: inherit;
    text-decoration: none;
}
.slide-one__logo-stack {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-width: 0;
    max-height: 96px;
}
/* Referans logoları: renkli görsel (Admin’de varsa hover görseli, yoksa ana görsel) */
.slide-one__logo-img--color {
    display: block;
    max-height: 100%;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    opacity: 1;
    transition: opacity 0.2s ease;
}
.slide-one__logo-item:hover .slide-one__logo-img--color {
    opacity: 0.92;
}
@media (max-width: 575px) {
    .slide-one__logo-item {
        height: 56px;
    }
    .slide-one__logo-link {
        min-height: 56px;
    }
    .slide-one__logo-stack {
        max-height: 56px;
    }
    .slide-one__logo-img--color {
        max-width: 130px;
    }
}

/* ----- Neden Biz (features-four) – Hizmetlerden sonra ----- */
.features-four .sec-title { margin-bottom: 2.5rem; }
.feature-card-four {
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(15, 53, 100, 0.08);
    height: 100%;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.feature-card-four:hover {
    box-shadow: 0 8px 28px rgba(15, 53, 100, 0.12);
    transform: translateY(-2px);
}
.feature-card-four__icon-box {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--insuba-base, #0365d3) 0%, #0f3564 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
}
.feature-card-four__icon {
    font-size: 1.5rem;
    color: #fff;
}
.feature-card-four__icon i { font-size: inherit; }
.feature-card-four__title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--insuba-black2, #333);
}
.feature-card-four__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* ----- Hizmet Alanlarımız (insurance-one #hizmet-alanlari) – kartlar aynı boyut ----- */
#hizmet-alanlari.insurance-one .owl-item {
    display: flex;
}
#hizmet-alanlari.insurance-one .insurance-one__carousel .item {
    display: flex;
    width: 100%;
}
#hizmet-alanlari.insurance-one .insurance-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
#hizmet-alanlari.insurance-one .insurance-card__image {
    flex-shrink: 0;
    height: 200px;
    position: relative;
    overflow: visible;
}
#hizmet-alanlari.insurance-one .insurance-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* İkon kutusu görselin altında, içeriğe taşacak şekilde (bottom: -40px) – kesilmesin diye overflow: visible */
#hizmet-alanlari.insurance-one .insurance-card__icon-box {
    position: absolute;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
    z-index: 2;
}
#hizmet-alanlari.insurance-one .insurance-card__content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
}

/* Hizmetlerimiz sayfası – hizmet detay kartları */
.service-detail-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.service-detail-card__image-wrap {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f5f5f5;
}
.service-detail-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-detail-card__icon-box {
    margin-bottom: 1rem;
}
.service-detail-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--insuba-base, #ff6b35);
    color: #fff;
    border-radius: 10px;
    font-size: 1.5rem;
}
.service-detail-card__icon i {
    font-size: inherit;
}
.service-detail-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--insuba-black, #0a0a0a);
}
.service-detail-card__lead {
    font-size: 1rem;
    color: #000;
    margin-bottom: 1rem;
}
.service-detail-card__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #444;
}
.service-detail-card__text + .insuba-btn {
    margin-top: 1rem;
}
.gutter-y-50 > * + * {
    margin-top: 2.5rem;
}
@media (min-width: 992px) {
    .gutter-y-30.row > * {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Çapa (#contact vb.) ile gelince yapışkan üst menü içeriği kapatmasın (JS ile kaydırma yok; tarayıcı scroll-padding kullanır) */
html {
    scroll-padding-top: 110px;
}
@media (max-width: 991px) {
    html {
        scroll-padding-top: 88px;
    }
}

/* Footer altı hızlı site içi linkler (SEO iç linkleme) */
.main-footer__site-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
.main-footer__site-nav a:hover {
    color: #fff;
    text-decoration: underline;
}

/* KVKK sayfası (kvkk.php) */
.kvkk-page__body {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
}
.kvkk-page__body h2,
.kvkk-page__body h3,
.kvkk-page__body h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--insuba-black, #0a0a0a);
}
.kvkk-page__body p {
    margin-bottom: 1rem;
}
.kvkk-page__body ul,
.kvkk-page__body ol {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

/* Hakkımızda sayfası */
.about-page-content__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--insuba-black, #0a0a0a);
}
.about-page-content__lead {
    font-size: 1rem;
    line-height: 1.7;
    color: #000;
    margin-bottom: 1.5rem;
}
.about-page-content__lead p {
    margin-bottom: 0.75rem;
}
.about-page-content__long {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #444;
}

/* Hakkımızda sayfası – hero resmi page-header__bg içinde, menünün altında kalmaması */
.page-header--hakkimizda {
    padding-top: 600px;
    min-height: 420px;
}
@media (max-width: 767px) {
    .page-header--hakkimizda {
        padding-top: 160px;
    }
}
@media (max-width: 575px) {
    .page-header--hakkimizda {
        padding-top: 120px;
    }
}
.page-header--hakkimizda .page-header__bg {
    opacity: 1;
}
.page-header--hakkimizda .page-header .container {
    position: relative;
    z-index: 2;
}
/* Hizmetlerimiz banner başlığını daha aşağı al */
.page-header--hizmetlerimiz {
    padding-top: 700px;
}
@media (max-width: 767px) {
    .page-header--hizmetlerimiz {
        padding-top: 190px;
    }
}
@media (max-width: 575px) {
    .page-header--hizmetlerimiz {
        padding-top: 145px;
    }
}

/* Üst menü: Teklif Al sonrası ek logo (Genel Ayarlar > Sağ Logo) */
.main-header__extra-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 14px;
}
.main-header__extra-logo-img {
    display: block;
    max-height: 60px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
}
@media (max-width: 1199px) {
    .main-header__extra-logo-img {
        max-height: 42px;
        max-width: 130px;
    }
}
@media (max-width: 767px) {
    .main-header__extra-logo {
        margin-left: 10px;
    }
    .main-header__extra-logo-img {
        max-height: 36px;
        max-width: 100px;
    }
}

/* Ana sayfa Ekibimiz: tema demosu ~652px üst boşluk kaldırıldı; bölüm başlığı/tagline yalnızca beyaz (ek arka plan yok) */
.team-three.team-three--lider-home {
    padding-top: 0;
    overflow: visible;
    background-color: #fff;
}
.team-three.team-three--lider-home.section-space {
    padding-top: 60px;
    padding-bottom: 100px;
}
@media (max-width: 767px) {
    .team-three.team-three--lider-home.section-space {
        padding-top: 48px;
        padding-bottom: 80px;
    }
}
.team-three.team-three--lider-home .sec-title__title,
.team-three.team-three--lider-home .sec-title__tagline {
    color: #fff;
}
.team-three.team-three--lider-home .team-three__name {
    color: var(--insuba-black, #0f3667);
}
.team-three.team-three--lider-home .team-three__designation {
    color: #5c6b7a;
}

/* Neden Biz / Farkımız ile sayaç ve ekip arası dikey boşluk */
#why-us.features-four.section-space {
    padding-bottom: 72px;
}
.funfact.funfact--home-4.section-space {
    padding-top: 56px;
    padding-bottom: 56px;
}
@media (max-width: 575px) {
    #why-us.features-four.section-space {
        padding-bottom: 56px;
    }
    .funfact.funfact--home-4.section-space {
        padding-top: 44px;
        padding-bottom: 44px;
    }
}

/* ——— Hakkımızda: organizasyon şeması (Bootstrap’ten bağımsız sınıf önekleri) ——— */
.lt-org-schema {
    --lt-org-bg-from: #0f172a;
    --lt-org-bg-to: #1e3a5f;
    --lt-org-card-bg: rgba(255, 255, 255, 0.07);
    --lt-org-card-border: rgba(255, 255, 255, 0.12);
    --lt-org-card-hover-bg: rgba(255, 255, 255, 0.13);
    --lt-org-line-color: rgba(99, 102, 241, 0.45);
    --lt-org-text-primary: #f1f5f9;
    --lt-org-text-secondary: #94a3b8;
    --lt-org-text-person: #cbd5e1;
    --lt-org-dept-color: #60a5fa;
    --lt-org-accent-indigo: rgba(99, 102, 241, 0.5);
    background: linear-gradient(135deg, var(--lt-org-bg-from) 0%, var(--lt-org-bg-to) 50%, var(--lt-org-bg-from) 100%);
    border-radius: 14px;
    padding: 1.5rem 0.75rem 2.25rem;
    color: var(--lt-org-text-primary);
    font-family: "Inter", "Segoe UI", sans-serif;
    overflow: hidden;
}
@media (min-width: 768px) {
    .lt-org-schema {
        padding: 1.75rem 1.25rem 2.5rem;
    }
}

@keyframes lt-org-fadeDown {
    from { opacity: 0; transform: translateY(-18px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes lt-org-fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes lt-org-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes lt-org-pulseSoft {
    0%,
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.35); }
    50% { box-shadow: 0 0 0 9px rgba(245, 158, 11, 0); }
}

.lt-org-schema .lt-org-a1 { animation: lt-org-fadeDown 0.5s 0s ease both; }
.lt-org-schema .lt-org-a2 { animation: lt-org-fadeDown 0.5s 0.12s ease both; }
.lt-org-schema .lt-org-a3 { animation: lt-org-fadeUp 0.5s 0.24s ease both; }
.lt-org-schema .lt-org-a4 { animation: lt-org-fadeUp 0.5s 0.36s ease both; }
.lt-org-schema .lt-org-a5 { animation: lt-org-fadeUp 0.5s 0.48s ease both; }
.lt-org-schema .lt-org-a6 { animation: lt-org-fadeUp 0.5s 0.6s ease both; }

.lt-org-schema .lt-org-card {
    background: var(--lt-org-card-bg);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid var(--lt-org-card-border);
    border-radius: 14px;
    padding: 14px 16px 12px;
    text-align: center;
    position: relative;
    cursor: default;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    width: 100%;
    box-sizing: border-box;
}
.lt-org-schema .lt-org-card:hover {
    transform: translateY(-4px) scale(1.02);
    background: var(--lt-org-card-hover-bg);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.lt-org-schema .lt-org-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    border-radius: 0 0 6px 6px;
}
.lt-org-schema .lt-org-card--gm::after {
    width: 55%;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}
.lt-org-schema .lt-org-card--director::after {
    width: 50%;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
}
.lt-org-schema .lt-org-card--manager::after {
    width: 45%;
    background: linear-gradient(90deg, #10b981, #3b82f6);
}
.lt-org-schema .lt-org-card--gm {
    animation: lt-org-pulseSoft 2.8s infinite;
    border-color: rgba(245, 158, 11, 0.25);
}
.lt-org-schema .lt-org-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-sizing: border-box;
}
.lt-org-schema .lt-org-card--gm .lt-org-avatar { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.lt-org-schema .lt-org-card--director .lt-org-avatar { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.lt-org-schema .lt-org-card--manager .lt-org-avatar { background: linear-gradient(135deg, #10b981, #3b82f6); }
.lt-org-schema .lt-org-ename { font-weight: 700; font-size: 12.5px; color: var(--lt-org-text-primary); }
.lt-org-schema .lt-org-erole { font-size: 10px; color: var(--lt-org-text-secondary); margin-top: 3px; }
.lt-org-schema .lt-org-lcard {
    background: rgba(255, 255, 255, 0.055);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 11px 13px;
    transition: transform 0.2s, background 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.lt-org-schema .lt-org-lcard:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}
.lt-org-schema .lt-org-dtitle {
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--lt-org-dept-color);
    border-bottom: 1px solid rgba(96, 165, 250, 0.22);
    padding-bottom: 5px;
    margin-bottom: 6px;
    text-align: center;
}
.lt-org-schema .lt-org-person { font-size: 9.5px; color: var(--lt-org-text-person); padding: 2px 0; text-align: center; line-height: 1.5; }
.lt-org-schema .lt-org-slabel {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    font-size: 9.5px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    border: 1.5px solid var(--lt-org-accent-indigo);
    color: #a5b4fc;
    background: rgba(99, 102, 241, 0.1);
}
.lt-org-schema .lt-org-vl {
    width: 2px;
    background: linear-gradient(to bottom, var(--lt-org-line-color), rgba(99, 102, 241, 0.15));
    margin: 0 auto;
    flex-shrink: 0;
    box-sizing: content-box;
}
.lt-org-schema .lt-org-hl {
    height: 2px;
    background: linear-gradient(to right, rgba(99, 102, 241, 0.1), var(--lt-org-line-color), rgba(99, 102, 241, 0.1));
    width: 100%;
}
.lt-org-schema .lt-org-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}
.lt-org-schema .lt-org-main-cols {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}
.lt-org-schema .lt-org-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 0;
    min-width: 0;
    box-sizing: border-box;
}
.lt-org-schema .lt-org-fcol {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 0;
    min-width: 0;
    box-sizing: border-box;
}
.lt-org-schema .lt-org-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%;
    align-items: flex-start;
    box-sizing: border-box;
    flex-wrap: wrap;
}
@media (max-width: 900px) {
    .lt-org-schema { padding: 1.1rem 0.65rem 1.75rem; }
    .lt-org-schema .lt-org-main-cols {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .lt-org-schema .lt-org-col {
        width: 100%;
        max-width: 480px;
    }
    .lt-org-schema .lt-org-col + .lt-org-col::before {
        content: "";
        display: block;
        width: 2px;
        height: 28px;
        background: linear-gradient(to bottom, var(--lt-org-line-color), rgba(99, 102, 241, 0.1));
        margin: 0 auto;
    }
}
@media (max-width: 520px) {
    .lt-org-schema .lt-org-card { padding: 11px 12px 10px; }
    .lt-org-schema .lt-org-ename { font-size: 11.5px; }
    .lt-org-schema .lt-org-erole { font-size: 9.5px; }
    .lt-org-schema .lt-org-lcard { padding: 9px 11px; }
    .lt-org-schema .lt-org-dtitle { font-size: 9px; }
    .lt-org-schema .lt-org-person { font-size: 9px; }
    .lt-org-schema .lt-org-slabel { font-size: 9px; padding: 3px 11px; }
    .lt-org-schema .lt-org-row { gap: 8px; }
}
.lt-org-schema-section .org-schema-heading {
    color: #0f3564;
    font-weight: 600;
}
@media (max-width: 575px) {
    .lt-org-schema-section .org-schema-heading { font-size: 1.1rem; }
}
.lt-org-schema-section .org-chart-image-wrap {
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(15, 53, 100, 0.12);
    padding: 10px;
}
.lt-org-schema-section .org-chart-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}
