/* ==========================================
   LAWYER HOME HERO
========================================== */

.lawyer-hero {
    position: relative;
    overflow: hidden;
}

.lawyer-hero .banner-warpper {
    position: relative;
    min-height: 780px;
    height: 88vh;
    max-height: 920px;
    overflow: hidden;
}

/* Background */
.lawyer-hero .banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.lawyer-hero .banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Okunabilirlik için gradient */
.lawyer-hero .banner-warpper::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.62) 0%,
            rgba(8, 8, 8, 0.42) 36%,
            rgba(8, 8, 8, 0.12) 68%,
            rgba(8, 8, 8, 0.18) 100%
        );
}

/* Content wrapper */
.lawyer-hero .banner-content-wrap {
    position: relative !important;
    z-index: 3;
    width: 100%;
    height: 100%;
    min-height: 780px;
    display: flex;
    align-items: center;
}

/* İçerik */
.lawyer-banner-content {
    position: relative !important;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    max-width: 720px;
}

/* Tema içerisindeki eski absolute yapıları iptal ediyoruz */
.lawyer-hero .banner-title-area,
.lawyer-hero .banner-bottom-area {
    position: static !important;
    inset: auto !important;
    transform: none !important;
}

/* Küçük üst başlık */
.lawyer-hero-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.lawyer-hero-label span {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffffff;
    flex-shrink: 0;
}

/* H1 */
.lawyer-hero .banner-title-area {
    margin: 0 !important;
    padding: 0 !important;
}

.lawyer-hero .banner-title-area h1 {
    margin: 0 !important;

    font-size: clamp(52px, 5vw, 82px);
    line-height: 1.05;

    font-weight: 500;

    color: #fff;
}

/* Açıklama */
.lawyer-hero-description {
    position: relative;
    margin-top: 30px;
    padding-top: 25px;
    max-width: 600px;
}

/* İnce dekoratif çizgi */
.lawyer-hero-description::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 68px;
    height: 1px;

    background: rgba(255, 255, 255, 0.65);
}

.lawyer-hero-description p {
    margin: 0;

    max-width: 590px;

    color: rgba(255, 255, 255, 0.90);

    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1199px) {

    .lawyer-hero .banner-warpper,
    .lawyer-hero .banner-content-wrap {
        min-height: 700px;
    }

    .lawyer-banner-content {
        padding-top: 50px;
        max-width: 650px;
    }

    .lawyer-hero .banner-title-area h1 {
        font-size: 62px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .lawyer-hero {
        margin-bottom: 0px !important;
    }

    .lawyer-hero .banner-warpper {
        height: auto;
        min-height: 650px;
    }

    .lawyer-hero .banner-content-wrap {
        min-height: 650px;
        padding: 100px 0 60px;
    }

    .lawyer-banner-content {
        padding-top: 0;
        max-width: 100%;
    }

    .lawyer-hero-label {
        margin-bottom: 18px;
        font-size: 10px;
    }

    .lawyer-hero-label span {
        width: 6px;
        height: 6px;
    }

    .lawyer-hero .banner-title-area h1 {
        font-size: 45px;
        line-height: 1.08;
    }

    .lawyer-hero-description {
        margin-top: 24px;
        padding-top: 20px;
        max-width: 100%;
    }

    .lawyer-hero-description p {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.7;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .lawyer-hero .banner-warpper,
    .lawyer-hero .banner-content-wrap {
        min-height: 600px;
    }

    .lawyer-hero .banner-title-area h1 {
        font-size: 39px;
    }

    .lawyer-hero-description p {
        font-size: 14px;
    }

}

/* =========================================================
   MERVE ÜSTÜNDAĞ - FLOATING CONTACT
   Ana Renk: #01225f
   Font: Montserrat
========================================================= */

.ust-contact,
.ust-contact * {
    box-sizing: border-box;
}

.ust-contact {
    position: fixed !important;
    left: 24px !important;
    bottom: 28px !important;
    top: auto !important;
    right: auto !important;

    z-index: 2147483000 !important;

    display: flex;
    flex-direction: column;
    gap: 10px;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;

    font-family: 'Montserrat', sans-serif;

    pointer-events: auto !important;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.ust-contact.is-ready {
    opacity: 1;
    visibility: visible;
}


/* BUTON */

.ust-contact-btn {
    position: relative;

    display: flex !important;
    align-items: center;

    width: 52px;
    height: 52px;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(1, 34, 95, .16);
    border-radius: 4px;

    box-shadow:
        0 8px 28px rgba(0, 0, 0, .10);

    text-decoration: none !important;

    cursor: pointer;

    pointer-events: auto !important;

    -webkit-tap-highlight-color: transparent;

    transition:
        width .35s cubic-bezier(.22, .61, .36, 1),
        background-color .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}


/* İKON */

.ust-contact-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.ust-contact-icon svg {
    display: block;

    width: 19px;
    height: 19px;

    fill: #01225f;

    transition:
        fill .25s ease,
        transform .25s ease;
}


/* YAZI */

.ust-contact-label {
    display: flex;
    flex-direction: column;

    min-width: 150px;

    padding-right: 20px;

    opacity: 0;

    transform: translateX(-5px);

    transition:
        opacity .2s ease,
        transform .3s ease;
}

.ust-contact-label small {
    display: block;

    margin: 0 0 2px;

    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;

    color: rgba(1, 34, 95, .55);
}

.ust-contact-label strong {
    display: block;

    margin: 0;

    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;

    white-space: nowrap;

    color: #01225f;
}


/* HOVER */

@media (hover: hover) and (pointer: fine) {

    .ust-contact-btn:hover {
        width: 218px;

        background: #01225f;

        border-color: #01225f;

        box-shadow:
            0 12px 35px rgba(1, 34, 95, .22);

        transform: translateY(-1px);
    }

    .ust-contact-btn:hover .ust-contact-icon svg {
        fill: #ffffff;
        transform: scale(.92);
    }

    .ust-contact-btn:hover .ust-contact-label {
        opacity: 1;
        transform: translateX(0);
    }

    .ust-contact-btn:hover .ust-contact-label small {
        color: rgba(255, 255, 255, .62);
    }

    .ust-contact-btn:hover .ust-contact-label strong {
        color: #ffffff;
    }

}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 767px) {

    .ust-contact {
        position: fixed !important;

        left: 12px !important;
        right: 12px !important;

        bottom: calc(12px + env(safe-area-inset-bottom)) !important;

        top: auto !important;

        width: auto !important;

        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 8px;

        transform: none !important;

        z-index: 2147483000 !important;
    }


    .ust-contact-btn {
        width: 100% !important;
        height: 52px;

        overflow: visible;

        border-radius: 4px;

        box-shadow:
            0 7px 25px rgba(0, 0, 0, .13);

        transform: none !important;
    }


    /* Telefon */
    .ust-contact-phone {
        background: #01225f;
        border-color: #01225f;
    }

    .ust-contact-phone .ust-contact-icon svg {
        fill: #ffffff;
    }

    .ust-contact-phone .ust-contact-label small {
        color: rgba(255, 255, 255, .65);
    }

    .ust-contact-phone .ust-contact-label strong {
        color: #ffffff;
    }


    /* WhatsApp */
    .ust-contact-whatsapp {
        background: #ffffff;
        border-color: rgba(1, 34, 95, .18);
    }


    .ust-contact-icon {
        width: 43px;
        min-width: 43px;
        height: 50px;
    }

    .ust-contact-icon svg {
        width: 17px;
        height: 17px;
    }


    .ust-contact-label {
        min-width: 0;

        padding-right: 10px;

        opacity: 1 !important;

        transform: none !important;
    }


    .ust-contact-label small {
        font-size: 8px;
    }

    .ust-contact-label strong {
        font-size: 10.5px;
        white-space: nowrap;
    }


    .ust-contact-btn:active {
        transform: scale(.98) !important;
    }

}


/* =========================================================
   KÜÇÜK TELEFONLAR
========================================================= */

@media (max-width: 390px) {

    .ust-contact {
        left: 8px !important;
        right: 8px !important;

        bottom: calc(8px + env(safe-area-inset-bottom)) !important;

        gap: 6px;
    }

    .ust-contact-btn {
        height: 50px;
    }

    .ust-contact-icon {
        width: 38px;
        min-width: 38px;
    }

    .ust-contact-label strong {
        font-size: 9.5px;
    }

    .ust-contact-label small {
        display: none;
    }

}


/* =========================================================
   Masaüstünde yukarı çık butonuyla karışmaması
========================================================= */

@media (min-width: 768px) {

    .ust-contact {
        left: 25px !important;
        bottom: 35px !important;
    }

}

/* Blog kartlarını eşit yükseklikte tut */
.blog-grid-page .row > [class*="col-"] {
    display: flex;
}

.blog-grid-page .blog-card {
    width: 100%;
    height: 100%;
}

.blog-grid-page .blog-card .blog-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Başlık maksimum 2 satır */
.blog-grid-page .blog-content h2 {
    min-height: 64px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

/* Açıklama maksimum 3 satır */
.blog-grid-page .blog-content p {
    min-height: 72px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

/* Devamını oku her zaman alta hizalansın */
.blog-grid-page .read-more-btn {
    margin-top: auto;
}

/* =========================================
   OFFICE MAP SECTION
========================================= */

.mu-office-map {
    width: 100%;
    background: #01225f;
    padding-top: 70px;
    overflow: hidden;
}


/* Üst içerik */
.mu-office-map-head {
    max-width: 700px;
    margin: 0 auto 45px;
    padding: 0 20px;
    text-align: center;
}


/* Küçük üst yazı */
.mu-office-label {
    display: block;
    margin-bottom: 14px;

    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.55);
}


/* Başlık */
.mu-office-map-head h2 {
    margin: 0 0 16px;

    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.25;

    color: #ffffff;
}


/* Açıklama */
.mu-office-map-head p {
    max-width: 600px;
    margin: 0 auto;

    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.70);
}


/* Harita */
.mu-office-map-frame {
    position: relative;
    width: 100%;
    height: 360px;

    background: #eeeeee;
}

.mu-office-map-frame iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .mu-office-map {
        padding-top: 60px;
    }

    .mu-office-map-head h2 {
        font-size: 34px;
    }

    .mu-office-map-frame {
        height: 330px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .mu-office-map {
        padding-top: 50px;
    }

    .mu-office-map-head {
        margin-bottom: 35px;
    }

    .mu-office-label {
        font-size: 10px;
    }

    .mu-office-map-head h2 {
        font-size: 25px;
    }

    .mu-office-map-head p {
        font-size: 14px;
        line-height: 1.7;
    }

    .mu-office-map-frame {
        height: 290px;
    }

}

/* =====================================================
   HİZMET KARTLARI - EŞİT YÜKSEKLİK
===================================================== */

/* Bootstrap kolonlarının aynı yüksekliği kullanması */
.case-study-page .row.gy-70 > [class*="col-"] {
    display: flex;
}


/* Kart */
.case-study-page .case-study-card {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
}


/* Görsellerin tamamı aynı ölçü */
.case-study-page .case-study-img {
    display: block;

    width: 100%;
    aspect-ratio: 16 / 10;

    overflow: hidden;
}


/* Görsel kırpma */
.case-study-page .case-study-img img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* İçerik alanı */
.case-study-page .case-study-content {
    flex: 1;

    display: flex;
    flex-direction: column;
}


/* Başlık yüksekliği */
.case-study-page .case-study-content h3 {
    min-height: 64px;

    display: -webkit-box;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* Açıklamalar */
.case-study-page .case-study-content p {
    min-height: 96px;

    display: -webkit-box;

    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* Buton her kartta en alta */
.case-study-page .case-study-content .primary-btn3 {
    margin-top: auto;
}

/* =========================================================
   MERVE ÜSTÜNDAĞ HOMEPAGE
========================================================= */

:root {
    --mu-primary: #01225f;
    --mu-primary-dark: #001b4c;
    --mu-primary-soft: #eef2f8;
    --mu-text: #1b1d21;
    --mu-muted: #6f747c;
    --mu-border: #e5e8ed;
    --mu-soft: #f7f8fa;
    --mu-white: #ffffff;
}


/* =========================================================
   GLOBAL HOME HELPERS
========================================================= */

.mu-home-about,
.mu-home-intro,
.mu-home-services,
.mu-home-faq,
.mu-home-blog,
.mu-home-contact {
    position: relative;
}

.mu-section-kicker {
    display: block;
    margin-bottom: 15px;
    color: var(--mu-primary);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    text-transform: uppercase;
}

.mu-light-kicker {
    color: rgba(255, 255, 255, .58);
}

.mu-home-section-title h2 {
    margin: 0;
    color: var(--mu-text);
    font-size: clamp(25px, 4vw, 25px);
    line-height: 1.12;
    font-weight: 500;
}

.mu-home-section-title p {
    max-width: 650px;
    margin: 18px 0 0;
    color: var(--mu-muted);
    font-size: 16px;
    line-height: 1.8;
}

.mu-section-description p {
    margin: 0;
    color: var(--mu-muted);
    font-size: 16px;
    line-height: 1.9;
}

.mb-60 {
    margin-bottom: 60px;
}


/* =========================================================
   ABOUT
========================================================= */

.mu-home-about {
    margin-bottom: 70px;
    overflow: hidden;
}

.mu-home-about-image {
    position: relative;
    max-width: 520px;
}

.mu-home-about-image > img {
    display: block;
    width: 100%;
    height: 640px;
    object-fit: cover;
}

.mu-home-about-year {
    position: absolute;
    right: -35px;
    bottom: 45px;
    width: 175px;
    padding: 24px 22px;
    background: var(--mu-primary);
    color: var(--mu-white);
}

.mu-home-about-year span {
    display: block;
    margin-bottom: 15px;
    color: rgba(255,255,255,.65);
    font-size: 10px;
    text-transform: uppercase;
}

.mu-home-about-year strong {
    display: block;
    margin-bottom: 6px;
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
}

.mu-home-about-year small {
    display: block;
    color: rgba(255,255,255,.72);
    font-size: 10px;
    line-height: 1.5;
}

.mu-home-about-content {
    max-width: 670px;
}

.mu-home-about-content h2 {
    margin: 0 0 30px;
    color: var(--mu-text);
    font-size: clamp(30px, 4.6vw, 30px);
    line-height: 1.08;
    font-weight: 500;
}

.mu-home-about-content p {
    margin: 0 0 20px;
    color: var(--mu-muted);
    font-size: 14px;
    line-height: 1.95;
}

.mu-home-about-content .mu-home-about-lead {
    color: #3d4249;
    font-size: 16px;
    line-height: 1.9;
}

.mu-home-about-principles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 32px 0;
}

.mu-home-about-principles span {
    padding: 8px 13px;
    border: 1px solid var(--mu-border);
    color: #555b63;
    font-size: 14px;
}


/* =========================================================
   STATEMENT
========================================================= */

.mu-home-statement {
    background: var(--mu-primary);
    margin-bottom: 70px;
}

.mu-home-statement-inner {
    display: flex;
    align-items: center;
    gap: 45px;
    padding: 60px 0;
}

.mu-statement-line {
    flex: 0 0 70px;
    height: 1px;
    background: rgba(255,255,255,.38);
}

.mu-home-statement p {
    max-width: 1050px;
    margin: 0;
    color: var(--mu-white);
    font-size: clamp(25px, 4.3vw, 25px);
    line-height: 1.28;
    font-weight: 300;
}

.mu-home-statement strong {
    font-weight: 500;
}


/* =========================================================
   CORPORATE / SEO CONTENT
========================================================= */

.mu-home-intro {
    margin-bottom: 70px;
}

.mu-home-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--mu-border);
    border-bottom: 1px solid var(--mu-border);
}

.mu-home-intro-card {
    position: relative;
    min-height: 370px;
    padding: 38px 35px 42px;
    border-right: 1px solid var(--mu-border);
}

.mu-home-intro-card:last-child {
    border-right: 0;
}

.mu-card-number {
    display: block;
    margin-bottom: 60px;
    color: #a3a7ad;
    font-size: 14px;
}

.mu-home-intro-card h3 {
    margin: 0 0 22px;
    color: var(--mu-primary);
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
}

.mu-home-intro-card p {
    margin: 0;
    color: var(--mu-muted);
    font-size: 16px;
    line-height: 1.9;
}


/* =========================================================
   SERVICES
========================================================= */

.mu-home-services {
    padding: 70px 0;
    background: var(--mu-soft);
}

.mu-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #dfe3e8;
}

.mu-service-card {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr 35px;
    gap: 20px;
    min-height: 190px;
    padding: 35px 30px;
    color: inherit;
    border-bottom: 1px solid #dfe3e8;
    transition:
        background .25s ease,
        padding .25s ease;
}

.mu-service-card:nth-child(odd) {
    border-right: 1px solid #dfe3e8;
}

.mu-service-card:hover {
    background: var(--mu-white);
}

.mu-service-no {
    color: #9ca1a8;
    font-size: 14px;
    line-height: 1.5;
}

.mu-service-content h3 {
    margin: 0 0 12px;
    color: var(--mu-primary);
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
}

.mu-service-content p {
    max-width: 440px;
    margin: 0;
    color: var(--mu-muted);
    font-size: 16px;
    line-height: 1.8;
}

.mu-service-arrow {
    align-self: start;
    justify-self: end;
    color: var(--mu-primary);
    font-size: 21px;
    transition: transform .25s ease;
}

.mu-service-card:hover .mu-service-arrow {
    transform: translateX(5px);
}

.mu-service-bottom {
    margin-top: 45px;
}


/* =========================================================
   TOOLS
========================================================= */

.mu-home-tools {
    padding: 0;
    background: var(--mu-soft);
}

.mu-home-tools-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding: 65px 70px;
    background: var(--mu-primary);
}

.mu-tools-content {
    max-width: 690px;
}

.mu-tools-content > span {
    display: block;
    margin-bottom: 15px;
    color: rgba(255,255,255,.55);
    font-size: 14px;
    text-transform: uppercase;
}

.mu-tools-content h2 {
    max-width: 650px;
    margin: 0 0 16px;
    color: var(--mu-white);
    font-size: clamp(25px, 3vw, 25px);
    line-height: 1.2;
    font-weight: 400;
}

.mu-tools-content p {
    max-width: 600px;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 16px;
    line-height: 1.8;
}

.mu-tools-link {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(255,255,255,.55);
    color: var(--mu-white);
    font-size: 12px;
    font-weight: 500;
}

.mu-tools-link span {
    font-size: 17px;
    transition: transform .2s ease;
}

.mu-tools-link:hover {
    color: var(--mu-white);
}

.mu-tools-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   FAQ
========================================================= */

.mu-home-faq {
    padding: 70px 0;
}

.mu-home-faq .faq-wrap {
    border-top: 1px solid var(--mu-border);
}

.mu-home-faq .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--mu-border);
}

.mu-home-faq .accordion-header {
    margin: 0;
}

.mu-home-faq .accordion-button {
    padding: 25px 0;
    background: transparent;
    box-shadow: none;
    color: var(--mu-text);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.mu-home-faq .accordion-button:not(.collapsed) {
    color: var(--mu-primary);
}

.mu-home-faq .accordion-button:focus {
    box-shadow: none;
}

.mu-home-faq .accordion-body {
    max-width: 820px;
    padding: 0 50px 28px 0;
    color: var(--mu-muted);
    font-size: 13px;
    line-height: 1.9;
}


/* =========================================================
   BLOG
========================================================= */

.mu-home-blog {
    padding: 70px 0;
    background: var(--mu-soft);
}

.mu-text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #9ca1a8;
    color: var(--mu-primary);
    font-size: 14px;
    font-weight: 500;
}

.mu-text-link span {
    transition: transform .2s ease;
}

.mu-text-link:hover span {
    transform: translateX(4px);
}

.mu-home-blog-card {
    height: 100%;
}

.mu-home-blog-card .blog-content {
    height: 100%;
}

.mu-home-blog-card .category {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--mu-primary);
    font-size: 10px;
    text-transform: uppercase;
}

.mu-home-blog-card h3 {
    margin: 0 0 22px;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 500;
}

.mu-home-blog-card h3 a {
    color: var(--mu-text);
}

.mu-home-blog-card .blog-img {
    display: block;
    margin-bottom: 20px;
    overflow: hidden;
}

.mu-home-blog-card .blog-img img {
    display: block;
    width: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.mu-home-blog-card:hover .blog-img img {
    transform: scale(1.025);
}

.mu-home-blog-card p {
    color: var(--mu-muted);
    font-size: 12px;
    line-height: 1.8;
}

.mu-home-blog-card .read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 5px;
    color: var(--mu-primary);
    font-size: 11px;
    font-weight: 500;
}


/* =========================================================
   CONTACT
========================================================= */

.mu-home-contact {
    padding: 130px 0;
    background: var(--mu-primary-dark);
}

.mu-home-contact-info {
    max-width: 450px;
}

.mu-home-contact-info h2 {
    margin: 0 0 25px;
    color: var(--mu-white);
    font-size: clamp(25px, 4vw, 25px);
    line-height: 1.15;
    font-weight: 400;
}

.mu-home-contact-info > p {
    margin-bottom: 45px;
    color: rgba(255,255,255,.65);
    font-size: 16px;
    line-height: 1.85;
}

.mu-contact-detail {
    padding: 17px 0;
    border-top: 1px solid rgba(255,255,255,.13);
}

.mu-contact-detail:last-child {
    border-bottom: 1px solid rgba(255,255,255,.13);
}

.mu-contact-detail > span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255,255,255,.42);
    font-size: 14px;
    text-transform: uppercase;
}

.mu-contact-detail a,
.mu-contact-detail p {
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 16px;
    line-height: 1.7;
}


/* CONTACT FORM */

.mu-home-contact-form {
    padding: 45px;
    background: var(--mu-white);
}

.mu-home-contact-form .form-inner label {
    display: block;
    margin-bottom: 8px;
    color: #32363c;
    font-size: 14px;
    font-weight: 500;
}

.mu-home-contact-form .form-inner input,
.mu-home-contact-form .form-inner textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #dfe3e8;
    border-radius: 0;
    background: transparent;
    color: var(--mu-text);
    font-family: inherit;
    font-size: 13px;
    outline: none;
}

.mu-home-contact-form .form-inner input {
    height: 49px;
}

.mu-home-contact-form .form-inner textarea {
    min-height: 115px;
    padding-top: 12px;
    resize: vertical;
}

.mu-home-contact-form .form-inner input:focus,
.mu-home-contact-form .form-inner textarea:focus {
    border-color: var(--mu-primary);
}

.mu-contact-privacy {
    margin-top: 5px;
}

.mu-contact-privacy label {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    cursor: pointer;
}

.mu-contact-privacy input {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--mu-primary);
}

.mu-contact-privacy span {
    color: #747981;
    font-size: 14px;
    line-height: 1.7;
}

.mu-contact-privacy a {
    color: var(--mu-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mu-contact-submit {
    margin-top: 12px;
}

.mu-honeypot {
    position: absolute !important;
    left: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .mu-home-about-year {
        right: -20px;
    }

    .mu-home-about-image > img {
        height: 580px;
    }

    .mu-home-intro-card {
        padding: 32px 27px 37px;
    }

    .mu-home-tools-inner {
        padding: 55px;
    }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 991px) {

    .mu-home-about,
    .mu-home-intro,
    .mu-home-services,
    .mu-home-faq,
    .mu-home-blog,
    .mu-home-contact {
        padding: 95px 0;
    }

    .mu-home-about-image {
        margin: 0 auto;
    }

    .mu-home-about-year {
        right: 20px;
    }

    .mu-home-intro-grid {
        grid-template-columns: 1fr;
    }

    .mu-home-intro-card {
        min-height: auto;
        padding: 32px 25px;
        border-right: 0;
        border-bottom: 1px solid var(--mu-border);
    }

    .mu-home-intro-card:last-child {
        border-bottom: 0;
    }

    .mu-card-number {
        margin-bottom: 28px;
    }

    .mu-service-grid {
        grid-template-columns: 1fr;
    }

    .mu-service-card:nth-child(odd) {
        border-right: 0;
    }

    .mu-home-tools-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .mu-home-contact-form {
        padding: 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .mu-home-about,
    .mu-home-intro,
    .mu-home-services,
    .mu-home-faq,
    .mu-home-blog,
    .mu-home-contact {
        padding: 50px 0;
        margin-bottom: 0px;
    }

    .mu-home-about-image > img {
        height: 470px;
    }

    .mu-home-about-year {
        right: 15px;
        bottom: 20px;
        width: 145px;
        padding: 18px;
    }

    .mu-home-about-year strong {
        font-size: 20px;
    }

    .mu-home-about-content h2 {
        font-size: 30px;
    }

    .mu-home-about-content .mu-home-about-lead {
        font-size: 14px;
    }

    .mu-home-about-principles {
        margin: 25px 0;
    }


    /* statement */

    .mu-home-statement-inner {
        display: block;
        min-height: auto;
        padding: 50px 0;
    }

    .mu-statement-line {
        display: block;
        width: 45px;
        margin-bottom: 30px;
    }

    .mu-home-statement p {
        font-size: 20px;
    }

    .mu-home-statement {
        margin-bottom: 0px;
    }


    /* title */

    .mu-home-section-title h2 {
        font-size: 25px;
    }

    .mu-section-description p {
        padding-top: 15px;
    }

    /* services */

    .mu-service-card {
        grid-template-columns: 35px 1fr 20px;
        gap: 12px;
        min-height: auto;
        padding: 27px 5px;
    }

    .mu-service-content h3 {
        font-size: 20px;
    }

    .mu-home-intro-card h3 {
        font-size: 20px;
    }


    /* tools */

    .mu-home-tools-inner {
        padding: 45px 25px;
    }

    .mu-tools-content h2 {
        font-size: 25px;
    }


    /* FAQ */

    .mu-home-faq .accordion-button {
        padding: 20px 0;
        font-size: 14px;
    }

    .mu-home-faq .accordion-body {
        padding-right: 0;
    }


    /* blog */

    .mu-home-blog-card .blog-img img {
        height: 230px;
    }


    /* contact */

    .mu-home-contact-info h2 {
        font-size: 25px;
    }

    .mu-home-contact-form {
        padding: 28px 20px;
        margin-bottom: 20px;
    }

}

/* =========================================================
   HOME BLOG - EŞİT KART YÜKSEKLİĞİ
========================================================= */

.mu-home-blog {
    padding: 130px 0;
    background: var(--mu-soft);
}


/* Bootstrap kolonlarının aynı satırda eşit uzaması */
.mu-home-blog .row.gy-5 > [class*="col-"] {
    display: flex;
}


/* Kart */
.mu-home-blog-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}


/* Kartın içeriği */
.mu-home-blog-card .blog-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}


/* Kategori */
.mu-home-blog-card .category {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--mu-primary);
    font-size: 10px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: .6px;
    text-transform: uppercase;
}


/* =========================================================
   BAŞLIK
   Maksimum 2 satır
========================================================= */

.mu-home-blog-card h3 {
    display: -webkit-box;
    overflow: hidden;
    min-height: 61px;
    margin: 0 0 22px;
    color: var(--mu-text);
    font-size: 20px;
    line-height: 1.45;
    font-weight: 500;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.mu-home-blog-card h3 a {
    color: inherit;
}

.mu-home-blog-card h3 a:hover {
    color: var(--mu-primary);
}


/* =========================================================
   GÖRSEL
========================================================= */

.mu-home-blog-card .blog-img {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
}

.mu-home-blog-card .blog-img img {
    display: block;
    width: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.mu-home-blog-card:hover .blog-img img {
    transform: scale(1.025);
}


/* =========================================================
   AÇIKLAMA
   Maksimum 3 satır
========================================================= */

.mu-home-blog-card p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 65px;
    margin: 0 0 22px;
    color: var(--mu-muted);
    font-size: 12px;
    line-height: 1.8;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}


/* =========================================================
   DEVAMINI OKU
   Her kartta aynı hizada en altta
========================================================= */

.mu-home-blog-card .read-more-btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 9px;

    margin-top: auto;
    padding-top: 4px;

    color: var(--mu-primary);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 500;
}

.mu-home-blog-card .read-more-btn span {
    transition: transform .2s ease;
}

.mu-home-blog-card .read-more-btn:hover span {
    transform: translateX(4px);
}


/* =========================================================
   TÜM MAKALELER LINK
========================================================= */

.mu-text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding-bottom: 6px;
    border-bottom: 1px solid #9ca1a8;

    color: var(--mu-primary);
    font-size: 12px;
    font-weight: 500;
}

.mu-text-link span {
    transition: transform .2s ease;
}

.mu-text-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .mu-home-blog-card .blog-img img {
        height: 245px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .mu-home-blog-card h3 {
        min-height: 56px;
        font-size: 20px;
        line-height: 1.45;
    }

    .mu-home-blog-card .blog-img img {
        height: 230px;
    }

    .mu-home-blog-card p {
        min-height: 64px;
    }

}

/* =========================================================
   404 PAGE
========================================================= */

.mu-404-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 72vh;
    padding: 70px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f8fa 100%
        );
}


/* Hafif arka plan detayı */
.mu-404-section::before {
    content: "404";
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -52%);

    color: rgba(1, 34, 95, 0.025);

    font-size: clamp(220px, 34vw, 520px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.08em;

    pointer-events: none;
    user-select: none;
}


/* İçerik */
.mu-404-content {
    position: relative;
    z-index: 2;
}


/* Küçük 404 */
.mu-404-code {
    display: block;
    margin-bottom: 18px;

    color: #01225f;

    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.18em;
}


/* Üst küçük başlık */
.mu-404-kicker {
    display: inline-block;

    margin-bottom: 22px;
    padding-bottom: 8px;

    border-bottom: 1px solid #cfd4dc;

    color: #6f747c;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* Ana başlık */
.mu-404-content h1 {
    max-width: 760px;
    margin: 0 auto 26px;

    color: #1b1d21;

    font-size: clamp(30px, 5vw, 30px);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.035em;
}


/* Açıklama */
.mu-404-content p {
    max-width: 650px;

    margin: 0 auto 38px;

    color: #6f747c;

    font-size: 16px;
    line-height: 1.9;
}


/* Buton alanı */
.mu-404-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 14px;
}


/* Ana buton */
.mu-404-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 52px;
    padding: 0 25px;

    background: #01225f;
    border: 1px solid #01225f;

    color: #ffffff;

    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.02em;

    transition:
        background-color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.mu-404-primary span {
    transition: transform .25s ease;
}

.mu-404-primary:hover {
    background: #001b4c;
    border-color: #001b4c;
    color: #ffffff;
}

.mu-404-primary:hover span {
    transform: translateX(4px);
}


/* İkincil buton */
.mu-404-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 25px;

    background: transparent;
    border: 1px solid #d8dce2;

    color: #1b1d21;

    font-size: 14px;
    line-height: 1;
    font-weight: 500;

    transition:
        border-color .25s ease,
        color .25s ease,
        background-color .25s ease;
}

.mu-404-secondary:hover {
    background: #ffffff;
    border-color: #01225f;
    color: #01225f;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .mu-404-section {
        min-height: 68vh;
        padding: 110px 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .mu-404-section {
        min-height: 65vh;
        padding: 50px 0;
    }

    .mu-404-section::before {
        font-size: 210px;
    }

    .mu-404-content h1 {
        font-size: 30px;
        line-height: 1.15;
    }

    .mu-404-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .mu-404-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .mu-404-primary,
    .mu-404-secondary {
        width: 100%;
    }

}

/* =========================================================
   FRAUD POPUP
========================================================= */

.mu-fraud-popup {
    position: fixed;
    inset: 0;
    z-index: 2147483000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.mu-fraud-popup.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* Background */
.mu-fraud-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(8, 14, 25, .58);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}


/* Dialog */
.mu-fraud-dialog {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 470px;

    padding: 42px 42px 38px;

    background: #ffffff;
    border: 1px solid rgba(1, 34, 95, .10);

    box-shadow:
        0 30px 80px rgba(0, 18, 52, .22);

    text-align: center;
}


/* Close */
.mu-fraud-close {
    position: absolute;
    top: 13px;
    right: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    padding: 0;
    border: 0;
    background: transparent;

    color: #7a7f87;

    font-family: Arial, sans-serif;
    font-size: 27px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;
    transition: color .2s ease;
}

.mu-fraud-close:hover {
    color: #01225f;
}


/* Icon */
.mu-fraud-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin: 0 auto 20px;

    border: 1px solid #01225f;
    border-radius: 50%;

    color: #01225f;

    font-size: 18px;
    font-weight: 600;
}


/* Small title */
.mu-fraud-kicker {
    display: block;

    margin-bottom: 8px;

    color: #6f747c;

    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;

    letter-spacing: .15em;
    text-transform: uppercase;
}


/* Heading */
.mu-fraud-dialog h2 {
    margin: 0 0 18px;

    color: #01225f;

    font-size: 25px;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: -.02em;
}


/* Content */
.mu-fraud-dialog p {
    margin: 0 auto 17px;

    color: #5f646d;

    font-size: 14px;
    line-height: 1.75;
    font-weight: 400;
}


/* Example SMS */
.mu-fraud-example {
    margin: 20px 0;

    padding: 13px 15px;

    background: #f7f8fa;
    border-left: 2px solid #01225f;

    color: #6f747c;

    font-size: 12px;
    line-height: 1.65;
    font-style: italic;

    text-align: left;
}


/* Important */
.mu-fraud-dialog .mu-fraud-important {
    color: #25282d;
    font-size: 14px;
}

.mu-fraud-important strong {
    color: #01225f;
    font-weight: 600;
}


/* Button */
.mu-fraud-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 130px;
    height: 46px;

    margin-top: 6px;
    padding: 0 25px;

    border: 1px solid #01225f;
    background: #01225f;

    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .04em;

    cursor: pointer;

    transition:
        background-color .2s ease,
        color .2s ease;
}

.mu-fraud-button:hover {
    background: #ffffff;
    color: #01225f;
}


/* Body lock */
body.mu-popup-open {
    overflow: hidden;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .mu-fraud-popup {
        padding: 18px;
    }

    .mu-fraud-dialog {
        max-width: 100%;
        padding: 38px 24px 28px;
    }

    .mu-fraud-dialog h2 {
        font-size: 23px;
    }

    .mu-fraud-dialog p {
        font-size: 12px;
        line-height: 1.7;
    }

    .mu-fraud-example {
        font-size: 10px;
    }

    .mu-fraud-button {
        width: 100%;
    }

}
