﻿:root {
    --miftah-navy: #17233a;
    --miftah-navy-dark: #0f172a;
    --miftah-navy-soft: #263755;
    --miftah-gold: #b37a0b;
    --miftah-gold-dark: #8d5f06;
    --miftah-gold-soft: #f8ecd4;
    --miftah-teal: #008f84;
    --miftah-teal-dark: #006f67;
    --miftah-teal-soft: #e7fbf8;
    --miftah-bg: #f3f7fb;
    --miftah-border: #dbe4ef;
    --miftah-text: #1d2939;
    --miftah-muted: #667085;
    --miftah-white: #ffffff;
    --miftah-radius-sm: 12px;
    --miftah-radius: 22px;
    --miftah-radius-lg: 34px;
    --miftah-shadow: 0 20px 50px rgba(23, 35, 58, .10);
    --miftah-shadow-soft: 0 10px 30px rgba(23, 35, 58, .08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--miftah-text);
    background: #fff;
}

a {
    text-decoration: none;
}

.public-main {
    min-height: 60vh;
}

.container {
    max-width: 1320px;
}


/* HEADER */

.miftah-site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: #fff;
    box-shadow: 0 4px 24px rgba(15, 23, 42, .08);
}

/* ÜST BAR */

.miftah-topbar {
    background: var(--miftah-navy);
    color: #fff;
    font-size: 14px;
    border-top: 2px solid rgba(179, 122, 11, .60);
}

.miftah-topbar-inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.miftah-topbar-left,
.miftah-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.miftah-top-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 7px 16px;
    border-radius: 999px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    font-weight: 850;
    line-height: 1;
}

    .miftah-top-pill:hover {
        color: #fff;
        background: rgba(255, 255, 255, .12);
    }

.miftah-top-pill-gold {
    border-color: rgba(179, 122, 11, .80);
    background: rgba(179, 122, 11, .16);
}

.miftah-top-link {
    color: rgba(255,255,255,.90);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 850;
}

    .miftah-top-link:hover {
        color: var(--miftah-gold-soft);
    }

.miftah-social-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 4px;
}

    .miftah-social-links a {
        width: 32px;
        height: 32px;
        border-radius: 999px;
        background: rgba(255,255,255,.09);
        border: 1px solid rgba(255,255,255,.14);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        transition: .2s ease;
    }

        .miftah-social-links a:hover {
            color: var(--miftah-gold-soft);
            border-color: rgba(248, 236, 212, .45);
        }

.miftah-phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 16px;
    border-radius: 999px;
    color: #fff;
    border: 1px solid rgba(0, 143, 132, .75);
    background: rgba(0, 143, 132, .22);
    font-weight: 950;
    line-height: 1;
}

    .miftah-phone-pill:hover {
        color: #fff;
        background: rgba(0, 143, 132, .32);
    }

.miftah-lang-switch {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border-radius: 999px;
    overflow: hidden;
    padding: 2px;
}

    .miftah-lang-switch a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 34px;
        height: 26px;
        border-radius: 999px;
        color: var(--miftah-navy);
        font-size: 13px;
        font-weight: 950;
    }

        .miftah-lang-switch a.active {
            background: var(--miftah-navy);
            color: #fff;
        }

/* SLOGAN BAR */

.miftah-sloganbar {
    background: radial-gradient(circle at left, rgba(0, 143, 132, .09), transparent 28%), linear-gradient(90deg, #f8fbff 0%, #ffffff 100%);
    border-bottom: 1px solid var(--miftah-border);
}

.miftah-sloganbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.miftah-sloganbar span {
    color: var(--miftah-navy);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 950;
}

    .miftah-sloganbar span i {
        color: var(--miftah-gold);
    }

.miftah-sloganbar small {
    color: var(--miftah-muted);
    font-size: 12.5px;
    font-weight: 800;
}

/* ANA NAVBAR */

.miftah-navbar {
    background: #fff;
    border-bottom: 1px solid var(--miftah-border);
}

.miftah-navbar-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    position: relative;
}

/* LOGO */

.miftah-brand {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--miftah-navy);
    flex-shrink: 0;
    min-width: 365px;
}

    .miftah-brand:hover {
        color: var(--miftah-navy);
    }

.miftah-brand-logo-wrap {
    width: 154px;
    height: 138px;
    margin-top: -46px;
    margin-bottom: -30px;
    border-radius: 0 0 76px 76px;
    background: #fff;
    border: 1px solid rgba(219, 228, 239, .95);
    border-top: 0;
    box-shadow: 0 22px 46px rgba(15, 23, 42, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 22px 18px;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

    .miftah-brand-logo-wrap img {
        max-width: 100%;
        max-height: 102px;
        object-fit: contain;
    }

    .miftah-brand-logo-wrap span {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: var(--miftah-gold-soft);
        color: var(--miftah-gold);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        font-weight: 950;
    }

.miftah-brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .miftah-brand-text strong {
        color: var(--miftah-navy);
        font-size: 26px;
        line-height: 1.05;
        font-weight: 950;
        letter-spacing: -.025em;
    }

    .miftah-brand-text small {
        color: #8a99ad;
        font-size: 14px;
        font-weight: 800;
    }

/* MENÜ */

.miftah-menu-collapse {
    justify-content: flex-end;
    align-items: center;
    gap: 26px;
}

.miftah-main-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

    .miftah-main-menu a {
        color: #424b5c;
        font-size: 17px;
        font-weight: 850;
        transition: .2s ease;
        white-space: nowrap;
    }

        .miftah-main-menu a:hover,
        .miftah-main-menu a.active {
            color: var(--miftah-teal);
        }

/* SAĞ AKSİYONLAR */

.miftah-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.miftah-whatsapp-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--miftah-teal-soft);
    color: var(--miftah-teal);
    border: 1px solid rgba(0, 143, 132, .20);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    transition: .2s ease;
}

    .miftah-whatsapp-circle:hover {
        background: var(--miftah-teal);
        color: #fff;
        transform: translateY(-2px);
    }

.miftah-whatsapp-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--miftah-teal);
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    box-shadow: 0 14px 28px rgba(0, 143, 132, .20);
}

    .miftah-whatsapp-btn:hover {
        color: #fff;
        background: var(--miftah-teal-dark);
    }

.miftah-login-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border-radius: 999px;
    color: var(--miftah-navy);
    background: #fff;
    border: 1px solid var(--miftah-border);
    font-size: 15px;
    font-weight: 850;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .04);
}

    .miftah-login-btn:hover {
        color: var(--miftah-navy);
        border-color: var(--miftah-gold);
    }

.miftah-mobile-toggle {
    display: none;
    width: 48px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--miftah-border);
    background: #fff;
    padding: 9px;
}

    .miftah-mobile-toggle span {
        display: block;
        height: 2px;
        background: var(--miftah-navy);
        margin: 5px 0;
        border-radius: 999px;
    }

/* RESPONSIVE HEADER */

@media (max-width: 1399px) {
    .miftah-brand {
        min-width: 330px;
    }

    .miftah-brand-logo-wrap {
        width: 138px;
        height: 124px;
        margin-top: -38px;
    }

        .miftah-brand-logo-wrap img {
            max-height: 90px;
        }

    .miftah-brand-text strong {
        font-size: 22px;
    }

    .miftah-main-menu {
        gap: 22px;
    }

        .miftah-main-menu a {
            font-size: 16px;
        }

    .miftah-whatsapp-btn {
        display: none;
    }
}

@media (max-width: 1199px) {
    .miftah-brand {
        min-width: auto;
    }

    .miftah-main-menu {
        gap: 18px;
    }

        .miftah-main-menu a {
            font-size: 15px;
        }

    .miftah-login-btn {
        display: none;
    }
}

@media (max-width: 991px) {
    .miftah-topbar-inner {
        justify-content: center;
    }

    .miftah-topbar-left,
    .miftah-top-link,
    .miftah-lang-switch {
        display: none;
    }

    .miftah-topbar-right {
        justify-content: center;
    }

    .miftah-sloganbar-inner {
        justify-content: center;
        text-align: center;
    }

    .miftah-sloganbar small {
        display: none;
    }

    .miftah-navbar-inner {
        min-height: 76px;
    }

    .miftah-brand-logo-wrap {
        width: 104px;
        height: 88px;
        margin-top: -22px;
        margin-bottom: -16px;
        border-radius: 0 0 48px 48px;
        padding: 12px;
    }

        .miftah-brand-logo-wrap img {
            max-height: 66px;
        }

    .miftah-brand-text strong {
        font-size: 18px;
    }

    .miftah-brand-text small {
        display: none;
    }

    .miftah-mobile-toggle {
        display: block;
    }

    .miftah-menu-collapse {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #fff;
        border: 1px solid var(--miftah-border);
        border-radius: 0 0 22px 22px;
        padding: 18px;
        box-shadow: var(--miftah-shadow);
    }

    .miftah-main-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

        .miftah-main-menu li {
            width: 100%;
        }

        .miftah-main-menu a {
            display: block;
            width: 100%;
            padding: 13px 4px;
            border-bottom: 1px solid var(--miftah-border);
        }

    .miftah-header-actions {
        width: 100%;
        margin-top: 16px;
        justify-content: space-between;
    }

    .miftah-whatsapp-circle {
        width: 46px;
        height: 46px;
    }

    .miftah-login-btn {
        display: inline-flex;
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .miftah-topbar {
        font-size: 12px;
    }

    .miftah-phone-pill {
        font-size: 12px;
        padding: 6px 10px;
    }

    .miftah-social-links {
        gap: 6px;
    }

        .miftah-social-links a {
            width: 29px;
            height: 29px;
            font-size: 13px;
        }

    .miftah-sloganbar span {
        font-size: 12.5px;
    }

    .miftah-brand-logo-wrap {
        width: 92px;
        height: 78px;
        margin-top: -18px;
    }

        .miftah-brand-logo-wrap img {
            max-height: 58px;
        }

    .miftah-brand-text {
        display: none !important;
    }
}

/* FLOATING */

.miftah-floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 1050;
    background: var(--miftah-teal);
    color: #fff;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(0, 143, 132, .32);
}

    .miftah-floating-whatsapp:hover {
        color: #fff;
        background: var(--miftah-teal-dark);
    }

.miftah-scroll-top {
    position: fixed;
    right: 24px;
    bottom: 86px;
    z-index: 1048;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: var(--miftah-gold);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(179, 122, 11, .28);
}

    .miftah-scroll-top.show {
        display: flex;
    }

/* RESPONSIVE HEADER */

@media (max-width: 1199px) {
    .miftah-main-menu {
        gap: 20px;
    }

        .miftah-main-menu a {
            font-size: 15px;
        }

    .miftah-brand-logo-wrap {
        width: 116px;
    }
}

@media (max-width: 991px) {
    .miftah-topbar-inner {
        justify-content: center;
    }

    .miftah-topbar-left {
        display: none;
    }

    .miftah-navbar-inner {
        min-height: 72px;
    }

    .miftah-brand-logo-wrap {
        width: 98px;
        height: 76px;
        margin-top: -14px;
        margin-bottom: -14px;
        border-radius: 0 0 48px 48px;
    }

        .miftah-brand-logo-wrap img {
            max-height: 56px;
        }

    .miftah-mobile-toggle {
        display: block;
    }

    .miftah-menu-collapse {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #fff;
        border: 1px solid var(--miftah-border);
        border-radius: 0 0 22px 22px;
        padding: 18px;
        box-shadow: var(--miftah-shadow);
    }

    .miftah-main-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

        .miftah-main-menu li {
            width: 100%;
        }

        .miftah-main-menu a {
            display: block;
            width: 100%;
            padding: 13px 4px;
            border-bottom: 1px solid var(--miftah-border);
        }

    .miftah-header-actions {
        width: 100%;
        margin-top: 16px;
        justify-content: space-between;
    }

    .miftah-login-btn {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .miftah-phone-pill {
        font-size: 12px;
        padding: 6px 10px;
    }

    .miftah-lang-switch a {
        min-width: 30px;
        font-size: 12px;
    }

    .miftah-brand-logo-wrap {
        width: 90px;
    }

    .miftah-floating-whatsapp {
        right: 14px;
        bottom: 16px;
        padding: 11px 16px;
        font-size: 14px;
    }

    .miftah-scroll-top {
        right: 16px;
        bottom: 76px;
    }
}
/* FOOTER */

.miftah-footer {
    background: #fff;
}

.miftah-footer-support {
    padding: 70px 0 38px;
    background: linear-gradient(180deg, #fff 0%, #f7fafc 100%);
}

.miftah-footer-support-card {
    border: 1px solid var(--miftah-border);
    border-radius: 24px;
    padding: 18px;
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--miftah-shadow-soft);
}

.miftah-support-box {
    height: 100%;
    border: 1px solid var(--miftah-border);
    border-radius: 18px;
    padding: 24px;
    background: #fff;
}

    .miftah-support-box span {
        display: block;
        color: var(--miftah-navy);
        font-size: 18px;
        font-weight: 900;
        margin-bottom: 6px;
    }

    .miftah-support-box p {
        color: var(--miftah-muted);
        margin-bottom: 14px;
        line-height: 1.6;
    }

    .miftah-support-box a {
        color: var(--miftah-teal-dark);
        font-weight: 900;
    }

.miftah-support-box-soft {
    background: linear-gradient(135deg, #fff, var(--miftah-teal-soft));
}

.miftah-support-box-dark {
    background: linear-gradient(135deg, var(--miftah-navy), #173c4a);
    border-color: rgba(255, 255, 255, .12);
}

    .miftah-support-box-dark span,
    .miftah-support-box-dark p {
        color: #fff;
    }

    .miftah-support-box-dark p {
        color: rgba(255, 255, 255, .86);
    }

    .miftah-support-box-dark a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 10px 18px;
        border-radius: 999px;
        background: var(--miftah-teal);
        color: #fff;
        font-weight: 900;
    }

.miftah-footer-main {
    padding: 46px 0 28px;
    background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.miftah-footer-brand-card,
.miftah-footer-menu-card {
    height: 100%;
    border: 1px solid var(--miftah-border);
    border-radius: 22px;
    background: #fff;
    padding: 28px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}

    .miftah-footer-brand-card img {
        max-width: 170px;
        max-height: 110px;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .miftah-footer-brand-card h4 {
        color: var(--miftah-navy);
        font-size: 28px;
        font-weight: 950;
        margin-bottom: 16px;
    }

    .miftah-footer-brand-card h5 {
        color: var(--miftah-navy);
        font-size: 18px;
        line-height: 1.55;
        font-weight: 850;
        margin-bottom: 18px;
    }

    .miftah-footer-brand-card p {
        color: var(--miftah-muted);
        line-height: 1.8;
        margin: 0;
    }

    .miftah-footer-menu-card h5 {
        color: var(--miftah-navy);
        font-size: 22px;
        font-weight: 950;
        margin-bottom: 20px;
    }

    .miftah-footer-menu-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .miftah-footer-menu-card li {
        margin-bottom: 12px;
    }

    .miftah-footer-menu-card a {
        color: #344054;
        font-size: 16px;
        font-weight: 800;
    }

        .miftah-footer-menu-card a:hover {
            color: var(--miftah-gold);
        }

.miftah-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.miftah-footer-contact-list span {
    color: var(--miftah-gold);
    width: 22px;
    flex-shrink: 0;
}

.miftah-footer-contact-list p {
    color: #344054;
    margin: 0;
    line-height: 1.7;
    font-weight: 700;
}

.miftah-footer-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    min-height: 44px;
    padding: 10px 22px;
    border-radius: 999px;
    background: var(--miftah-teal-soft);
    color: var(--miftah-teal-dark) !important;
    font-weight: 950;
}

.miftah-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--miftah-border);
}

    .miftah-footer-bottom p {
        margin: 0;
        color: var(--miftah-muted);
        font-weight: 700;
    }

    .miftah-footer-bottom div {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .miftah-footer-bottom a {
        color: var(--miftah-navy);
        font-weight: 800;
    }

@media (max-width: 991px) {
    .miftah-footer-support {
        padding: 46px 0 26px;
    }

    .miftah-footer-main {
        padding-top: 28px;
    }
}

@media (max-width: 575px) {
    .miftah-footer-brand-card,
    .miftah-footer-menu-card {
        padding: 22px;
    }

    .miftah-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* HOME */

.miftah-home-hero {
    position: relative;
    padding: 34px 0 90px;
    background: radial-gradient(circle at top left, rgba(179, 122, 11, .10), transparent 34%), linear-gradient(180deg, #f7fafc 0%, #fff 100%);
}

.miftah-hero-shell {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(15, 23, 42, .16);
    background: var(--miftah-navy);
}

.miftah-hero-slider,
.miftah-hero-fallback {
    min-height: 590px;
    position: relative;
}

    .miftah-hero-slider .carousel-item {
        min-height: 590px;
        position: relative;
    }

.miftah-hero-img {
    width: 100%;
    height: 590px;
    object-fit: cover;
    display: block;
}

.miftah-hero-img-empty,
.miftah-hero-fallback {
    background: linear-gradient(135deg, rgba(23, 35, 58, .95), rgba(15, 23, 42, .88)), radial-gradient(circle at 80% 20%, rgba(179, 122, 11, .38), transparent 36%);
}

.miftah-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, .92) 0%, rgba(23, 35, 58, .72) 44%, rgba(15, 23, 42, .18) 100%);
}

.miftah-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 58px 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

.miftah-hero-copy {
    max-width: 690px;
    color: #fff;
}

.miftah-hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(179, 122, 11, .22);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 22px;
}

.miftah-hero-copy h1 {
    font-size: clamp(42px, 5.4vw, 78px);
    line-height: .98;
    font-weight: 950;
    letter-spacing: -.04em;
    margin-bottom: 16px;
}

.miftah-hero-copy h2 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, .94);
}

.miftah-hero-copy p {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 0;
}

.miftah-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.miftah-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 950;
    transition: .2s ease;
    border: 1px solid transparent;
}

    .miftah-btn:hover {
        transform: translateY(-2px);
    }

.miftah-btn-gold {
    background: var(--miftah-gold);
    color: #fff;
    box-shadow: 0 15px 34px rgba(179, 122, 11, .25);
}

    .miftah-btn-gold:hover {
        background: var(--miftah-gold-dark);
        color: #fff;
    }

.miftah-btn-light {
    background: #fff;
    color: var(--miftah-navy);
}

    .miftah-btn-light:hover {
        background: var(--miftah-gold-soft);
        color: var(--miftah-navy);
    }

.miftah-btn-navy {
    background: var(--miftah-navy);
    color: #fff;
}

    .miftah-btn-navy:hover {
        background: var(--miftah-navy-dark);
        color: #fff;
    }

.miftah-btn-outline {
    background: #fff;
    border-color: var(--miftah-border);
    color: var(--miftah-navy);
}

    .miftah-btn-outline:hover {
        border-color: var(--miftah-gold);
        color: var(--miftah-gold-dark);
    }

.miftah-btn-whatsapp {
    background: var(--miftah-teal);
    color: #fff;
}

    .miftah-btn-whatsapp:hover {
        background: var(--miftah-teal-dark);
        color: #fff;
    }

.miftah-hero-info {
    width: 300px;
    gap: 14px;
}

    .miftah-hero-info div {
        background: rgba(255, 255, 255, .13);
        border: 1px solid rgba(255, 255, 255, .18);
        backdrop-filter: blur(12px);
        border-radius: 22px;
        padding: 22px;
        color: #fff;
    }

    .miftah-hero-info strong {
        display: block;
        font-size: 30px;
        line-height: 1;
        font-weight: 950;
        margin-bottom: 8px;
    }

    .miftah-hero-info span {
        color: rgba(255, 255, 255, .78);
        font-weight: 800;
    }

.miftah-hero-control {
    width: 58px;
}

.miftah-search-panel {
    position: relative;
    z-index: 5;
    margin: -42px auto 0;
    max-width: 1120px;
    background: #fff;
    border: 1px solid var(--miftah-border);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 25px 65px rgba(15, 23, 42, .14);
}

    .miftah-search-panel label {
        display: block;
        margin-bottom: 8px;
        color: var(--miftah-navy);
        font-weight: 900;
    }

    .miftah-search-panel .form-select {
        min-height: 52px;
        border-radius: 16px;
        border-color: var(--miftah-border);
        color: var(--miftah-text);
        font-weight: 800;
    }

.miftah-search-btn {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 16px;
    background: var(--miftah-gold);
    color: #fff;
    font-weight: 950;
}

/* COMMON SECTION */

.miftah-section-head {
    margin-bottom: 38px;
}

    .miftah-section-head span {
        display: inline-flex;
        color: var(--miftah-gold);
        font-size: 15px;
        font-weight: 950;
        margin-bottom: 8px;
    }

    .miftah-section-head h2 {
        color: var(--miftah-navy);
        font-size: clamp(30px, 4vw, 48px);
        line-height: 1.12;
        font-weight: 950;
        letter-spacing: -.03em;
        margin-bottom: 10px;
    }

    .miftah-section-head p {
        color: var(--miftah-muted);
        font-size: 17px;
        line-height: 1.7;
        max-width: 680px;
    }

    .miftah-section-head.text-center p {
        margin-left: auto;
        margin-right: auto;
    }

.miftah-section-head-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 26px;
}

.miftah-section-link {
    flex-shrink: 0;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--miftah-border);
    color: var(--miftah-navy);
    font-weight: 950;
    padding: 10px 20px;
}

/* QUICK */

.miftah-quick-section {
    padding: 10px 0 88px;
    background: #fff;
}

.miftah-quick-card {
    min-height: 235px;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: var(--miftah-navy);
    box-shadow: var(--miftah-shadow-soft);
    color: #fff;
}

    .miftah-quick-card:hover {
        color: #fff;
        transform: translateY(-5px);
    }

    .miftah-quick-card img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: .58;
        transition: .3s ease;
    }

    .miftah-quick-card:hover img {
        transform: scale(1.06);
    }

.miftah-quick-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, .08), rgba(15, 23, 42, .86));
}

.miftah-quick-card-static {
    background: radial-gradient(circle at top right, rgba(179, 122, 11, .32), transparent 34%), linear-gradient(135deg, var(--miftah-navy), #263755);
}

.miftah-quick-card-content {
    position: absolute;
    inset: auto 22px 22px 22px;
    z-index: 2;
}

    .miftah-quick-card-content span {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: rgba(255, 255, 255, .14);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 14px;
        font-weight: 950;
    }

    .miftah-quick-card-content h3 {
        color: #fff;
        font-size: 24px;
        font-weight: 950;
        margin-bottom: 8px;
    }

    .miftah-quick-card-content p {
        color: rgba(255, 255, 255, .82);
        margin: 0;
        line-height: 1.5;
    }

/* TOURS */

.miftah-tour-section {
    padding: 88px 0;
    background: var(--miftah-bg);
}

.miftah-tour-list {
    display: grid;
    gap: 22px;
}

.miftah-tour-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 240px;
    gap: 0;
    background: #fff;
    border: 1px solid var(--miftah-border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 42px rgba(15, 23, 42, .06);
    transition: .2s ease;
}

    .miftah-tour-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 55px rgba(15, 23, 42, .10);
    }

.miftah-tour-image {
    min-height: 270px;
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--miftah-navy);
}

    .miftah-tour-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .3s ease;
    }

.miftah-tour-card:hover .miftah-tour-image img {
    transform: scale(1.05);
}

.miftah-tour-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 270px;
    background: radial-gradient(circle at top right, rgba(179, 122, 11, .28), transparent 34%), linear-gradient(135deg, var(--miftah-navy), var(--miftah-navy-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    text-align: center;
    padding: 20px;
}

.miftah-tour-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--miftah-gold);
    color: #fff;
    font-size: 13px;
    font-weight: 950;
}

.miftah-tour-content {
    padding: 28px;
}

.miftah-tour-date-line {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

    .miftah-tour-date-line div {
        min-width: 88px;
    }

    .miftah-tour-date-line small,
    .miftah-tour-hotel-grid small,
    .miftah-tour-price-box small,
    .miftah-premium-hotel-meta small {
        display: block;
        color: var(--miftah-muted);
        font-size: 12px;
        font-weight: 900;
        margin-bottom: 4px;
    }

    .miftah-tour-date-line strong {
        color: var(--miftah-navy);
        font-size: 15px;
        font-weight: 950;
    }

    .miftah-tour-date-line > span {
        width: 1px;
        height: 30px;
        background: var(--miftah-border);
    }

.miftah-tour-content h3 {
    font-size: 25px;
    font-weight: 950;
    line-height: 1.25;
    margin-bottom: 10px;
}

    .miftah-tour-content h3 a {
        color: var(--miftah-navy);
    }

.miftah-tour-desc {
    color: var(--miftah-muted);
    line-height: 1.65;
    margin-bottom: 18px;
}

.miftah-tour-hotel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

    .miftah-tour-hotel-grid div {
        background: #f8fbff;
        border: 1px solid var(--miftah-border);
        border-radius: 16px;
        padding: 13px;
    }

    .miftah-tour-hotel-grid strong {
        display: block;
        color: var(--miftah-navy);
        font-size: 14px;
        font-weight: 950;
        line-height: 1.35;
    }

.miftah-tour-price-box {
    border-left: 1px solid var(--miftah-border);
    background: linear-gradient(180deg, #fff, #f8fbff);
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

    .miftah-tour-price-box del {
        color: #98a2b3;
        font-size: 17px;
        font-weight: 800;
        margin-bottom: 3px;
    }

    .miftah-tour-price-box > strong {
        color: var(--miftah-gold-dark);
        font-size: 32px;
        line-height: 1.05;
        font-weight: 950;
        margin-bottom: 20px;
    }

.miftah-tour-actions {
    width: 100%;
    display: grid;
    gap: 10px;
}

    .miftah-tour-actions .miftah-btn {
        width: 100%;
    }

/* PREMIUM HOTEL */

.miftah-premium-hotel-section {
    padding: 92px 0;
    background: #fff;
}

.miftah-premium-hotel {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 30px;
    align-items: stretch;
    background: radial-gradient(circle at top right, rgba(179, 122, 11, .20), transparent 34%), linear-gradient(135deg, var(--miftah-navy), var(--miftah-navy-dark));
    border-radius: 34px;
    padding: 34px;
    overflow: hidden;
    box-shadow: var(--miftah-shadow);
}

.miftah-premium-hotel-copy {
    padding: 34px;
    color: #fff;
}

    .miftah-premium-hotel-copy > span {
        color: var(--miftah-gold-soft);
        font-weight: 950;
    }

    .miftah-premium-hotel-copy h2 {
        color: #fff;
        font-size: clamp(34px, 4vw, 54px);
        font-weight: 950;
        letter-spacing: -.03em;
        margin: 10px 0 16px;
    }

    .miftah-premium-hotel-copy p {
        color: rgba(255, 255, 255, .82);
        font-size: 17px;
        line-height: 1.75;
    }

.miftah-premium-hotel-meta {
    display: grid;
    gap: 12px;
    margin: 26px 0;
}

    .miftah-premium-hotel-meta div {
        background: rgba(255, 255, 255, .10);
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 18px;
        padding: 14px 16px;
    }

    .miftah-premium-hotel-meta strong {
        color: #fff;
        font-weight: 950;
    }

.miftah-premium-hotel-image {
    min-height: 430px;
    border-radius: 26px;
    overflow: hidden;
    display: block;
    background: rgba(255, 255, 255, .08);
}

    .miftah-premium-hotel-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* ABOUT */

.miftah-about-section {
    padding: 92px 0;
    background: var(--miftah-bg);
}

.miftah-about-image-wrap {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    min-height: 520px;
    box-shadow: var(--miftah-shadow);
    background: var(--miftah-navy);
}

    .miftah-about-image-wrap img {
        width: 100%;
        height: 520px;
        object-fit: cover;
    }

.miftah-about-placeholder {
    min-height: 520px;
    background: radial-gradient(circle at top right, rgba(179, 122, 11, .26), transparent 34%), linear-gradient(135deg, var(--miftah-navy), var(--miftah-navy-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 950;
    font-size: 34px;
    text-align: center;
}

.miftah-about-floating {
    position: absolute;
    left: 28px;
    bottom: 28px;
    right: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    padding: 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .18);
}

    .miftah-about-floating strong {
        display: block;
        color: var(--miftah-navy);
        font-size: 26px;
        font-weight: 950;
    }

    .miftah-about-floating span {
        color: var(--miftah-muted);
        font-weight: 800;
    }

.miftah-about-copy > span {
    color: var(--miftah-gold);
    font-weight: 950;
}

.miftah-about-copy h2 {
    color: var(--miftah-navy);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -.03em;
    margin: 10px 0 18px;
}

.miftah-about-copy p {
    color: var(--miftah-muted);
    font-size: 17px;
    line-height: 1.8;
}

.miftah-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 28px 0;
}

    .miftah-about-stats div {
        border: 1px solid var(--miftah-border);
        border-radius: 18px;
        padding: 18px;
        background: #fff;
    }

    .miftah-about-stats strong {
        display: block;
        color: var(--miftah-navy);
        font-size: 23px;
        font-weight: 950;
        line-height: 1.1;
        margin-bottom: 6px;
    }

    .miftah-about-stats span {
        color: var(--miftah-muted);
        font-size: 13px;
        font-weight: 850;
    }

.miftah-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* SERVICES */

.miftah-services-section {
    padding: 92px 0;
    background: #fff;
}

.miftah-service-card {
    height: 100%;
    border: 1px solid var(--miftah-border);
    border-radius: 26px;
    background: #fff;
    padding: 30px;
    box-shadow: var(--miftah-shadow-soft);
    transition: .2s ease;
}

    .miftah-service-card:hover {
        transform: translateY(-5px);
        border-color: rgba(179, 122, 11, .36);
    }

.miftah-service-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: var(--miftah-gold-soft);
    color: var(--miftah-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    margin-bottom: 20px;
}

.miftah-service-card h3 {
    color: var(--miftah-navy);
    font-size: 23px;
    font-weight: 950;
    margin-bottom: 10px;
}

.miftah-service-card p {
    color: var(--miftah-muted);
    line-height: 1.7;
    margin: 0;
}

/* FAQ */

.miftah-faq-section {
    padding: 92px 0;
    background: var(--miftah-bg);
}

.miftah-faq-accordion .accordion-item {
    border: 1px solid var(--miftah-border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
}

.miftah-faq-accordion .accordion-button {
    padding: 22px 26px;
    color: var(--miftah-navy);
    font-size: 17px;
    font-weight: 950;
    box-shadow: none;
}

    .miftah-faq-accordion .accordion-button:not(.collapsed) {
        background: #fff;
        color: var(--miftah-gold-dark);
    }

.miftah-faq-accordion .accordion-body {
    padding: 0 26px 24px;
    color: var(--miftah-muted);
    line-height: 1.8;
}

/* FINAL CTA */

.miftah-final-cta-section {
    padding: 86px 0;
    background: #fff;
}

.miftah-final-cta {
    border-radius: 34px;
    background: radial-gradient(circle at top right, rgba(179, 122, 11, .28), transparent 34%), linear-gradient(135deg, var(--miftah-navy), var(--miftah-navy-dark));
    padding: 48px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: var(--miftah-shadow);
}

    .miftah-final-cta span {
        color: var(--miftah-gold-soft);
        font-weight: 950;
    }

    .miftah-final-cta h2 {
        color: #fff;
        font-size: clamp(30px, 4vw, 48px);
        font-weight: 950;
        letter-spacing: -.03em;
        margin: 8px 0 12px;
    }

    .miftah-final-cta p {
        color: rgba(255, 255, 255, .82);
        font-size: 17px;
        line-height: 1.7;
        margin: 0;
        max-width: 720px;
    }

.miftah-final-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* HOME RESPONSIVE */

@media (max-width: 1199px) {
    .miftah-tour-card {
        grid-template-columns: 230px minmax(0, 1fr);
    }

    .miftah-tour-price-box {
        grid-column: 1 / -1;
        border-left: 0;
        border-top: 1px solid var(--miftah-border);
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 22px;
    }

    .miftah-tour-actions {
        width: auto;
        min-width: 260px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .miftah-home-hero {
        padding-top: 22px;
        padding-bottom: 66px;
    }

    .miftah-hero-shell {
        border-radius: 26px;
    }

    .miftah-hero-slider,
    .miftah-hero-fallback,
    .miftah-hero-slider .carousel-item,
    .miftah-hero-img {
        min-height: 560px;
        height: 560px;
    }

    .miftah-hero-content {
        padding: 42px 28px;
    }

    .miftah-hero-overlay {
        background: rgba(15, 23, 42, .72);
    }

    .miftah-search-panel {
        margin-top: -28px;
    }

    .miftah-section-head-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .miftah-tour-card {
        grid-template-columns: 1fr;
    }

    .miftah-tour-image {
        min-height: 280px;
    }

    .miftah-tour-price-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .miftah-tour-actions {
        width: 100%;
        min-width: 0;
    }

    .miftah-premium-hotel {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .miftah-premium-hotel-copy {
        padding: 18px;
    }

    .miftah-about-stats {
        grid-template-columns: 1fr;
    }

    .miftah-final-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 34px;
    }
}

@media (max-width: 575px) {
    .miftah-hero-slider,
    .miftah-hero-fallback,
    .miftah-hero-slider .carousel-item,
    .miftah-hero-img {
        min-height: 520px;
        height: 520px;
    }

    .miftah-hero-content {
        padding: 34px 20px;
    }

    .miftah-hero-copy h1 {
        font-size: 38px;
    }

    .miftah-hero-copy p {
        font-size: 16px;
    }

    .miftah-search-panel {
        padding: 18px;
        border-radius: 20px;
    }

    .miftah-quick-card {
        min-height: 205px;
    }

    .miftah-quick-card-content {
        inset: auto 16px 16px 16px;
    }

        .miftah-quick-card-content h3 {
            font-size: 20px;
        }

    .miftah-tour-content,
    .miftah-tour-price-box {
        padding: 22px;
    }

    .miftah-tour-date-line {
        gap: 10px;
    }

        .miftah-tour-date-line > span {
            display: none;
        }

    .miftah-tour-hotel-grid {
        grid-template-columns: 1fr;
    }

    .miftah-tour-actions {
        grid-template-columns: 1fr;
    }

    .miftah-premium-hotel-section,
    .miftah-about-section,
    .miftah-services-section,
    .miftah-faq-section,
    .miftah-final-cta-section {
        padding: 64px 0;
    }

    .miftah-about-image-wrap,
    .miftah-about-image-wrap img,
    .miftah-about-placeholder {
        min-height: 390px;
        height: 390px;
    }
}
/* TOUR LIST PAGE */

.miftah-page-hero {
    background: radial-gradient(circle at top right, rgba(179, 122, 11, .18), transparent 34%), linear-gradient(135deg, var(--miftah-navy), var(--miftah-navy-dark));
    padding: 70px 0 62px;
    color: #fff;
    border-bottom: 5px solid var(--miftah-gold);
}

.miftah-page-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.miftah-page-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid rgba(179, 122, 11, .75);
    color: var(--miftah-gold-soft);
    background: rgba(179, 122, 11, .12);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.miftah-page-hero h1 {
    color: #fff;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 950;
    letter-spacing: -.04em;
    margin-bottom: 12px;
}

.miftah-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, .72);
    font-weight: 700;
}

    .miftah-breadcrumb a {
        color: rgba(255, 255, 255, .82);
    }

    .miftah-breadcrumb strong {
        color: var(--miftah-gold-soft);
    }

.miftah-page-quick-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(179, 122, 11, .55);
    border-radius: 18px;
    padding: 10px;
    background: rgba(255, 255, 255, .06);
}

    .miftah-page-quick-actions a {
        min-height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 14px;
        border-radius: 12px;
        color: #fff;
        font-weight: 950;
    }

.miftah-page-action-whatsapp {
    background: var(--miftah-teal);
}

.miftah-page-action-phone {
    background: var(--miftah-gold);
}

.miftah-tour-list-page {
    padding: 0 0 92px;
    background: #f7fafc;
}

.miftah-tour-filter-bar {
    margin-top: -28px;
    margin-bottom: 34px;
    position: relative;
    z-index: 4;
    background: #fff;
    border: 1px solid var(--miftah-border);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, .12);
    display: grid;
    grid-template-columns: 1.4fr .8fr .7fr auto;
    gap: 16px;
    align-items: end;
}

.miftah-filter-group strong {
    display: block;
    color: var(--miftah-navy);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.miftah-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .miftah-filter-pills button {
        border: 1px solid var(--miftah-border);
        background: #f3f7fb;
        color: #344054;
        min-height: 38px;
        border-radius: 10px;
        padding: 8px 14px;
        font-weight: 850;
    }

        .miftah-filter-pills button.active {
            background: var(--miftah-gold);
            color: #fff;
            border-color: var(--miftah-gold);
        }

.miftah-filter-group .form-select {
    min-height: 42px;
    border-radius: 12px;
    border-color: var(--miftah-border);
    font-weight: 800;
}

.miftah-filter-submit {
    display: flex;
    gap: 8px;
}

    .miftah-filter-submit button,
    .miftah-filter-submit a {
        min-height: 42px;
        border-radius: 12px;
        padding: 9px 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 950;
    }

    .miftah-filter-submit button {
        border: 0;
        background: var(--miftah-navy);
        color: #fff;
    }

    .miftah-filter-submit a {
        border: 1px solid var(--miftah-border);
        background: #fff;
        color: var(--miftah-navy);
    }

.miftah-tour-sidebar {
    position: sticky;
    top: 148px;
    display: grid;
    gap: 18px;
}

.miftah-sidebar-premium-card {
    background: radial-gradient(circle at top right, rgba(179, 122, 11, .26), transparent 34%), linear-gradient(135deg, var(--miftah-navy), var(--miftah-navy-dark));
    border-radius: 24px;
    padding: 26px;
    color: #fff;
    box-shadow: var(--miftah-shadow-soft);
}

    .miftah-sidebar-premium-card > span {
        display: inline-flex;
        border: 1px solid rgba(255, 255, 255, .20);
        border-radius: 999px;
        padding: 7px 14px;
        color: rgba(255, 255, 255, .82);
        font-size: 12px;
        font-weight: 950;
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    .miftah-sidebar-premium-card h2 {
        color: #fff;
        font-size: 29px;
        font-weight: 950;
        letter-spacing: -.03em;
        margin-bottom: 12px;
    }

    .miftah-sidebar-premium-card p {
        color: rgba(255, 255, 255, .78);
        line-height: 1.65;
    }

.miftah-sidebar-tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 20px;
}

    .miftah-sidebar-tags span {
        border: 1px solid rgba(255, 255, 255, .16);
        background: rgba(255, 255, 255, .08);
        border-radius: 10px;
        padding: 9px 10px;
        color: rgba(255, 255, 255, .88);
        font-size: 12px;
        font-weight: 850;
    }

.miftah-sidebar-info-card,
.miftah-sidebar-category-card,
.miftah-sidebar-contact-card {
    border: 1px solid var(--miftah-border);
    border-radius: 20px;
    background: #fff;
    padding: 22px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}

.miftah-sidebar-info-card {
    border-left: 5px solid var(--miftah-teal);
}

    .miftah-sidebar-info-card p {
        color: #344054;
        line-height: 1.75;
        margin: 0;
    }

.miftah-sidebar-category-card h3,
.miftah-sidebar-contact-card h3 {
    color: var(--miftah-navy);
    font-size: 20px;
    font-weight: 950;
    margin-bottom: 14px;
}

.miftah-sidebar-category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.miftah-sidebar-category-card li {
    margin-bottom: 10px;
}

.miftah-sidebar-category-card a {
    display: block;
    border: 1px solid var(--miftah-border);
    border-radius: 12px;
    padding: 11px 13px;
    color: #344054;
    font-weight: 850;
}

    .miftah-sidebar-category-card a:hover {
        border-color: var(--miftah-gold);
        color: var(--miftah-gold-dark);
    }

.miftah-sidebar-contact-card p {
    color: var(--miftah-muted);
    line-height: 1.6;
}

.miftah-sidebar-phone,
.miftah-sidebar-whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    border-radius: 12px;
    font-weight: 950;
    margin-top: 10px;
}

.miftah-sidebar-phone {
    background: var(--miftah-gold-soft);
    color: var(--miftah-gold-dark);
}

.miftah-sidebar-whatsapp {
    background: var(--miftah-teal);
    color: #fff;
}

.miftah-list-topline {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 18px;
}

    .miftah-list-topline span {
        color: var(--miftah-gold-dark);
        font-weight: 950;
    }

    .miftah-list-topline h2 {
        color: var(--miftah-navy);
        font-size: 30px;
        font-weight: 950;
        margin: 5px 0 0;
    }

.miftah-view-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .miftah-view-switch span {
        color: #344054;
        font-size: 13px;
        font-weight: 850;
    }

    .miftah-view-switch button {
        min-height: 34px;
        border: 1px solid var(--miftah-border);
        background: #fff;
        color: var(--miftah-navy);
        border-radius: 999px;
        padding: 6px 12px;
        font-size: 13px;
        font-weight: 900;
    }

        .miftah-view-switch button.active {
            background: var(--miftah-gold);
            border-color: var(--miftah-gold);
            color: #fff;
        }

.miftah-public-tour-list {
    display: grid;
    gap: 22px;
}

.miftah-public-tour-card {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) 190px;
    background: #fff;
    border: 1px solid var(--miftah-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
}

.miftah-public-tour-date {
    background: linear-gradient(180deg, #f9fbff, #eef4fb);
    border-right: 1px solid var(--miftah-border);
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .miftah-public-tour-date span {
        color: var(--miftah-muted);
        font-size: 12px;
        font-weight: 950;
        text-transform: uppercase;
    }

    .miftah-public-tour-date strong {
        color: var(--miftah-navy);
        font-size: 20px;
        line-height: 1.3;
        font-weight: 950;
        margin: 8px 0;
    }

    .miftah-public-tour-date small {
        display: inline-flex;
        color: var(--miftah-gold-dark);
        font-weight: 950;
    }

.miftah-public-tour-main {
    padding: 22px;
}

.miftah-public-tour-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.miftah-public-tour-badge {
    display: inline-flex;
    min-height: 28px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--miftah-gold-soft);
    color: var(--miftah-gold-dark);
    font-size: 12px;
    font-weight: 950;
    margin-bottom: 8px;
}

.miftah-public-tour-header h3 {
    color: var(--miftah-navy);
    font-size: 24px;
    font-weight: 950;
    margin: 0;
}

    .miftah-public-tour-header h3 a {
        color: var(--miftah-navy);
    }

.miftah-airline-mini {
    min-width: 90px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

    .miftah-airline-mini img {
        max-width: 90px;
        max-height: 42px;
        object-fit: contain;
    }

    .miftah-airline-mini span {
        color: var(--miftah-muted);
        font-size: 12px;
        font-weight: 900;
        text-align: right;
    }

.miftah-public-tour-route {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--miftah-border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
}

    .miftah-public-tour-route div {
        padding: 14px;
        background: #f8fbff;
        border-right: 1px solid var(--miftah-border);
    }

        .miftah-public-tour-route div:last-child {
            border-right: 0;
        }

    .miftah-public-tour-route small {
        display: block;
        color: var(--miftah-muted);
        font-size: 11px;
        font-weight: 950;
        text-transform: uppercase;
    }

    .miftah-public-tour-route strong {
        display: block;
        color: var(--miftah-navy);
        font-size: 15px;
        font-weight: 950;
        margin: 3px 0;
    }

    .miftah-public-tour-route span {
        display: block;
        color: #667085;
        font-size: 13px;
        font-weight: 750;
    }

.miftah-public-hotel-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.miftah-public-hotel-item {
    border: 1px solid var(--miftah-border);
    border-radius: 16px;
    background: #fff;
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
}

    .miftah-public-hotel-item img {
        width: 72px;
        height: 62px;
        object-fit: cover;
        border-radius: 12px;
        flex-shrink: 0;
    }

    .miftah-public-hotel-item small {
        display: block;
        color: var(--miftah-muted);
        font-size: 12px;
        font-weight: 850;
    }

    .miftah-public-hotel-item strong {
        display: block;
        color: var(--miftah-navy);
        font-size: 15px;
        line-height: 1.25;
        font-weight: 950;
    }

    .miftah-public-hotel-item span {
        color: var(--miftah-gold-dark);
        font-size: 12px;
        font-weight: 850;
    }

.miftah-public-tour-note {
    margin: 14px 0 0;
    background: var(--miftah-teal-soft);
    color: var(--miftah-teal-dark);
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 850;
}

.miftah-public-tour-bottom {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--miftah-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.miftah-public-tour-share,
.miftah-public-tour-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

    .miftah-public-tour-share button,
    .miftah-public-btn-light,
    .miftah-public-btn-dark {
        min-height: 36px;
        border-radius: 999px;
        padding: 8px 14px;
        font-size: 13px;
        font-weight: 950;
    }

    .miftah-public-tour-share button {
        border: 1px solid var(--miftah-border);
        background: #fff;
        color: var(--miftah-navy);
    }

.miftah-public-btn-light {
    border: 1px solid var(--miftah-border);
    color: var(--miftah-navy);
    background: #fff;
}

.miftah-public-btn-dark {
    background: var(--miftah-teal);
    color: #fff;
}

    .miftah-public-btn-dark:hover {
        color: #fff;
    }

.miftah-public-tour-price {
    border-left: 1px solid var(--miftah-border);
    background: linear-gradient(180deg, #fff, #f8fbff);
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
}

    .miftah-public-tour-price small {
        color: var(--miftah-muted);
        font-size: 12px;
        font-weight: 950;
    }

    .miftah-public-tour-price del {
        color: #98a2b3;
        font-weight: 850;
        margin-top: 8px;
    }

    .miftah-public-tour-price strong {
        display: block;
        color: var(--miftah-teal-dark);
        font-size: 29px;
        line-height: 1.05;
        font-weight: 950;
        margin: 5px 0 16px;
    }

    .miftah-public-tour-price a {
        min-height: 40px;
        border-radius: 999px;
        background: var(--miftah-teal);
        color: #fff;
        padding: 9px 16px;
        font-weight: 950;
    }

.miftah-empty-tours {
    border: 1px solid var(--miftah-border);
    background: #fff;
    border-radius: 22px;
    padding: 44px;
    text-align: center;
    box-shadow: var(--miftah-shadow-soft);
}

    .miftah-empty-tours h3 {
        color: var(--miftah-navy);
        font-weight: 950;
    }

    .miftah-empty-tours p {
        color: var(--miftah-muted);
    }

    .miftah-empty-tours a {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        border-radius: 999px;
        background: var(--miftah-gold);
        color: #fff;
        font-weight: 950;
    }

@media (max-width: 1199px) {
    .miftah-tour-filter-bar {
        grid-template-columns: 1fr 1fr;
    }

    .miftah-public-tour-card {
        grid-template-columns: 145px minmax(0, 1fr);
    }

    .miftah-public-tour-price {
        grid-column: 1 / -1;
        border-left: 0;
        border-top: 1px solid var(--miftah-border);
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        gap: 18px;
    }
}

@media (max-width: 991px) {
    .miftah-page-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .miftah-tour-sidebar {
        position: static;
    }

    .miftah-list-topline {
        flex-direction: column;
        align-items: flex-start;
    }

    .miftah-public-tour-card {
        grid-template-columns: 1fr;
    }

    .miftah-public-tour-date {
        border-right: 0;
        border-bottom: 1px solid var(--miftah-border);
    }

    .miftah-public-tour-route,
    .miftah-public-hotel-box {
        grid-template-columns: 1fr;
    }

        .miftah-public-tour-route div {
            border-right: 0;
            border-bottom: 1px solid var(--miftah-border);
        }

            .miftah-public-tour-route div:last-child {
                border-bottom: 0;
            }
}

@media (max-width: 575px) {
    .miftah-page-hero {
        padding: 48px 0 54px;
    }

    .miftah-page-quick-actions {
        width: 100%;
        justify-content: space-between;
    }

    .miftah-tour-filter-bar {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .miftah-filter-submit {
        flex-direction: column;
    }

    .miftah-public-tour-header,
    .miftah-public-tour-bottom,
    .miftah-public-tour-price {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .miftah-public-tour-main {
        padding: 18px;
    }
}
/* TOUR DETAIL */

.miftah-detail-top-summary {
    background: linear-gradient(90deg, #efd28a, #fff7e3);
    border-bottom: 1px solid #e9d7a4;
    padding: 14px 0;
}

.miftah-detail-summary-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.miftah-detail-summary-pills {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

    .miftah-detail-summary-pills div {
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff;
        border: 1px solid var(--miftah-border);
        border-radius: 999px;
        padding: 8px 16px;
        box-shadow: 0 8px 18px rgba(15, 23, 42, .05);
    }

    .miftah-detail-summary-pills span {
        color: var(--miftah-muted);
        font-size: 12px;
        font-weight: 900;
    }

    .miftah-detail-summary-pills strong {
        color: var(--miftah-navy);
        font-size: 14px;
        font-weight: 950;
    }

.miftah-detail-print {
    border: 1px solid #a7d8ff;
    background: #eef8ff;
    color: #0b75bd;
    border-radius: 12px;
    min-height: 38px;
    padding: 8px 16px;
    font-weight: 900;
}

.miftah-detail-transfer-band {
    background: linear-gradient(135deg, var(--miftah-navy), var(--miftah-navy-dark));
    padding: 20px 0 42px;
}

    .miftah-detail-transfer-band span {
        display: inline-flex;
        background: var(--miftah-teal);
        color: #fff;
        border-radius: 10px;
        padding: 10px 20px;
        font-weight: 950;
    }

.miftah-detail-page {
    background: #fff;
    padding: 0 0 96px;
}

.miftah-detail-nav-card {
    position: relative;
    z-index: 3;
    margin-top: -28px;
    background: #fff;
    border: 1px solid var(--miftah-border);
    border-radius: 18px;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr 170px 1fr;
    gap: 10px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, .08);
}

    .miftah-detail-nav-card a {
        min-height: 54px;
        border-radius: 14px;
        background: #f8fbff;
        color: var(--miftah-navy);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 950;
        padding: 10px 18px;
    }

        .miftah-detail-nav-card a.active {
            background: var(--miftah-gold);
            color: #fff;
        }

        .miftah-detail-nav-card a.disabled {
            opacity: .38;
            pointer-events: none;
        }

.miftah-detail-tabs {
    margin: 20px 0 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .miftah-detail-tabs a {
        min-height: 44px;
        border: 1px solid var(--miftah-border);
        border-radius: 12px;
        padding: 10px 18px;
        color: var(--miftah-navy);
        background: #fff;
        font-weight: 950;
    }

        .miftah-detail-tabs a.active,
        .miftah-detail-tabs a:hover {
            border-color: var(--miftah-gold);
            color: var(--miftah-gold-dark);
            background: #fffaf0;
        }

.miftah-detail-gallery-card,
.miftah-detail-section-card,
.miftah-detail-status-card,
.miftah-detail-share-card,
.miftah-detail-route-card,
.miftah-detail-reservation-card,
.miftah-same-date-card,
.miftah-passport-check-card {
    border: 1px solid var(--miftah-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .04);
}

.miftah-detail-gallery-card {
    overflow: hidden;
}

.miftah-detail-main-gallery {
    height: 500px;
    position: relative;
    background: var(--miftah-navy);
}

    .miftah-detail-main-gallery img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .miftah-detail-main-gallery::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(15, 23, 42, .10), rgba(15, 23, 42, .58));
    }

.miftah-detail-main-gallery-overlay {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 34px;
    z-index: 2;
    color: #fff;
}

    .miftah-detail-main-gallery-overlay span {
        display: inline-flex;
        min-height: 30px;
        border-radius: 999px;
        padding: 6px 14px;
        background: rgba(179, 122, 11, .9);
        font-weight: 950;
        margin-bottom: 12px;
    }

    .miftah-detail-main-gallery-overlay h1 {
        color: #fff;
        max-width: 720px;
        font-size: clamp(30px, 4vw, 52px);
        font-weight: 950;
        letter-spacing: -.03em;
    }

.miftah-detail-gallery-empty {
    min-height: 420px;
    padding: 38px;
    background: radial-gradient(circle at top right, rgba(179, 122, 11, .25), transparent 34%), linear-gradient(135deg, var(--miftah-navy), var(--miftah-navy-dark));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .miftah-detail-gallery-empty span {
        color: var(--miftah-gold-soft);
        font-weight: 950;
    }

    .miftah-detail-gallery-empty h1 {
        color: #fff;
        font-size: clamp(34px, 5vw, 58px);
        font-weight: 950;
    }

.miftah-detail-thumbs {
    display: flex;
    overflow-x: auto;
    gap: 6px;
    padding: 8px;
    background: #f8fbff;
}

.miftah-detail-thumb {
    width: 86px;
    height: 58px;
    border: 2px solid transparent;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    flex: 0 0 auto;
    background: #fff;
}

    .miftah-detail-thumb:hover {
        border-color: var(--miftah-gold);
    }

    .miftah-detail-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.miftah-detail-section-card {
    margin-top: 22px;
    overflow: hidden;
}

.miftah-detail-section-title {
    min-height: 66px;
    padding: 18px 22px;
    background: linear-gradient(90deg, #f5f9ff, #fffaf0);
    border-bottom: 1px solid var(--miftah-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

    .miftah-detail-section-title span {
        color: var(--miftah-muted);
        font-size: 12px;
        font-weight: 950;
        text-transform: uppercase;
    }

    .miftah-detail-section-title h2 {
        color: var(--miftah-navy);
        font-size: 21px;
        font-weight: 950;
        margin: 2px 0 0;
    }

    .miftah-detail-section-title small {
        border: 1px solid rgba(179, 122, 11, .45);
        color: var(--miftah-gold-dark);
        border-radius: 999px;
        padding: 5px 12px;
        font-weight: 950;
    }

.miftah-detail-hotel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 18px;
}

.miftah-detail-hotel-mini {
    border: 1px solid var(--miftah-border);
    border-radius: 16px;
    padding: 14px;
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 14px;
    background: #fff;
}

.miftah-detail-hotel-mini-image {
    height: 110px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--miftah-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--miftah-muted);
    font-weight: 900;
}

    .miftah-detail-hotel-mini-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.miftah-detail-hotel-mini h3 {
    color: var(--miftah-navy);
    font-size: 17px;
    font-weight: 950;
    margin-bottom: 8px;
}

.miftah-detail-hotel-mini p {
    margin: 0 0 4px;
    color: #52627a;
    font-size: 14px;
    font-weight: 750;
}

.miftah-detail-hotel-mini div div {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.miftah-detail-hotel-mini a,
.miftah-detail-hotel-mini button {
    min-height: 34px;
    border: 1px solid #bde4ff;
    background: #eef8ff;
    color: #0b75bd;
    border-radius: 9px;
    padding: 7px 11px;
    font-weight: 900;
}

.miftah-detail-room-prices {
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.miftah-detail-price-box {
    border: 1px solid var(--miftah-border);
    border-radius: 14px;
    background: #f8fbff;
    padding: 16px;
}

    .miftah-detail-price-box span {
        display: block;
        color: #52627a;
        font-weight: 850;
    }

    .miftah-detail-price-box del,
    .miftah-detail-price-table del {
        display: block;
        color: #98a2b3;
        font-weight: 800;
    }

    .miftah-detail-price-box strong,
    .miftah-detail-price-table strong {
        color: var(--miftah-teal-dark);
        font-size: 22px;
        font-weight: 950;
    }

.miftah-detail-child-price-card {
    margin: 0 18px 18px;
    border: 1px solid var(--miftah-border);
    border-radius: 16px;
    padding: 18px;
}

    .miftah-detail-child-price-card h3,
    .miftah-detail-included-text h3 {
        color: var(--miftah-navy);
        font-size: 18px;
        font-weight: 950;
    }

    .miftah-detail-child-price-card p {
        color: var(--miftah-muted);
        margin-bottom: 14px;
    }

.miftah-detail-price-table {
    display: grid;
}

    .miftah-detail-price-table > div {
        display: grid;
        grid-template-columns: 110px minmax(0, 1fr) 160px;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid var(--miftah-border);
    }

        .miftah-detail-price-table > div:last-child {
            border-bottom: 0;
        }

    .miftah-detail-price-table .head {
        background: #f3f7fb;
        padding: 10px 12px;
        color: #667085;
        font-size: 12px;
        font-weight: 950;
        text-transform: uppercase;
    }

    .miftah-detail-price-table small {
        display: block;
        color: var(--miftah-muted);
    }

.miftah-detail-included-text {
    padding: 0 24px 24px;
    color: #344054;
    line-height: 1.75;
}

    .miftah-detail-included-text ol {
        padding-left: 20px;
    }

.miftah-detail-service-grid {
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

    .miftah-detail-service-grid div {
        border: 1px solid var(--miftah-border);
        border-radius: 12px;
        padding: 12px;
        color: #344054;
        font-weight: 800;
        background: #f8fbff;
    }

    .miftah-detail-service-grid span {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--miftah-teal);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 8px;
        font-size: 12px;
    }

.miftah-detail-program-text {
    padding: 24px;
    color: #344054;
    line-height: 1.8;
}

.miftah-detail-map-section {
    margin-top: 22px;
}

.miftah-detail-map-card {
    border: 1px solid var(--miftah-border);
    border-radius: 18px;
    background: #fff;
    padding: 16px;
}

    .miftah-detail-map-card h3 {
        color: var(--miftah-navy);
        font-size: 18px;
        font-weight: 900;
        margin-bottom: 12px;
    }

    .miftah-detail-map-card iframe,
    .miftah-map-empty {
        width: 100%;
        height: 300px;
        border: 0;
        border-radius: 14px;
        background: var(--miftah-bg);
    }

.miftah-map-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--miftah-muted);
    font-weight: 850;
}

.miftah-passport-check-card {
    max-width: 460px;
    margin: 34px auto 0;
    padding: 28px;
    text-align: center;
}

    .miftah-passport-check-card h2 {
        color: var(--miftah-navy);
        font-size: 24px;
        font-weight: 950;
    }

    .miftah-passport-check-card p {
        color: var(--miftah-muted);
    }

    .miftah-passport-check-card input {
        min-height: 48px;
        border-radius: 12px;
    }

    .miftah-passport-check-card small {
        display: block;
        margin-top: 10px;
        font-weight: 900;
    }

        .miftah-passport-check-card small.valid {
            color: var(--miftah-teal);
        }

        .miftah-passport-check-card small.invalid {
            color: #d92d20;
        }

/* SIDEBAR */

.miftah-detail-sidebar {
    position: sticky;
    top: 150px;
    display: grid;
    gap: 14px;
}

.miftah-detail-status-card {
    padding: 18px;
}

    .miftah-detail-status-card div {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .miftah-detail-status-card strong {
        color: var(--miftah-navy);
        font-weight: 950;
    }

    .miftah-detail-status-card span {
        background: var(--miftah-teal-soft);
        color: var(--miftah-teal-dark);
        border-radius: 999px;
        padding: 6px 12px;
        font-size: 12px;
        font-weight: 950;
    }

    .miftah-detail-status-card p {
        margin: 16px 0 0;
        color: #52627a;
    }

.miftah-detail-share-card {
    padding: 14px;
    background: #f3f7fb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

    .miftah-detail-share-card button,
    .miftah-detail-share-card a {
        border: 1px solid var(--miftah-border);
        background: #fff;
        color: var(--miftah-navy);
        border-radius: 10px;
        padding: 8px 12px;
        font-weight: 900;
    }

    .miftah-detail-share-card div {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .miftah-detail-share-card span {
        color: #344054;
        font-weight: 900;
    }

.miftah-detail-alert {
    background: #ffe2e2;
    color: #b42318;
    border-radius: 10px;
    padding: 12px 16px;
    font-weight: 950;
}

.miftah-detail-route-card {
    padding: 18px;
}

    .miftah-detail-route-card h3,
    .miftah-detail-reservation-card h3,
    .miftah-same-date-card h3 {
        color: var(--miftah-navy);
        font-size: 20px;
        font-weight: 950;
        margin-bottom: 14px;
    }

.miftah-detail-route-list {
    display: grid;
    gap: 12px;
}

    .miftah-detail-route-list > div {
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 10px;
    }

        .miftah-detail-route-list > div > span {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--miftah-gold);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .miftah-detail-route-list small {
        display: inline-flex;
        border: 1px solid var(--miftah-border);
        border-radius: 8px;
        padding: 4px 8px;
        color: #52627a;
        font-weight: 900;
    }

    .miftah-detail-route-list strong {
        display: block;
        margin: 6px 0 2px;
        color: var(--miftah-navy);
    }

    .miftah-detail-route-list p {
        margin: 0;
        color: #52627a;
    }

    .miftah-detail-route-list em {
        display: inline-flex;
        margin-top: 6px;
        background: var(--miftah-teal);
        color: #fff;
        border-radius: 8px;
        padding: 6px 10px;
        font-style: normal;
        font-weight: 900;
    }

.miftah-detail-reservation-card {
    padding: 18px;
}

.miftah-detail-reservation-title {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

    .miftah-detail-reservation-title h3 {
        margin-bottom: 0;
    }

    .miftah-detail-reservation-title p {
        color: var(--miftah-muted);
        margin: 2px 0 0;
    }

    .miftah-detail-reservation-title button {
        border: 0;
        background: transparent;
        color: #667085;
        font-weight: 900;
    }

.miftah-room-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 14px 0;
}

    .miftah-room-summary-grid div {
        border: 1px solid var(--miftah-border);
        background: #f8fbff;
        border-radius: 12px;
        padding: 12px;
        text-align: center;
    }

    .miftah-room-summary-grid small {
        color: var(--miftah-muted);
        font-weight: 900;
    }

    .miftah-room-summary-grid strong {
        display: block;
        color: var(--miftah-navy);
        font-size: 20px;
        font-weight: 950;
    }

.miftah-room-select-box {
    border: 1px solid var(--miftah-border);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 10px;
}

    .miftah-room-select-box > strong {
        color: var(--miftah-navy);
    }

    .miftah-room-select-box label {
        color: var(--miftah-muted);
        font-size: 12px;
        font-weight: 900;
    }

    .miftah-room-select-box select {
        min-height: 42px;
        border-radius: 10px;
    }

.miftah-add-room-btn {
    width: 100%;
    border: 1px dashed #b8c7da;
    background: #fff;
    border-radius: 12px;
    min-height: 44px;
    color: var(--miftah-navy);
    font-weight: 900;
}

.miftah-total-box {
    margin-top: 14px;
    background: #f8fbff;
    border: 1px solid var(--miftah-border);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .miftah-total-box span {
        color: #52627a;
        font-weight: 900;
    }

    .miftah-total-box strong {
        color: #064e3b;
        font-size: 26px;
        font-weight: 950;
    }

.miftah-reservation-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

    .miftah-reservation-actions a {
        min-height: 46px;
        border-radius: 10px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 950;
    }

    .miftah-reservation-actions .pre {
        background: var(--miftah-teal);
    }

    .miftah-reservation-actions .reserve {
        background: #635bff;
    }

.miftah-same-date-card {
    padding: 18px;
}

    .miftah-same-date-card a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        background: var(--miftah-teal);
        color: #fff;
        border-radius: 10px;
        padding: 10px 12px;
        font-weight: 900;
        margin-bottom: 8px;
    }

        .miftah-same-date-card a strong {
            color: #fff;
        }

/* HOTEL OFFCANVAS */

.miftah-hotel-offcanvas {
    width: min(760px, 100vw) !important;
    background: #f8fbff;
}

    .miftah-hotel-offcanvas .offcanvas-header {
        background: #fff;
        border-bottom: 1px solid var(--miftah-border);
        padding: 22px 28px;
    }

        .miftah-hotel-offcanvas .offcanvas-header span {
            color: #98a2b3;
            font-size: 12px;
            font-weight: 950;
            letter-spacing: .18em;
        }

        .miftah-hotel-offcanvas .offcanvas-header h5 {
            color: var(--miftah-navy);
            font-size: 20px;
            font-weight: 950;
            margin: 4px 0 0;
        }

    .miftah-hotel-offcanvas .offcanvas-body {
        padding: 26px 28px;
    }

.miftah-offcanvas-hero {
    height: 280px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

    .miftah-offcanvas-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .miftah-offcanvas-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent, rgba(15, 23, 42, .48));
    }

    .miftah-offcanvas-hero div {
        position: absolute;
        left: 18px;
        bottom: 18px;
        z-index: 2;
        display: flex;
        gap: 8px;
    }

    .miftah-offcanvas-hero span {
        background: rgba(15, 23, 42, .78);
        color: #fff;
        border-radius: 999px;
        padding: 7px 12px;
        font-size: 12px;
        font-weight: 950;
    }

.miftah-offcanvas-tabs {
    display: flex;
    gap: 8px;
    margin: 18px 0;
    flex-wrap: wrap;
}

    .miftah-offcanvas-tabs button {
        border: 1px solid var(--miftah-border);
        border-radius: 999px;
        background: #fff;
        color: var(--miftah-navy);
        padding: 9px 16px;
        font-weight: 900;
    }

        .miftah-offcanvas-tabs button.active {
            background: var(--miftah-navy);
            color: #fff;
        }

.miftah-offcanvas-info-card,
.miftah-offcanvas-description {
    border: 1px solid var(--miftah-border);
    border-radius: 18px;
    background: #fff;
    padding: 22px;
    margin-bottom: 16px;
}

    .miftah-offcanvas-info-card h6,
    .miftah-offcanvas-description h6 {
        color: #98a2b3;
        font-size: 12px;
        font-weight: 950;
        letter-spacing: .18em;
        margin-bottom: 14px;
    }

    .miftah-offcanvas-info-card div {
        display: flex;
        justify-content: space-between;
        gap: 18px;
        border-bottom: 1px solid var(--miftah-border);
        padding: 10px 0;
    }

        .miftah-offcanvas-info-card div:last-child {
            border-bottom: 0;
        }

    .miftah-offcanvas-info-card span {
        color: #52627a;
        font-weight: 800;
    }

    .miftah-offcanvas-info-card strong {
        color: var(--miftah-navy);
        font-weight: 900;
    }

.miftah-offcanvas-description {
    color: #344054;
    line-height: 1.8;
}

/* BOTTOM NAV */

.miftah-detail-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1045;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--miftah-border);
    padding: 10px 0;
}

    .miftah-detail-bottom-nav div div {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
    }

    .miftah-detail-bottom-nav a {
        min-height: 46px;
        border: 1px solid var(--miftah-border);
        border-radius: 12px;
        background: #fff;
        color: var(--miftah-navy);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 950;
    }

        .miftah-detail-bottom-nav a.center {
            background: var(--miftah-gold);
            border-color: var(--miftah-gold);
            color: #fff;
        }

        .miftah-detail-bottom-nav a.disabled {
            color: #98a2b3;
            pointer-events: none;
        }

/* RESPONSIVE DETAIL */

@media (max-width: 1199px) {
    .miftah-detail-sidebar {
        position: static;
    }
}

@media (max-width: 991px) {
    .miftah-detail-summary-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .miftah-detail-nav-card {
        grid-template-columns: 1fr;
    }

    .miftah-detail-hotel-grid,
    .miftah-detail-room-prices,
    .miftah-detail-service-grid {
        grid-template-columns: 1fr;
    }

    .miftah-detail-main-gallery {
        height: 380px;
    }

    .miftah-detail-price-table > div {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .miftah-detail-top-summary {
        padding-top: 10px;
    }

    .miftah-detail-summary-pills div {
        width: 100%;
        justify-content: space-between;
    }

    .miftah-detail-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

        .miftah-detail-tabs a {
            white-space: nowrap;
        }

    .miftah-detail-main-gallery {
        height: 300px;
    }

    .miftah-detail-main-gallery-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .miftah-detail-hotel-mini {
        grid-template-columns: 1fr;
    }

    .miftah-reservation-actions {
        grid-template-columns: 1fr;
    }

    .miftah-detail-bottom-nav div div {
        grid-template-columns: 1fr;
    }

    .miftah-detail-bottom-nav {
        position: static;
    }
}
/* MIFTAH TOUR DETAIL - INANC STYLE */

.mtd-top-info {
    background: linear-gradient(90deg, #e7c36c, #fff8eb);
    border-top: 1px solid rgba(179, 122, 11, .25);
    border-bottom: 1px solid rgba(179, 122, 11, .25);
    padding: 16px 0;
}

.mtd-top-info-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.mtd-info-pills {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.mtd-info-pill {
    min-height: 44px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #d8e2ee;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .05);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
}

    .mtd-info-pill span {
        color: #667085;
        font-weight: 900;
    }

    .mtd-info-pill strong {
        color: var(--miftah-navy);
        font-weight: 950;
    }

.mtd-airline-pill img {
    max-width: 92px;
    max-height: 30px;
    object-fit: contain;
}

.mtd-print-btn {
    border: 1px solid #bde4ff;
    background: #f1f9ff;
    color: #0b75bd;
    border-radius: 12px;
    min-height: 40px;
    padding: 8px 18px;
    font-weight: 950;
}

.mtd-transfer-band {
    background: linear-gradient(135deg, rgba(22, 34, 58, .96), rgba(15, 23, 42, .98)), radial-gradient(circle at 20% 0, rgba(179, 122, 11, .22), transparent 34%);
    padding: 26px 0 54px;
}

    .mtd-transfer-band span {
        display: inline-flex;
        background: var(--miftah-teal);
        color: #fff;
        border-radius: 10px;
        padding: 11px 22px;
        font-size: 17px;
        font-weight: 950;
    }

.mtd-page {
    background: #fff;
    padding-bottom: 110px;
}

.mtd-tour-nav {
    position: relative;
    z-index: 3;
    margin-top: -38px;
    background: #fff;
    border: 1px solid #dbe5f0;
    border-radius: 18px;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr 150px 1fr;
    gap: 10px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, .08);
}

    .mtd-tour-nav a {
        min-height: 66px;
        border: 1px solid #e5edf6;
        border-radius: 14px;
        background: #fbfdff;
        color: var(--miftah-navy);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 10px 20px;
        font-weight: 950;
    }

        .mtd-tour-nav a small {
            color: #98a2b3;
            font-size: 12px;
            font-weight: 950;
            text-transform: uppercase;
            letter-spacing: .08em;
        }

        .mtd-tour-nav a.center {
            align-items: center;
            background: var(--miftah-gold);
            color: #fff;
            border-color: var(--miftah-gold);
            box-shadow: 0 10px 26px rgba(179, 122, 11, .25);
        }

        .mtd-tour-nav a.disabled {
            opacity: .38;
            pointer-events: none;
        }

.mtd-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

    .mtd-tabs a {
        min-height: 46px;
        border: 1px solid #dbe5f0;
        background: #fff;
        color: var(--miftah-navy);
        border-radius: 10px;
        padding: 10px 18px;
        display: inline-flex;
        align-items: center;
        font-weight: 950;
    }

        .mtd-tabs a.active,
        .mtd-tabs a:hover {
            background: #fff8eb;
            color: var(--miftah-gold-dark);
            border-color: #dfb85d;
        }

.mtd-gallery-card,
.mtd-section-card,
.mtd-status-card,
.mtd-important-date,
.mtd-contact-card,
.mtd-route-card,
.mtd-intro-card,
.mtd-reservation-card,
.mtd-same-date {
    border: 1px solid #dbe5f0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .04);
}

.mtd-gallery-card {
    overflow: hidden;
}

.mtd-gallery-main {
    height: 520px;
    position: relative;
    background: #101828;
    overflow: hidden;
}

    .mtd-gallery-main > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.62);
    }

.mtd-gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--miftah-navy), var(--miftah-navy-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 30px;
}

    .mtd-gallery-placeholder span {
        color: var(--miftah-gold-soft);
        font-weight: 950;
    }

    .mtd-gallery-placeholder strong {
        font-size: 42px;
        font-weight: 950;
    }

.mtd-gallery-title {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 34px;
    z-index: 2;
    color: #fff;
}

    .mtd-gallery-title span {
        display: inline-flex;
        background: rgba(179, 122, 11, .9);
        border-radius: 999px;
        padding: 6px 14px;
        font-weight: 950;
        margin-bottom: 10px;
    }

    .mtd-gallery-title h1 {
        color: #fff;
        font-size: clamp(28px, 4vw, 48px);
        font-weight: 950;
        letter-spacing: -.03em;
    }

.mtd-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 52px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mtd-gallery-arrow.left {
        left: 18px;
    }

    .mtd-gallery-arrow.right {
        right: 18px;
    }

    .mtd-gallery-arrow:hover {
        background: rgba(255, 255, 255, .28);
    }

.mtd-gallery-thumbs {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    background: #f8fbff;
    padding: 6px;
}

    .mtd-gallery-thumbs button {
        width: 76px;
        height: 54px;
        border: 2px solid transparent;
        padding: 0;
        border-radius: 4px;
        overflow: hidden;
        flex: 0 0 auto;
        background: #fff;
    }

        .mtd-gallery-thumbs button.active,
        .mtd-gallery-thumbs button:hover {
            border-color: var(--miftah-gold);
        }

    .mtd-gallery-thumbs img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.mtd-section-card {
    margin-top: 22px;
    overflow: hidden;
}

.mtd-section-head {
    min-height: 66px;
    background: linear-gradient(90deg, #f3f7fb, #fffaf0);
    border-bottom: 1px solid #e4ebf3;
    padding: 16px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .mtd-section-head span {
        color: #8a9ab0;
        font-size: 12px;
        font-weight: 950;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .mtd-section-head h2 {
        color: var(--miftah-navy);
        font-size: 21px;
        font-weight: 950;
        margin: 3px 0 0;
    }

    .mtd-section-head small {
        border: 1px solid rgba(179, 122, 11, .42);
        color: var(--miftah-gold-dark);
        border-radius: 999px;
        padding: 5px 12px;
        font-weight: 950;
    }

.mtd-hotel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 18px;
}

.mtd-hotel-card {
    border: 1px solid #dbe5f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

    .mtd-hotel-card h3 {
        background: #f8fbff;
        color: var(--miftah-navy);
        font-size: 17px;
        font-weight: 950;
        padding: 14px 16px;
        margin: 0;
        border-bottom: 1px solid #e5edf6;
    }

.mtd-hotel-card-body {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
}

.mtd-hotel-image {
    width: 96px;
    height: 88px;
    border-radius: 10px;
    background: #eef3f8;
    overflow: hidden;
}

    .mtd-hotel-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.mtd-hotel-card p {
    margin: 0 0 5px;
    color: #52627a;
    font-weight: 750;
}

.mtd-hotel-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

    .mtd-hotel-actions button {
        border: 1px solid #bde4ff;
        background: #eef8ff;
        color: #0b75bd;
        border-radius: 8px;
        min-height: 34px;
        padding: 7px 10px;
        font-weight: 900;
    }

.mtd-price-area {
    margin: 18px;
    border: 1px solid #dbe5f0;
    border-radius: 14px;
    padding: 18px;
}

.mtd-price-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

    .mtd-price-head span {
        color: #667085;
        font-size: 13px;
        font-weight: 950;
        text-transform: uppercase;
    }

    .mtd-price-head small {
        border: 1px solid #dbe5f0;
        border-radius: 999px;
        padding: 5px 12px;
        color: #667085;
        font-weight: 950;
    }

.mtd-room-price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.mtd-price-box {
    border: 1px solid #dbe5f0;
    background: #f8fbff;
    border-radius: 12px;
    padding: 16px;
}

    .mtd-price-box span {
        display: block;
        color: #667085;
        font-weight: 850;
    }

    .mtd-price-box del,
    .mtd-price-table del {
        display: block;
        color: #98a2b3;
        font-weight: 850;
    }

    .mtd-price-box strong,
    .mtd-price-table strong {
        color: var(--miftah-teal-dark);
        font-size: 23px;
        font-weight: 950;
    }

.mtd-child-prices {
    margin-top: 18px;
}

    .mtd-child-prices h3,
    .mtd-text-content h3 {
        color: var(--miftah-navy);
        font-size: 19px;
        font-weight: 950;
    }

    .mtd-child-prices p {
        color: #8a9ab0;
    }

.mtd-price-table {
    display: grid;
}

    .mtd-price-table > div {
        display: grid;
        grid-template-columns: 150px minmax(0, 1fr) 180px;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid #dbe5f0;
    }

    .mtd-price-table .head {
        background: #f3f7fb;
        padding: 12px;
        color: #667085;
        font-size: 13px;
        font-weight: 950;
        text-transform: uppercase;
    }

    .mtd-price-table small {
        display: block;
        color: #8a9ab0;
    }

.mtd-text-content {
    padding: 0 24px 24px;
    color: #344054;
    line-height: 1.75;
    font-size: 16px;
}

    .mtd-text-content ol {
        padding-left: 22px;
    }

.mtd-service-grid {
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

    .mtd-service-grid div {
        border: 1px solid #dbe5f0;
        background: #f8fbff;
        border-radius: 10px;
        padding: 13px;
        color: #344054;
        font-weight: 800;
    }

    .mtd-service-grid span {
        width: 22px;
        height: 22px;
        background: var(--miftah-teal);
        color: #fff;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 8px;
        font-size: 12px;
    }

.mtd-program-content {
    padding: 24px;
    color: #344054;
    font-size: 17px;
    line-height: 1.75;
}

.mtd-video-block {
    margin-top: 22px;
}

.mtd-embedded-video {
    border: 1px solid #dbe5f0;
    border-radius: 14px;
    background: #fff;
    padding: 18px;
}

    .mtd-embedded-video iframe,
    .mtd-embedded-video video {
        width: 100%;
        aspect-ratio: 16 / 9;
        border: 0;
        border-radius: 12px;
        display: block;
    }

.mtd-map-section {
    margin-top: 28px;
}

.mtd-map-card h3 {
    color: var(--miftah-navy);
    font-size: 21px;
    font-weight: 850;
    margin-bottom: 10px;
}

.mtd-map-card iframe,
.mtd-map-empty {
    width: 100%;
    height: 330px;
    border: 0;
    background: #eef3f8;
    border-radius: 0;
}

.mtd-map-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667085;
    font-weight: 850;
}

/* SIDEBAR */

.mtd-sidebar {
    position: sticky;
    top: 145px;
    display: grid;
    gap: 14px;
}

.mtd-status-card {
    overflow: hidden;
}

.mtd-status-head {
    background: #f8fbff;
    border-bottom: 1px solid #e5edf6;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .mtd-status-head strong {
        color: var(--miftah-navy);
        font-weight: 950;
    }

    .mtd-status-head span {
        border: 1px solid #9be7c0;
        background: #ecfdf3;
        color: #067647;
        border-radius: 999px;
        padding: 6px 12px;
        font-size: 13px;
        font-weight: 950;
    }

.mtd-status-card p {
    padding: 16px 18px;
    margin: 0;
    color: #52627a;
}

.mtd-important-date {
    background: #f3f7fb;
    padding: 16px;
}

    .mtd-important-date strong {
        display: block;
        color: var(--miftah-navy);
        font-weight: 950;
        margin-bottom: 10px;
    }

    .mtd-important-date span {
        display: inline-flex;
        background: #fff;
        border: 1px solid #dbe5f0;
        border-radius: 8px;
        padding: 8px 12px;
        color: var(--miftah-navy);
        font-weight: 800;
    }

.mtd-contact-card {
    background: #f3f7fb;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .mtd-contact-card button,
    .mtd-contact-card a {
        border: 1px solid #dbe5f0;
        background: #fff;
        color: var(--miftah-navy);
        border-radius: 9px;
        padding: 8px 12px;
        font-weight: 900;
    }

    .mtd-contact-card div {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mtd-contact-card span {
        color: var(--miftah-navy);
        font-weight: 950;
    }

    .mtd-contact-card a.wp {
        background: #12b886;
        color: #fff;
    }

    .mtd-contact-card a.phone {
        background: #0ea5e9;
        color: #fff;
    }

.mtd-badge-alert {
    background: #ffe1e1;
    color: #b42318;
    border-radius: 8px;
    padding: 12px 14px;
    font-weight: 950;
}

.mtd-route-card {
    padding: 16px;
}

    .mtd-route-card h3,
    .mtd-intro-card h3,
    .mtd-reservation-card h3,
    .mtd-same-date h3 {
        color: var(--miftah-navy);
        font-size: 22px;
        font-weight: 950;
        margin-bottom: 14px;
    }

.mtd-route-list {
    border: 1px solid #dbe5f0;
    border-radius: 12px;
    padding: 14px;
}

    .mtd-route-list > div {
        position: relative;
        display: grid;
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 12px;
        padding-bottom: 22px;
    }

        .mtd-route-list > div:last-child {
            padding-bottom: 0;
        }

        .mtd-route-list > div::after {
            content: "";
            position: absolute;
            left: 19px;
            top: 40px;
            bottom: 0;
            border-left: 2px solid #dbe5f0;
        }

        .mtd-route-list > div:last-child::after {
            display: none;
        }

        .mtd-route-list > div > span {
            width: 36px;
            height: 36px;
            background: #f59e0b;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.mtd-route-date-line {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

    .mtd-route-date-line img {
        max-width: 86px;
        max-height: 28px;
        object-fit: contain;
    }

.mtd-route-list small {
    display: inline-flex;
    border: 1px solid #dbe5f0;
    background: #fff;
    border-radius: 8px;
    padding: 5px 10px;
    color: #52627a;
    font-weight: 900;
}

.mtd-route-list strong {
    display: block;
    color: var(--miftah-navy);
    margin: 7px 0 3px;
    font-weight: 950;
}

.mtd-route-list p {
    margin: 0;
    color: #52627a;
    font-weight: 750;
}

.mtd-route-list em {
    display: inline-flex;
    margin-top: 8px;
    background: var(--miftah-teal);
    color: #fff;
    border-radius: 7px;
    padding: 7px 10px;
    font-style: normal;
    font-weight: 900;
}

.mtd-intro-card {
    border: 0;
    box-shadow: none;
}

    .mtd-intro-card a,
    .mtd-intro-card > img {
        position: relative;
        display: block;
        overflow: hidden;
    }

    .mtd-intro-card img {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .mtd-intro-card span {
        position: absolute;
        inset: 0;
        color: #fff;
        font-size: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(15, 23, 42, .32);
    }

.mtd-reservation-card {
    padding: 18px;
}

.mtd-reservation-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

    .mtd-reservation-head h3 {
        margin: 0;
    }

    .mtd-reservation-head p {
        margin: 2px 0 0;
        color: #8a9ab0;
    }

    .mtd-reservation-head button {
        border: 0;
        background: transparent;
        color: #667085;
        font-weight: 900;
    }

.mtd-room-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 16px 0;
}

    .mtd-room-summary div {
        border: 1px solid #dbe5f0;
        border-radius: 10px;
        background: #f8fbff;
        padding: 12px;
        text-align: center;
    }

    .mtd-room-summary small {
        color: #667085;
        font-weight: 850;
    }

    .mtd-room-summary strong {
        display: block;
        color: var(--miftah-navy);
        font-size: 20px;
        font-weight: 950;
    }

.mtd-room-form {
    border: 1px solid #dbe5f0;
    border-radius: 12px;
    padding: 14px;
    background: #fff;
}

    .mtd-room-form > strong {
        display: block;
        color: var(--miftah-navy);
        margin-bottom: 12px;
    }

    .mtd-room-form label {
        color: #667085;
        font-size: 12px;
        font-weight: 850;
    }

    .mtd-room-form select {
        min-height: 40px;
        border-radius: 8px;
    }

.mtd-add-room {
    width: 100%;
    border: 1px dashed #b8c7da;
    background: #fff;
    color: var(--miftah-navy);
    border-radius: 10px;
    min-height: 44px;
    margin-top: 10px;
    font-weight: 900;
}

.mtd-total-box {
    margin-top: 14px;
    border: 1px solid #dbe5f0;
    background: #f8fbff;
    border-radius: 10px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
}

    .mtd-total-box span {
        color: #52627a;
        font-weight: 950;
    }

    .mtd-total-box strong {
        color: #065f46;
        font-size: 26px;
        font-weight: 950;
    }

.mtd-reservation-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 14px;
}

    .mtd-reservation-actions a {
        min-height: 46px;
        border-radius: 8px;
        color: #fff;
        font-weight: 950;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mtd-reservation-actions .pre {
        background: var(--miftah-teal);
    }

    .mtd-reservation-actions .reserve {
        background: #635bff;
    }

.mtd-same-date {
    padding: 18px;
}

    .mtd-same-date a {
        min-height: 44px;
        background: var(--miftah-teal);
        color: #fff;
        border-radius: 8px;
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 8px;
        font-weight: 900;
    }

    .mtd-same-date strong {
        color: #fff;
    }

/* HOTEL OFFCANVAS */

.mtd-hotel-canvas {
    width: min(930px, 100vw) !important;
    background: #f8fbff;
}

.mtd-canvas-header {
    background: #fff;
    border-bottom: 1px solid #dbe5f0;
    padding: 18px 26px;
}

    .mtd-canvas-header span {
        color: #98a2b3;
        font-size: 12px;
        font-weight: 950;
        letter-spacing: .18em;
    }

    .mtd-canvas-header h5 {
        color: var(--miftah-navy);
        font-size: 20px;
        font-weight: 950;
        margin: 4px 0 0;
    }

.mtd-canvas-body {
    padding: 26px;
}

.mtd-canvas-hero {
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-bottom: 18px;
}

    .mtd-canvas-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mtd-canvas-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, .62));
    }

    .mtd-canvas-hero div {
        position: absolute;
        left: 18px;
        bottom: 18px;
        z-index: 2;
        display: flex;
        gap: 8px;
    }

    .mtd-canvas-hero span {
        background: rgba(15, 23, 42, .72);
        color: #fff;
        border-radius: 999px;
        padding: 7px 12px;
        font-size: 12px;
        font-weight: 950;
        letter-spacing: .12em;
    }

.mtd-canvas-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

    .mtd-canvas-tabs button {
        border: 1px solid #dbe5f0;
        background: #fff;
        color: #52627a;
        border-radius: 999px;
        padding: 10px 18px;
        font-weight: 850;
    }

        .mtd-canvas-tabs button.active {
            background: var(--miftah-navy);
            color: #fff;
            border-color: var(--miftah-navy);
        }

.mtd-canvas-panel {
    display: none;
}

    .mtd-canvas-panel.active {
        display: block;
    }

.mtd-canvas-info-card,
.mtd-canvas-description,
.mtd-hotel-gallery-large,
.mtd-canvas-map {
    border: 1px solid #dbe5f0;
    border-radius: 16px;
    background: #fff;
    padding: 22px;
    margin-bottom: 16px;
}

    .mtd-canvas-info-card h6,
    .mtd-canvas-description h6,
    .mtd-hotel-gallery-large span,
    .mtd-canvas-map h6 {
        display: block;
        color: #98a2b3;
        font-size: 12px;
        font-weight: 950;
        letter-spacing: .18em;
        margin-bottom: 14px;
    }

    .mtd-canvas-info-card div {
        display: flex;
        justify-content: space-between;
        gap: 18px;
        border-bottom: 1px solid #edf2f7;
        padding: 10px 0;
    }

        .mtd-canvas-info-card div:last-child {
            border-bottom: 0;
        }

    .mtd-canvas-info-card span {
        color: #52627a;
        font-weight: 850;
    }

    .mtd-canvas-info-card strong {
        color: var(--miftah-navy);
        font-weight: 900;
    }

.mtd-canvas-description {
    color: #344054;
    font-size: 17px;
    line-height: 1.8;
}

.mtd-hotel-gallery-large img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: 12px;
}

.mtd-hotel-gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

    .mtd-hotel-gallery-thumbs button {
        width: 110px;
        height: 70px;
        flex: 0 0 auto;
        border: 2px solid transparent;
        border-radius: 8px;
        padding: 0;
        overflow: hidden;
        background: #fff;
    }

        .mtd-hotel-gallery-thumbs button:hover {
            border-color: var(--miftah-gold);
        }

    .mtd-hotel-gallery-thumbs img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.mtd-canvas-map iframe,
.mtd-canvas-map .mtd-map-empty {
    width: 100%;
    height: 520px;
    border: 1px solid #edf2f7;
    border-radius: 12px;
}

.mtd-empty {
    border: 1px dashed #cbd5e1;
    background: #f8fbff;
    color: #667085;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    font-weight: 850;
}

/* BOTTOM NAV */

.mtd-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1045;
    background: rgba(255, 255, 255, .92);
    border-top: 1px solid #dbe5f0;
    backdrop-filter: blur(12px);
    padding: 10px 0;
}

.mtd-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

    .mtd-bottom-grid a {
        min-height: 48px;
        border: 1px solid #dbe5f0;
        background: #fff;
        color: var(--miftah-navy);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 950;
    }

        .mtd-bottom-grid a.center {
            background: var(--miftah-gold);
            color: #fff;
            border-color: var(--miftah-gold);
        }

        .mtd-bottom-grid a.disabled {
            color: #98a2b3;
            pointer-events: none;
        }

@media (max-width: 1199px) {
    .mtd-sidebar {
        position: static;
    }

    .mtd-gallery-main {
        height: 440px;
    }
}

@media (max-width: 991px) {
    .mtd-top-info-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .mtd-tour-nav {
        grid-template-columns: 1fr;
    }

    .mtd-hotel-grid,
    .mtd-room-price-grid,
    .mtd-service-grid {
        grid-template-columns: 1fr;
    }

    .mtd-price-table > div {
        grid-template-columns: 1fr;
    }

    .mtd-bottom-grid {
        grid-template-columns: 1fr;
    }

    .mtd-bottom-nav {
        position: static;
    }
}

@media (max-width: 575px) {
    .mtd-info-pill {
        width: 100%;
        justify-content: space-between;
    }

    .mtd-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
    }

        .mtd-tabs a {
            white-space: nowrap;
        }

    .mtd-gallery-main {
        height: 320px;
    }

    .mtd-gallery-title {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .mtd-hotel-card-body {
        grid-template-columns: 1fr;
    }

    .mtd-hotel-image {
        width: 100%;
        height: 180px;
    }

    .mtd-reservation-actions {
        grid-template-columns: 1fr;
    }

    .mtd-hotel-canvas {
        width: 100vw !important;
    }

    .mtd-canvas-body {
        padding: 18px;
    }

    .mtd-canvas-hero {
        height: 220px;
    }
}
.mtd-room-form + .mtd-room-form {
    margin-top: 10px;
}

.mtd-room-form-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.mtd-remove-room {
    border: 0;
    background: #fee2e2;
    color: #b42318;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
}
/* DETAIL TYPOGRAPHY REFINEMENT - Inanç tarzına yakın daha küçük yazı */

.mtd-page,
.mtd-top-info,
.mtd-bottom-nav,
.mtd-hotel-canvas {
    font-family: var(--miftah-font, "Inter", "Segoe UI", Arial, sans-serif);
    font-size: 14px;
    color: #344054;
}

/* Üst bilgi barı */
.mtd-info-pill {
    min-height: 40px;
    padding: 7px 15px;
}

    .mtd-info-pill span {
        font-size: 13px;
        font-weight: 800;
    }

    .mtd-info-pill strong {
        font-size: 14px;
        font-weight: 850;
    }

.mtd-print-btn {
    min-height: 36px;
    font-size: 13px;
    padding: 7px 15px;
}

/* Aktarma bandı */
.mtd-transfer-band span {
    font-size: 15px;
    font-weight: 850;
    padding: 9px 18px;
}

/* Önceki / tüm turlar / sonraki */
.mtd-tour-nav a {
    min-height: 58px;
    font-size: 14px;
    font-weight: 800;
}

    .mtd-tour-nav a small {
        font-size: 11px;
        font-weight: 800;
    }

    .mtd-tour-nav a strong {
        font-size: 14px;
        font-weight: 850;
    }

/* Sekmeler */
.mtd-tabs a {
    min-height: 42px;
    font-size: 14px;
    font-weight: 800;
    padding: 8px 15px;
}

/* Galeri başlığı */
.mtd-gallery-title span {
    font-size: 12px;
    font-weight: 800;
}

.mtd-gallery-title h1 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 850;
    letter-spacing: -.02em;
}

/* Bölüm başlıkları */
.mtd-section-head {
    min-height: 58px;
    padding: 14px 20px;
}

    .mtd-section-head span {
        font-size: 11px;
        font-weight: 800;
    }

    .mtd-section-head h2 {
        font-size: 18px;
        font-weight: 850;
    }

    .mtd-section-head small {
        font-size: 11px;
        font-weight: 800;
    }

/* Otel kartları */
.mtd-hotel-card h3 {
    font-size: 15px;
    font-weight: 850;
    padding: 12px 14px;
}

.mtd-hotel-card p {
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
}

.mtd-hotel-actions button {
    font-size: 13px;
    font-weight: 750;
}

/* Fiyat alanı */
.mtd-price-head span {
    font-size: 12px;
    font-weight: 850;
}

.mtd-price-head small {
    font-size: 11px;
    font-weight: 800;
}

.mtd-price-box span {
    font-size: 13px;
    font-weight: 750;
}

.mtd-price-box del,
.mtd-price-table del {
    font-size: 12px;
}

.mtd-price-box strong,
.mtd-price-table strong {
    font-size: 19px;
    font-weight: 850;
}

.mtd-child-prices h3,
.mtd-text-content h3 {
    font-size: 17px;
    font-weight: 850;
}

.mtd-child-prices p {
    font-size: 13px;
}

.mtd-price-table > div {
    font-size: 14px;
}

.mtd-price-table .head {
    font-size: 12px;
    font-weight: 800;
}

.mtd-price-table small {
    font-size: 12px;
}

/* Dahil / hariç metinleri */
.mtd-text-content {
    font-size: 14px;
    line-height: 1.6;
}

    .mtd-text-content li {
        margin-bottom: 3px;
    }

/* Öne çıkan hizmetler */
.mtd-service-grid div {
    font-size: 13.5px;
    font-weight: 650;
    padding: 11px 12px;
}

.mtd-service-grid span {
    width: 20px;
    height: 20px;
    font-size: 11px;
}

/* Tur programı */
.mtd-program-content {
    font-size: 14.5px;
    line-height: 1.62;
    font-weight: 450;
}

    .mtd-program-content strong,
    .mtd-program-content b {
        font-weight: 800;
    }

/* Sağ sidebar */
.mtd-status-head strong,
.mtd-route-card h3,
.mtd-intro-card h3,
.mtd-reservation-card h3,
.mtd-same-date h3 {
    font-size: 18px;
    font-weight: 850;
}

.mtd-status-head span {
    font-size: 12px;
    font-weight: 800;
}

.mtd-status-card p {
    font-size: 14px;
    line-height: 1.5;
}

.mtd-important-date strong {
    font-size: 14px;
    font-weight: 850;
}

.mtd-important-date span {
    font-size: 13px;
    font-weight: 700;
}

.mtd-contact-card span,
.mtd-contact-card button,
.mtd-contact-card a {
    font-size: 13px;
    font-weight: 800;
}

.mtd-badge-alert {
    font-size: 14px;
    font-weight: 850;
}

/* Rota */
.mtd-route-list small {
    font-size: 12px;
    font-weight: 750;
}

.mtd-route-list strong {
    font-size: 14px;
    font-weight: 850;
}

.mtd-route-list p {
    font-size: 13.5px;
    font-weight: 600;
}

.mtd-route-list em {
    font-size: 12.5px;
    font-weight: 750;
}

/* Rezervasyon kutusu */
.mtd-reservation-head h3 {
    font-size: 18px;
    font-weight: 850;
}

.mtd-reservation-head p {
    font-size: 12.5px;
}

.mtd-room-summary small,
.mtd-room-form label {
    font-size: 11.5px;
    font-weight: 750;
}

.mtd-room-summary strong {
    font-size: 18px;
    font-weight: 850;
}

.mtd-room-form > strong,
.mtd-room-form-title strong {
    font-size: 14px;
    font-weight: 850;
}

.mtd-room-form select {
    font-size: 13px;
}

.mtd-add-room {
    font-size: 13px;
    font-weight: 800;
}

.mtd-total-box span {
    font-size: 14px;
    font-weight: 850;
}

.mtd-total-box strong {
    font-size: 22px;
    font-weight: 900;
}

.mtd-reservation-actions a {
    font-size: 14px;
    font-weight: 850;
}

.mtd-same-date a {
    font-size: 13px;
    font-weight: 750;
}

/* Harita ve video başlıkları */
.mtd-map-card h3 {
    font-size: 17px;
    font-weight: 750;
}

/* Otel detay offcanvas */
.mtd-canvas-header span {
    font-size: 11px;
    font-weight: 800;
}

.mtd-canvas-header h5 {
    font-size: 18px;
    font-weight: 850;
}

.mtd-canvas-tabs button {
    font-size: 13px;
    font-weight: 750;
}

.mtd-canvas-info-card h6,
.mtd-canvas-description h6,
.mtd-hotel-gallery-large span,
.mtd-canvas-map h6 {
    font-size: 11px;
    font-weight: 800;
}

.mtd-canvas-info-card span,
.mtd-canvas-info-card strong {
    font-size: 14px;
}

.mtd-canvas-description {
    font-size: 15px;
    line-height: 1.65;
}

/* Alttaki sabit nav */
.mtd-bottom-grid a {
    min-height: 44px;
    font-size: 14px;
    font-weight: 850;
}

/* Büyük alanları biraz sakinleştir */
.mtd-gallery-main {
    height: 470px;
}

.mtd-canvas-hero {
    height: 270px;
}

.mtd-hotel-gallery-large img {
    max-height: 500px;
}

/* Mobilde daha dengeli */
@media (max-width: 991px) {
    .mtd-gallery-title h1 {
        font-size: 28px;
    }

    .mtd-gallery-main {
        height: 390px;
    }

    .mtd-program-content,
    .mtd-text-content {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .mtd-gallery-title h1 {
        font-size: 23px;
    }

    .mtd-gallery-main {
        height: 300px;
    }

    .mtd-section-head h2,
    .mtd-status-head strong,
    .mtd-route-card h3,
    .mtd-intro-card h3,
    .mtd-reservation-card h3,
    .mtd-same-date h3 {
        font-size: 16px;
    }

    .mtd-price-box strong,
    .mtd-price-table strong {
        font-size: 18px;
    }

    .mtd-total-box strong {
        font-size: 20px;
    }
}
/* DETAIL ICON REFINEMENT - Miftah */
.mtd-info-pill span,
.mtd-transfer-band span,
.mtd-print-btn,
.mtd-tabs a,
.mtd-tour-nav a small,
.mtd-tour-nav a strong,
.mtd-section-head h2,
.mtd-price-head span,
.mtd-child-prices h3,
.mtd-text-content h3,
.mtd-status-head strong,
.mtd-important-date strong,
.mtd-contact-card span,
.mtd-contact-card button,
.mtd-contact-card a,
.mtd-badge-alert,
.mtd-route-card h3,
.mtd-intro-card h3,
.mtd-reservation-head h3,
.mtd-room-summary small,
.mtd-room-form label,
.mtd-total-box span,
.mtd-reservation-actions a,
.mtd-same-date h3,
.mtd-bottom-grid a,
.mtd-canvas-header span,
.mtd-canvas-tabs button,
.mtd-canvas-info-card h6,
.mtd-canvas-description h6,
.mtd-canvas-map h6 {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

    .mtd-info-pill i,
    .mtd-print-btn i,
    .mtd-tabs a i,
    .mtd-section-head h2 i,
    .mtd-price-head span i,
    .mtd-child-prices h3 i,
    .mtd-text-content h3 i,
    .mtd-status-head strong i,
    .mtd-important-date strong i,
    .mtd-contact-card span i,
    .mtd-badge-alert i,
    .mtd-route-card h3 i,
    .mtd-intro-card h3 i,
    .mtd-reservation-head h3 i,
    .mtd-room-summary small i,
    .mtd-room-form label i,
    .mtd-total-box span i,
    .mtd-same-date h3 i,
    .mtd-canvas-header span i,
    .mtd-canvas-tabs button i,
    .mtd-canvas-info-card h6 i,
    .mtd-canvas-description h6 i,
    .mtd-canvas-map h6 i {
        font-size: .95em;
        line-height: 1;
    }

    .mtd-info-pill i,
    .mtd-tabs a.active i,
    .mtd-tabs a:hover i,
    .mtd-section-head h2 i,
    .mtd-text-content h3 i {
        color: #b77a12;
    }

    .mtd-transfer-band span i,
    .mtd-status-head strong i,
    .mtd-important-date strong i,
    .mtd-route-card h3 i,
    .mtd-intro-card h3 i,
    .mtd-reservation-head h3 i,
    .mtd-canvas-tabs button.active i {
        color: currentColor;
    }

    .mtd-contact-card a.wp i,
    .mtd-contact-card a.phone i,
    .mtd-reservation-actions a i,
    .mtd-bottom-grid a.center i {
        color: currentColor;
    }

.mtd-route-list > div > span {
    font-size: 16px;
}

    .mtd-route-list > div > span i {
        color: #fff;
    }

.mtd-hotel-actions button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mtd-service-grid div span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .mtd-service-grid div span i {
        font-size: 12px;
    }

.mtd-add-room,
.mtd-remove-room {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.mtd-canvas-tabs button {
    gap: 6px;
}

.mtd-gallery-title span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

@media (max-width: 575px) {
    .mtd-info-pill span,
    .mtd-tabs a,
    .mtd-bottom-grid a {
        gap: 6px;
    }
}

.mtd-return-icon {
    transform: rotate(180deg);
    display: inline-block;
}
.mtd-airline-icon {
    color: #b88418;
    font-size: 15px;
    transform: rotate(-8deg);
}
.mtd-info-pill span i {
    color: #62748f;
    font-size: 15px;
    margin-right: 7px;
}

.mtd-info-pill span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.mtd-airline-pill img {
    max-width: 92px;
    max-height: 28px;
    object-fit: contain;
}
.mtd-package-content {
    padding-top: 6px;
}

.mtd-package-block {
    margin-top: 18px;
}

    .mtd-package-block:first-child {
        margin-top: 0;
    }

.mtd-package-title {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px !important;
    color: #172033;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.25;
}

    .mtd-package-title i {
        width: 22px;
        height: 22px;
        min-width: 22px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
    }

    .mtd-package-title.included i {
        color: #fff;
        background: #b77a12;
    }

    .mtd-package-title.excluded i {
        color: #fff;
        background: #b77a12;
    }

.mtd-package-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: grid;
    gap: 8px;
}

    .mtd-package-list li {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        color: #344054;
        font-size: 14.5px;
        line-height: 1.45;
    }

        .mtd-package-list li i {
            width: 18px;
            height: 18px;
            min-width: 18px;
            border-radius: 50%;
            background: #e8f7f4;
            color: #07806f;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            margin-top: 1px;
        }

    .mtd-package-list.excluded li i {
        background: #fff1f1;
        color: #b42318;
    }
:root {
    --mif-navy: #182640;
    --mif-navy-2: #20304e;
    --mif-gold: #b77a12;
    --mif-gold-2: #d7a13a;
    --mif-green: #0f8f7e;
    --mif-text: #1b2638;
    --mif-muted: #66758e;
    --mif-border: #dbe5f1;
    --mif-soft: #f6f9fc;
}

.miftah-body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: var(--mif-text);
    background: #fff;
    overflow-x: hidden;
}

.mif-topbar {
    background: var(--mif-navy);
    color: #fff;
    height: 52px;
}

.mif-topbar-inner,
.mif-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mif-topbar-inner {
    height: 52px;
}

.mif-topbar-left,
.mif-topbar-right,
.mif-header-actions,
.mif-menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mif-mini-pill {
    color: #fff;
    border: 1px solid rgba(215, 161, 58, .65);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
    background: rgba(255,255,255,.04);
}

    .mif-mini-pill strong {
        color: #fff;
        font-weight: 900;
    }

.mif-phone-pill {
    color: #fff;
    background: rgba(15,143,126,.20);
    border: 1px solid rgba(20,190,170,.55);
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 850;
    font-size: 14px;
    text-decoration: none;
}

.mif-navbar {
    height: 92px;
    background: #fff;
    border-bottom: 1px solid var(--mif-border);
    position: relative;
    z-index: 20;
}

.mif-navbar-inner {
    height: 92px;
    position: relative;
}

.mif-logo-wrap {
    position: relative;
    width: 190px;
    height: 92px;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.mif-logo-circle {
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 0 0 80px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 12px 35px rgba(21, 31, 51, .16);
    position: absolute;
    top: -52px;
    z-index: 5;
}

    .mif-logo-circle img {
        max-width: 105px;
        max-height: 105px;
        object-fit: contain;
    }

.mif-brand-text {
    min-width: 220px;
}

    .mif-brand-text strong {
        display: block;
        color: #52637d;
        font-size: 16px;
        font-weight: 700;
    }

    .mif-brand-text span {
        color: #8a9bb4;
        font-size: 14px;
    }

.mif-menu {
    gap: 44px;
    margin-left: auto;
    margin-right: 42px;
}

    .mif-menu a {
        color: #555;
        text-decoration: none;
        font-size: 17px;
        font-weight: 750;
    }

        .mif-menu a:hover {
            color: var(--mif-gold);
        }

.mif-whatsapp-circle {
    width: 48px;
    height: 48px;
    background: #ecfff8;
    color: #00a77f;
    border: 1px solid #c9f7e7;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
    text-decoration: none;
}

.mif-mobile-toggle {
    display: none;
    border: 0;
    background: var(--mif-navy);
    color: #fff;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    font-size: 22px;
}

.mif-mobile-menu {
    display: none;
    background: #fff;
    border-bottom: 1px solid var(--mif-border);
    padding: 16px;
}

    .mif-mobile-menu a {
        display: block;
        padding: 12px 0;
        color: var(--mif-text);
        text-decoration: none;
        font-weight: 800;
        border-bottom: 1px solid #eef2f7;
    }

.mih-hero {
    padding: 32px 0 0;
    position: relative;
}

.mih-hero-card {
    min-height: 670px;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 55px rgba(20,30,50,.18);
}

.mih-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.65) 38%, rgba(0,0,0,.25) 68%, rgba(0,0,0,.10) 100%), linear-gradient(0deg, rgba(0,0,0,.50), rgba(0,0,0,.10));
}

.mih-hero-content {
    position: relative;
    z-index: 2;
    min-height: 670px;
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 50px;
    padding: 62px 110px;
    align-items: center;
}

.mih-hero-left {
    max-width: 620px;
}

.mih-hero-document,
.mih-hero-badge,
.mih-premium-label {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 9px 18px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(0,0,0,.35);
    font-size: 14px;
    font-weight: 750;
}

.mih-hero-badge {
    display: table;
    margin-top: 74px;
    background: var(--mif-gold);
    border-color: rgba(255,255,255,.15);
}

.mih-hero h1 {
    color: #fff;
    margin: 55px 0 0;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: -.03em;
}

    .mih-hero h1 em {
        display: block;
        font-family: "Georgia", serif;
        font-size: clamp(44px, 5vw, 70px);
        font-weight: 400;
        line-height: 1.05;
    }

.mih-hero h2 {
    color: #fff;
    margin: 28px 0;
    font-size: 28px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 14px;
}

    .mih-hero h2 i {
        color: #00a6b8;
    }

.mih-hero p {
    color: #fff;
    font-size: 22px;
    line-height: 1.55;
    font-weight: 500;
    max-width: 720px;
}

.mih-hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.mih-btn-primary,
.mih-btn-ghost,
.mih-all-btn,
.mih-premium-content a,
.mih-about-right a,
.mih-why-panel a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 15px;
    padding: 0 28px;
    text-decoration: none;
    font-weight: 900;
}

.mih-btn-primary {
    color: #fff;
    background: #15936f;
}

.mih-btn-ghost {
    color: #fff;
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(15,25,40,.45);
}

.mih-hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.mih-premium-label {
    background: rgba(255,255,255,.22);
}

.mih-callout-line {
    margin-top: 74px;
    display: flex;
    align-items: center;
    gap: 14px;
}

    .mih-callout-line span {
        width: 220px;
        height: 2px;
        background: var(--mif-gold-2);
    }

    .mih-callout-line strong {
        background: #20202a;
        color: #fff;
        padding: 8px 16px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 900;
    }

.mih-signature-box {
    margin-top: 55px;
    width: 470px;
}

    .mih-signature-box > span {
        color: var(--mif-gold-2);
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .06em;
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }

.mih-signature-card,
.mih-signature-mini {
    background: rgba(20,20,20,.72);
    border: 1px solid rgba(215,161,58,.65);
    border-radius: 18px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    margin-bottom: 12px;
}

    .mih-signature-card img {
        width: 78px;
        height: 64px;
        border-radius: 8px;
        object-fit: cover;
    }

    .mih-signature-card small,
    .mih-signature-mini small {
        color: var(--mif-gold-2);
        font-weight: 900;
        font-size: 12px;
    }

    .mih-signature-card strong,
    .mih-signature-mini strong {
        display: block;
        font-size: 18px;
        font-weight: 900;
    }

    .mih-signature-card p {
        font-size: 12px;
        margin: 4px 0 0;
    }

    .mih-signature-card i {
        color: #ffc637;
    }

    .mih-signature-mini i {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        background: rgba(215,161,58,.20);
        border-radius: 12px;
        color: var(--mif-gold-2);
        font-size: 22px;
    }

.mih-signature-tags {
    display: flex;
    gap: 8px;
}

    .mih-signature-tags span {
        flex: 1;
        border: 1px solid rgba(215,161,58,.55);
        color: #fff;
        border-radius: 8px;
        padding: 7px;
        font-size: 11px;
        text-align: center;
    }

.mih-hero-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.75);
    color: #111;
    font-size: 24px;
}

    .mih-hero-arrow.left {
        left: 10px;
    }

    .mih-hero-arrow.right {
        right: 10px;
    }

.mih-search-card {
    width: calc(100% - 140px);
    margin: -48px auto 0;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(20,30,50,.16);
    padding: 26px 32px;
    position: relative;
    z-index: 5;
}

.mih-search-head {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--mif-gold);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .06em;
    margin-bottom: 24px;
}

    .mih-search-head i {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #f5ead4;
        display: grid;
        place-items: center;
    }

.mih-search-form {
    display: grid;
    grid-template-columns: 1fr 1.2fr 190px;
    gap: 30px;
    align-items: end;
}

.mih-search-months label,
.mih-room-title {
    color: #53647d;
    font-weight: 800;
    margin-bottom: 10px;
}

.mih-search-months button {
    border: 0;
    background: #eef3f9;
    color: #48566d;
    border-radius: 11px;
    padding: 12px 18px;
    font-weight: 750;
    margin-right: 8px;
}

.mih-room-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .mih-room-title small {
        color: #5f6e86;
        font-weight: 700;
    }

.mih-room-selects {
    min-height: 54px;
    border: 1px solid var(--mif-border);
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 18px;
}

    .mih-room-selects span {
        font-size: 13px;
        font-weight: 800;
    }

    .mih-room-selects label {
        font-size: 13px;
        color: #66758e;
        font-weight: 800;
    }

    .mih-room-selects select {
        border: 1px solid var(--mif-border);
        border-radius: 9px;
        padding: 7px 14px;
        margin-left: 5px;
    }

.mih-search-submit {
    height: 58px;
    border: 0;
    border-radius: 13px;
    background: #344258;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* kalan ana sayfa */
.mih-feature-cards {
    padding: 34px 0 48px;
}

.mih-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.mih-feature-card {
    min-height: 220px;
    border: 1px solid var(--mif-border);
    border-radius: 20px;
    padding: 22px;
    text-decoration: none;
    color: var(--mif-text);
    background: #fff;
    box-shadow: 0 14px 30px rgba(20,30,50,.05);
    position: relative;
    overflow: hidden;
}

    .mih-feature-card::after {
        content: "";
        position: absolute;
        right: -30px;
        top: -40px;
        width: 120px;
        height: 120px;
        background: rgba(15,143,126,.13);
        border-radius: 50%;
    }

    .mih-feature-card span {
        color: #056f63;
        font-size: 14px;
        font-weight: 850;
    }

    .mih-feature-card h3 {
        margin: 10px 0 8px;
        font-size: 27px;
        font-weight: 900;
    }

    .mih-feature-card p,
    .mih-feature-card li {
        color: #53647d;
        font-size: 14px;
    }

    .mih-feature-card ul {
        list-style: none;
        padding: 0;
        margin: 14px 0;
    }

    .mih-feature-card li {
        margin-bottom: 8px;
    }

    .mih-feature-card i {
        color: #07806f;
    }

    .mih-feature-card strong {
        color: #056f63;
    }

    .mih-feature-card.blue {
        border-color: #b8c9e5;
    }

    .mih-feature-card.gold {
        border-color: #e0bd73;
        background: linear-gradient(105deg, #fff, #fff8e8);
    }

    .mih-feature-card.mint {
        border-color: #9adfd7;
    }

.mih-tours-section {
    padding: 48px 0;
    background: #eaf0f7;
}

.mih-section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}

.mih-chip,
.mih-center-title span {
    display: inline-flex;
    border: 1px solid #eed093;
    color: #9a6208;
    background: #fff8e8;
    border-radius: 9px;
    padding: 8px 14px;
    font-weight: 750;
}

.mih-section-title-row h2,
.mih-center-title h2 {
    font-size: 31px;
    font-weight: 950;
    margin: 14px 0 8px;
}

.mih-section-title-row p {
    color: #53647d;
}

.mih-all-btn {
    background: var(--mif-gold);
    color: #fff;
}

.mih-tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.mih-tour-card {
    background: #fffaf0;
    border: 1px solid #e8cf99;
    border-radius: 20px;
    padding: 16px;
    color: var(--mif-text);
    text-decoration: none;
    box-shadow: 0 16px 30px rgba(20,30,50,.06);
}

.mih-tour-date {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(90deg, #b8b09e, #fff);
    border-radius: 15px;
    padding: 12px;
}

    .mih-tour-date > div {
        width: 72px;
        height: 72px;
        background: #fff;
        border: 1px solid #f2dca7;
        border-radius: 10px;
        display: grid;
        place-items: center;
        line-height: 1;
    }

    .mih-tour-date strong {
        font-size: 26px;
        color: #a76a09;
        font-weight: 950;
    }

    .mih-tour-date span {
        color: #c07808;
        font-size: 12px;
        font-weight: 900;
    }

    .mih-tour-date p {
        margin: 0;
        flex: 1;
    }

        .mih-tour-date p b {
            display: block;
            color: #9a6208;
        }

        .mih-tour-date p small {
            color: #53647d;
        }

    .mih-tour-date em {
        border: 1px solid var(--mif-border);
        background: #fff;
        border-radius: 999px;
        padding: 7px 12px;
        font-style: normal;
        font-weight: 800;
        font-size: 13px;
    }

.mih-tour-body {
    background: #fff;
    border: 1px solid var(--mif-border);
    border-radius: 14px;
    padding: 14px;
    margin-top: 12px;
}

.mih-tour-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .mih-tour-option strong {
        color: #6b4107;
        font-size: 14px;
    }

    .mih-tour-option i {
        color: #f1b500;
        font-size: 14px;
    }

.mih-tour-hotel-row {
    display: grid;
    grid-template-columns: 86px 1fr 70px;
    gap: 12px;
    align-items: center;
    margin: 18px 0;
}

.mih-tour-images {
    display: flex;
}

    .mih-tour-images img {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #fff;
        margin-right: -14px;
    }

.mih-tour-hotel-row p {
    margin: 0;
    color: #738199;
    line-height: 1.35;
}

.mih-tour-hotel-row b {
    color: var(--mif-text);
}

.mih-airline-logo {
    max-width: 70px;
    max-height: 32px;
    object-fit: contain;
}

.mih-tour-price {
    border: 1px solid var(--mif-border);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .mih-tour-price span {
        color: #617089;
        font-size: 14px;
    }

    .mih-tour-price del {
        color: #9aa8ba;
        margin-right: 10px;
        font-size: 13px;
    }

    .mih-tour-price strong {
        font-size: 19px;
        font-weight: 950;
        color: #08152a;
    }

.mih-premium-hotel {
    background: #030303;
    color: #fff;
    padding: 72px 0;
}

.mih-dark-chip {
    display: inline-flex;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    padding: 9px 18px;
    font-weight: 900;
    letter-spacing: .16em;
    color: #e5e7eb;
}

.mih-premium-hotel h2 {
    margin: 22px 0 30px;
    font-size: 30px;
    font-weight: 900;
}

.mih-premium-card {
    min-height: 470px;
    border-radius: 10px;
    background-size: cover;
    background-position: center right;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
}

.mih-premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #000 0%, rgba(0,0,0,.85) 45%, rgba(0,0,0,.30) 100%);
}

.mih-premium-content {
    position: relative;
    z-index: 2;
    padding: 62px;
    max-width: 750px;
    text-align: center;
}

    .mih-premium-content > span {
        letter-spacing: .32em;
        color: #9ca3af;
        font-weight: 900;
    }

    .mih-premium-content h3 {
        font-size: clamp(42px, 5vw, 72px);
        font-weight: 950;
        line-height: 1.15;
        margin: 40px 0 28px;
    }

    .mih-premium-content p {
        color: #d1d5db;
        font-size: 18px;
        line-height: 1.55;
    }

.mih-premium-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 42px 0 34px;
}

    .mih-premium-boxes div {
        background: rgba(255,255,255,.09);
        border: 1px solid rgba(255,255,255,.18);
        border-radius: 18px;
        padding: 18px;
    }

    .mih-premium-boxes strong {
        color: #d1d5db;
    }

    .mih-premium-boxes p {
        font-size: 15px;
        margin: 8px 0 0;
    }

.mih-premium-content a {
    background: var(--mif-gold);
    color: #fff;
}

.mih-seo-section,
.mih-about-section,
.mih-service-section,
.mih-faq-section {
    padding: 70px 0;
}

.mih-seo-box,
.mih-quick-card,
.mih-topic-card {
    border: 1px solid var(--mif-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(20,30,50,.04);
}

.mih-seo-box {
    padding: 28px 32px;
    margin-bottom: 34px;
}

    .mih-seo-box h2 {
        font-size: 28px;
        font-weight: 900;
    }

    .mih-seo-box p {
        color: #43536b;
        font-size: 18px;
        line-height: 1.6;
    }

.mih-info-grid {
    display: grid;
    grid-template-columns: .75fr 1.1fr;
    gap: 24px;
}

.mih-quick-card,
.mih-topic-card {
    padding: 18px;
}

.mih-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .mih-card-head h3 {
        font-size: 17px;
    }

    .mih-card-head span {
        width: 30px;
        height: 30px;
        background: #f0f4f9;
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: #66758e;
    }

.mih-quick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}

    .mih-quick-grid a {
        border: 1px solid var(--mif-border);
        border-radius: 13px;
        padding: 16px;
        display: flex;
        gap: 14px;
        color: var(--mif-text);
        text-decoration: none;
    }

    .mih-quick-grid b {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        background: var(--mif-navy);
        color: #fff;
        display: grid;
        place-items: center;
    }

    .mih-quick-grid small,
    .mih-topic-list small {
        display: block;
        color: #66758e;
        font-size: 14px;
    }

.mih-topic-list {
    display: grid;
    gap: 28px;
    margin-top: 22px;
}

    .mih-topic-list div {
        display: flex;
        gap: 14px;
    }

    .mih-topic-list i {
        width: 28px;
        height: 28px;
        background: #edf2f8;
        border-radius: 50%;
        display: grid;
        place-items: center;
    }

.mih-about-grid {
    display: grid;
    grid-template-columns: .8fr .9fr 1fr;
    gap: 70px;
    align-items: center;
}

.mih-about-left p {
    font-size: 22px;
    line-height: 1.5;
}

.mih-about-left span {
    color: #8a4f0d;
}

.mih-about-image {
    position: relative;
    text-align: center;
}

    .mih-about-image img {
        width: 360px;
        height: 510px;
        border-radius: 200px 200px 0 0;
        object-fit: cover;
    }

    .mih-about-image strong {
        position: absolute;
        left: 20px;
        bottom: -5px;
        width: 135px;
        height: 135px;
        border-radius: 50%;
        background: var(--mif-gold);
        color: #fff;
        display: grid;
        place-items: center;
        text-align: center;
        padding: 20px;
        transform: rotate(-25deg);
    }

.mih-about-right h2 {
    font-size: 29px;
    font-weight: 950;
}

.mih-about-right p {
    font-size: 23px;
    line-height: 1.6;
}

.mih-stats {
    display: flex;
    gap: 54px;
    margin: 34px 0;
}

    .mih-stats strong {
        display: block;
        color: #8a4f0d;
        font-size: 30px;
        font-weight: 950;
    }

.mih-about-right a {
    background: var(--mif-gold);
    color: #fff;
    border-radius: 999px;
    font-size: 21px;
}

.mih-center-title {
    text-align: center;
    margin-bottom: 54px;
}

    .mih-center-title h2 {
        font-size: clamp(38px, 5vw, 58px);
    }

    .mih-center-title p {
        font-size: 20px;
        color: #52637d;
    }

.mih-service-grid {
    max-width: 1260px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

    .mih-service-grid div {
        border: 1px solid var(--mif-border);
        border-radius: 25px;
        padding: 26px;
        display: flex;
        gap: 22px;
        align-items: center;
    }

        .mih-service-grid div > i {
            width: 116px;
            height: 116px;
            border-radius: 18px;
            display: grid;
            place-items: center;
            background: #dfe9f5;
            color: #dd7b00;
            font-size: 58px;
        }

    .mih-service-grid b {
        display: block;
        font-size: 23px;
    }

    .mih-service-grid small {
        color: #66758e;
        font-size: 17px;
        line-height: 1.4;
    }

.mih-why-section {
    background: linear-gradient(120deg, #1b2741, #145e5a);
    color: #fff;
    padding: 74px 0;
}

.mih-why-grid {
    display: grid;
    grid-template-columns: .8fr 1.4fr;
    gap: 70px;
    align-items: center;
}

.mih-why-left span {
    display: inline-flex;
    border: 1px solid rgba(215,161,58,.8);
    border-radius: 999px;
    padding: 7px 14px;
    font-weight: 800;
}

.mih-why-left h2 {
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.2;
    font-weight: 950;
    margin: 26px 0;
}

    .mih-why-left h2 em {
        color: #ffe2a0;
        font-style: normal;
    }

.mih-why-left p {
    font-size: 21px;
    line-height: 1.55;
}

.mih-why-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

    .mih-why-tabs button {
        background: rgba(255,255,255,.05);
        color: #fff;
        border: 1px solid rgba(255,255,255,.18);
        border-radius: 14px;
        text-align: left;
        padding: 16px;
        font-weight: 700;
    }

        .mih-why-tabs button.active {
            border-color: var(--mif-gold-2);
            background: rgba(183,122,18,.25);
        }

    .mih-why-tabs b {
        display: block;
        font-size: 18px;
    }

.mih-why-panel {
    margin-top: 18px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: center;
    background: rgba(255,255,255,.04);
}

    .mih-why-panel h3 {
        font-size: 31px;
        font-weight: 950;
    }

    .mih-why-panel p,
    .mih-why-panel li {
        font-size: 18px;
        line-height: 1.55;
    }

    .mih-why-panel ul {
        list-style: none;
        padding: 0;
    }

    .mih-why-panel li {
        margin-bottom: 12px;
    }

    .mih-why-panel i {
        color: #ffe2a0;
        margin-right: 8px;
    }

    .mih-why-panel img {
        width: 100%;
        border-radius: 10px;
    }

    .mih-why-panel a {
        background: var(--mif-gold);
        color: #fff;
    }

.mih-faq-section span {
    color: #04736d;
    font-weight: 900;
}

.mih-faq-section h2 {
    font-size: 27px;
    margin-bottom: 35px;
}

.mih-faq-list {
    max-width: 1360px;
}

    .mih-faq-list details {
        border-bottom: 1px solid var(--mif-border);
        padding: 18px 12px;
    }

    .mih-faq-list summary {
        cursor: pointer;
        font-size: 17px;
        font-weight: 800;
        color: #344258;
        list-style: none;
        display: flex;
        justify-content: space-between;
    }

        .mih-faq-list summary::after {
            content: "\F282";
            font-family: bootstrap-icons;
        }

    .mih-faq-list p {
        margin: 14px 0 0;
        color: #53647d;
        line-height: 1.6;
    }

.mih-back-btn-wrap {
    text-align: center;
    margin-top: 70px;
}

.mih-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--mif-border);
    border-radius: 10px;
    padding: 18px 34px;
    color: #344258;
    text-decoration: none;
    font-size: 18px;
}

.mif-prefooter {
    background: #f7fafc;
    border-top: 1px solid var(--mif-border);
    padding: 60px 0 42px;
}

.mif-prefooter-card {
    border: 1px solid var(--mif-border);
    border-radius: 18px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
}

    .mif-prefooter-card > div {
        border: 1px solid var(--mif-border);
        border-radius: 12px;
        padding: 22px;
        background: #fff;
    }

    .mif-prefooter-card h3 {
        font-size: 18px;
        font-weight: 850;
    }

    .mif-prefooter-card p {
        color: #5b6a81;
    }

    .mif-prefooter-card a {
        color: #056f63;
        font-weight: 900;
        text-decoration: none;
    }

.mif-prefooter-cta {
    background: linear-gradient(120deg, var(--mif-navy), #106d67) !important;
    color: #fff;
}

    .mif-prefooter-cta p {
        color: #fff;
    }

    .mif-prefooter-cta a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #0f8f7e;
        color: #fff;
        padding: 12px 18px;
        border-radius: 999px;
    }

.mif-footer {
    background: #f7fafc;
    padding: 52px 0 30px;
}

.mif-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr .9fr;
    gap: 34px;
}

    .mif-footer-grid > div {
        border: 1px solid var(--mif-border);
        border-radius: 18px;
        padding: 30px;
        background: #fff;
    }

.mif-footer-about img {
    max-width: 145px;
    max-height: 90px;
    object-fit: contain;
    margin-bottom: 22px;
}

.mif-footer h3 {
    font-size: 23px;
    font-weight: 900;
}

.mif-footer h4 {
    font-size: 18px;
    line-height: 1.5;
}

.mif-footer p,
.mif-footer a {
    color: #46566e;
    font-size: 16px;
    line-height: 1.6;
}

.mif-footer-menu a {
    display: block;
    text-decoration: none;
    font-weight: 800;
    margin: 10px 0;
}

.mif-footer-small-links {
    display: flex;
    gap: 16px;
    margin-top: 22px;
}

    .mif-footer-small-links a {
        font-weight: 900;
        text-decoration: none;
    }

.mif-footer-contact p {
    display: flex;
    gap: 14px;
}

.mif-footer-contact i {
    color: #6557c8;
}

.mif-footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #b9efe3;
    color: #057263 !important;
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 900;
}

.mif-footer-bottom {
    display: flex;
    justify-content: space-between;
    color: #6b7a90;
    padding-top: 26px;
    margin-top: 20px;
    border-top: 1px solid var(--mif-border);
}

.mif-floating-whatsapp {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 90;
    background: #078f7f;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    min-height: 58px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 950;
    font-size: 18px;
    box-shadow: 0 20px 35px rgba(7,143,127,.28);
}

.mif-backtop {
    position: fixed;
    right: 28px;
    bottom: 96px;
    z-index: 89;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--mif-gold);
    color: #fff;
    display: none;
}

    .mif-backtop.show {
        display: grid;
        place-items: center;
    }

.mih-empty-box {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px dashed var(--mif-border);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: #66758e;
    font-weight: 800;
}

@media (max-width: 1199px) {
    .mif-menu {
        gap: 22px;
        margin-right: 20px;
    }

    .mih-hero-content {
        padding: 50px;
        grid-template-columns: 1fr;
    }

    .mih-hero-right {
        display: none;
    }

    .mih-search-form,
    .mih-feature-grid,
    .mih-tour-grid,
    .mih-service-grid,
    .mif-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mih-info-grid,
    .mih-about-grid,
    .mih-why-grid,
    .mih-why-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .mif-brand-text,
    .mif-menu {
        display: none;
    }

    .mif-mobile-toggle {
        display: grid;
        place-items: center;
    }

    .mif-mobile-menu.active {
        display: block;
    }

    .mif-logo-wrap {
        width: 140px;
    }

    .mif-logo-circle {
        width: 120px;
        height: 120px;
    }

    .mih-search-card {
        width: 100%;
    }

    .mih-search-form,
    .mih-feature-grid,
    .mih-tour-grid,
    .mih-service-grid,
    .mif-prefooter-card,
    .mif-footer-grid {
        grid-template-columns: 1fr;
    }

    .mih-hero-card,
    .mih-hero-content {
        min-height: 560px;
    }

    .mih-hero h1 {
        margin-top: 30px;
    }

    .mih-hero-badge {
        margin-top: 35px;
    }
}

@media (max-width: 575px) {
    .mif-topbar-left .mif-mini-pill:nth-child(2) {
        display: none;
    }

    .mif-phone-pill {
        padding: 8px 12px;
        font-size: 12px;
    }

    .mih-hero {
        padding-top: 18px;
    }

    .mih-hero-card {
        border-radius: 18px;
    }

    .mih-hero-content {
        padding: 32px 24px;
    }

    .mih-hero p {
        font-size: 16px;
    }

    .mih-hero-actions {
        flex-direction: column;
    }

    .mih-search-card {
        border-radius: 18px;
        padding: 20px;
        margin-top: -25px;
    }

    .mih-room-selects {
        flex-wrap: wrap;
    }

    .mih-tour-hotel-row {
        grid-template-columns: 70px 1fr;
    }

    .mih-airline-logo {
        display: none;
    }

    .mih-premium-content {
        padding: 34px 22px;
    }

    .mih-premium-boxes,
    .mih-quick-grid,
    .mih-why-tabs {
        grid-template-columns: 1fr;
    }

    .mih-about-image img {
        width: 100%;
        height: 430px;
    }

    .mif-floating-whatsapp {
        right: 16px;
        bottom: 16px;
        min-height: 50px;
        font-size: 15px;
    }
}
.mih-month-buttons button.active {
    background: #b77a12;
    color: #fff;
}

.mih-tour-grid.loading {
    opacity: .55;
    pointer-events: none;
    position: relative;
}

    .mih-tour-grid.loading::after {
        content: "Turlar yükleniyor...";
        position: absolute;
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
        background: #182640;
        color: #fff;
        padding: 10px 18px;
        border-radius: 999px;
        font-weight: 800;
        z-index: 4;
    }
/* HOME HERO FINAL FIX */
.mih-hero {
    padding: 34px 0 0;
    background: #fff;
}

    .mih-hero .container {
        max-width: 1760px;
    }

.mih-hero-card {
    height: 650px;
    min-height: 650px;
    border-radius: 30px;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 28px 70px rgba(15, 23, 42, .16);
}

.mih-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.66) 33%, rgba(0,0,0,.34) 63%, rgba(0,0,0,.12) 100%), linear-gradient(0deg, rgba(0,0,0,.32), rgba(0,0,0,.08));
}

.mih-hero-content {
    position: relative;
    z-index: 2;
    height: 650px;
    min-height: 650px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 480px;
    gap: 52px;
    align-items: center;
    padding: 74px 140px 110px;
}

.mih-hero-left {
    max-width: 760px;
}

.mih-hero-document {
    position: absolute;
    top: 54px;
    left: 140px;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(0,0,0,.32);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.mih-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(183,122,18,.94);
    color: #fff;
    font-size: 15px;
    font-weight: 850;
}

.mih-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(46px, 5vw, 76px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -.045em;
    text-shadow: 0 8px 28px rgba(0,0,0,.28);
}

    .mih-hero h1 em {
        display: block;
        margin-top: 8px;
        font-family: inherit;
        font-style: normal;
        font-size: clamp(38px, 4.2vw, 62px);
        line-height: 1.08;
        font-weight: 900;
    }

.mih-hero p {
    margin: 24px 0 0;
    max-width: 680px;
    color: rgba(255,255,255,.96);
    font-size: 21px;
    line-height: 1.55;
    font-weight: 600;
}

.mih-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.mih-btn-primary,
.mih-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
}

.mih-btn-primary {
    background: #15936f;
    color: #fff;
    box-shadow: 0 14px 28px rgba(21,147,111,.28);
}

.mih-btn-ghost {
    background: rgba(16,24,40,.52);
    color: #fff;
    border: 1px solid rgba(255,255,255,.38);
    backdrop-filter: blur(8px);
}

.mih-hero-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.mih-premium-label {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    color: #fff;
    border: 1px solid rgba(255,255,255,.32);
    font-size: 14px;
    font-weight: 850;
    margin-bottom: 30px;
}

.mih-callout-line {
    display: none;
}

.mih-signature-box {
    width: 100%;
    margin: 0;
}

    .mih-signature-box > span {
        display: block;
        color: #d7a13a;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .08em;
        text-align: center;
        margin-bottom: 16px;
    }

.mih-signature-card,
.mih-signature-mini {
    background: rgba(22,18,14,.72);
    border: 1px solid rgba(215,161,58,.55);
    border-radius: 18px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    margin-bottom: 12px;
    backdrop-filter: blur(8px);
}

    .mih-signature-card img {
        width: 78px;
        height: 62px;
        object-fit: cover;
        border-radius: 8px;
    }

    .mih-signature-card small,
    .mih-signature-mini small {
        display: block;
        color: #d7a13a;
        font-size: 12px;
        font-weight: 900;
        margin-bottom: 4px;
    }

    .mih-signature-card strong,
    .mih-signature-mini strong {
        display: block;
        color: #fff;
        font-size: 18px;
        font-weight: 950;
    }

    .mih-signature-card p {
        margin: 5px 0 0;
        color: rgba(255,255,255,.85);
        font-size: 13px;
        line-height: 1.4;
    }

    .mih-signature-mini i {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(215,161,58,.18);
        color: #d7a13a;
        display: grid;
        place-items: center;
        font-size: 22px;
    }

.mih-signature-tags {
    display: none;
}

.mih-hero-arrow {
    position: absolute;
    z-index: 8;
    top: 80%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.86);
    color: #111827;
    display: grid;
    place-items: center;
    font-size: 22px;
}

    .mih-hero-arrow.left {
        left: 10px;
    }

    .mih-hero-arrow.right {
        right: 10px;
    }

.mih-search-card {
    width: calc(100% - 170px);
    max-width: 1480px;
    margin: -48px auto 0;
    position: relative;
    z-index: 10;
    background: #fff;
    border-radius: 24px;
    padding: 26px 32px;
    box-shadow: 0 20px 50px rgba(15,23,42,.14);
}

/* TR/EN ve login kalıntıları görünmesin */
.miftah-lang-switch,
.miftah-login-btn,
.mif-lang-switch,
.mif-login-btn {
    display: none !important;
}

@media (max-width: 1199px) {
    .mih-hero-content {
        grid-template-columns: 1fr;
        padding: 72px 50px 110px;
    }

    .mih-hero-document {
        left: 50px;
    }

    .mih-hero-right {
        display: none;
    }

    .mih-search-card {
        width: calc(100% - 40px);
    }
}

@media (max-width: 768px) {
    .mih-hero-card,
    .mih-hero-content {
        height: auto;
        min-height: 540px;
    }

    .mih-hero-content {
        padding: 80px 24px 110px;
    }

    .mih-hero-document {
        left: 24px;
        top: 34px;
    }

    .mih-hero h1 {
        font-size: 38px;
    }

        .mih-hero h1 em {
            font-size: 31px;
        }

    .mih-hero p {
        font-size: 16px;
    }

    .mih-search-card {
        width: calc(100% - 24px);
        padding: 22px;
    }
}
/* =========================================================
   HOME SLIDER FINAL KÜÇÜLTME - EN ALTA KOY
   ========================================================= */

html body .mih-hero {
    padding: 24px 0 0 !important;
}

    html body .mih-hero .container {
        max-width: 1600px !important;
    }

html body .mih-hero-card {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    border-radius: 24px !important;
    background-size: cover !important;
    background-position: center center !important;
}

html body .mih-hero-content {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    padding: 52px 120px 88px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 390px !important;
    gap: 36px !important;
    align-items: center !important;
}

html body .mih-hero-left {
    max-width: 590px !important;
    transform: none !important;
}

html body .mih-hero-document {
    top: 36px !important;
    left: 120px !important;
    min-height: 28px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
    font-weight: 750 !important;
}

html body .mih-hero-badge {
    min-height: 31px !important;
    padding: 0 14px !important;
    margin: 0 0 18px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

html body .mih-hero h1 {
    max-width: 590px !important;
    margin: 0 !important;
    font-size: clamp(34px, 3.1vw, 50px) !important;
    line-height: 1.10 !important;
    font-weight: 900 !important;
    letter-spacing: -0.035em !important;
}

    html body .mih-hero h1 em {
        display: block !important;
        margin-top: 4px !important;
        font-size: clamp(29px, 2.7vw, 42px) !important;
        line-height: 1.10 !important;
        font-weight: 800 !important;
        font-style: normal !important;
        font-family: inherit !important;
    }

html body .mih-hero h2 {
    margin: 18px 0 0 !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
}

    html body .mih-hero h2 i {
        width: 30px !important;
        height: 30px !important;
        font-size: 15px !important;
    }

html body .mih-hero p {
    max-width: 540px !important;
    margin-top: 18px !important;
    font-size: 16.5px !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
}

html body .mih-hero-actions {
    margin-top: 22px !important;
    gap: 12px !important;
}

html body .mih-btn-primary,
html body .mih-btn-ghost {
    min-height: 44px !important;
    padding: 0 20px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    font-weight: 850 !important;
}

/* Sağdaki kartları küçült */
html body .mih-hero-right {
    display: flex !important;
    justify-content: center !important;
}

html body .mih-premium-label {
    min-height: 30px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
    margin-bottom: 18px !important;
}

html body .mih-signature-box {
    width: 360px !important;
    max-width: 360px !important;
}

    html body .mih-signature-box > span {
        font-size: 11px !important;
        margin-bottom: 10px !important;
    }

html body .mih-signature-card,
html body .mih-signature-mini {
    border-radius: 14px !important;
    padding: 11px !important;
    gap: 10px !important;
    margin-bottom: 9px !important;
}

    html body .mih-signature-card img {
        width: 58px !important;
        height: 48px !important;
    }

    html body .mih-signature-card small,
    html body .mih-signature-mini small {
        font-size: 10px !important;
    }

    html body .mih-signature-card strong,
    html body .mih-signature-mini strong {
        font-size: 14px !important;
    }

    html body .mih-signature-card p {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }

    html body .mih-signature-mini i {
        width: 34px !important;
        height: 34px !important;
        font-size: 17px !important;
    }

/* Oklar */
html body .mih-hero-arrow {
    width: 36px !important;
    height: 36px !important;
    font-size: 18px !important;
    top: 72% !important;
}

/* Filtre kartını da küçült */
html body .mih-search-card {
    width: calc(100% - 210px) !important;
    max-width: 1320px !important;
    margin: -38px auto 0 !important;
    padding: 20px 26px !important;
    border-radius: 20px !important;
}

html body .mih-search-head {
    font-size: 15px !important;
    margin-bottom: 16px !important;
}

    html body .mih-search-head i {
        width: 29px !important;
        height: 29px !important;
        font-size: 14px !important;
    }

html body .mih-search-form {
    grid-template-columns: 1fr 1.25fr 170px !important;
    gap: 22px !important;
}

html body .mih-search-months label,
html body .mih-room-title {
    font-size: 13px !important;
    margin-bottom: 8px !important;
}

html body .mih-search-months button {
    padding: 9px 15px !important;
    border-radius: 10px !important;
    font-size: 13px !important;
}

html body .mih-room-selects {
    min-height: 46px !important;
    padding: 6px 10px !important;
    gap: 12px !important;
}

    html body .mih-room-selects span,
    html body .mih-room-selects label {
        font-size: 12px !important;
    }

    html body .mih-room-selects select {
        padding: 5px 11px !important;
        font-size: 13px !important;
    }

html body .mih-search-submit {
    height: 48px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
}

/* Mobil */
@media (max-width: 1199px) {
    html body .mih-hero-card,
    html body .mih-hero-content {
        height: 500px !important;
        min-height: 500px !important;
        max-height: 500px !important;
    }

    html body .mih-hero-content {
        grid-template-columns: 1fr !important;
        padding: 56px 50px 90px !important;
    }

    html body .mih-hero-document {
        left: 50px !important;
    }

    html body .mih-hero-right {
        display: none !important;
    }

    html body .mih-search-card {
        width: calc(100% - 50px) !important;
    }
}

@media (max-width: 768px) {
    html body .mih-hero-card,
    html body .mih-hero-content {
        height: 460px !important;
        min-height: 460px !important;
        max-height: 460px !important;
    }

    html body .mih-hero-content {
        padding: 60px 24px 82px !important;
    }

    html body .mih-hero-document {
        left: 24px !important;
        top: 28px !important;
    }

    html body .mih-hero h1 {
        font-size: 32px !important;
    }

        html body .mih-hero h1 em {
            font-size: 27px !important;
        }

    html body .mih-hero p {
        font-size: 15px !important;
    }

    html body .mih-search-card {
        width: calc(100% - 22px) !important;
        margin-top: -30px !important;
    }

    html body .mih-search-form {
        grid-template-columns: 1fr !important;
    }
}
/* HOME SEARCH FILTER - DAY / PRICE */
html body .mih-search-filter-group {
    min-width: 0;
}

html body .mih-filter-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

    html body .mih-filter-title-row span {
        color: #4f607a;
        font-size: 13px;
        font-weight: 850;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    html body .mih-filter-title-row small {
        color: #617089;
        font-size: 12px;
        font-weight: 750;
    }

html body .mih-filter-controls {
    min-height: 46px;
    border: 1px solid #d8e1ec;
    border-radius: 14px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
}

    html body .mih-filter-controls label {
        margin: 0;
        color: #66758e;
        font-size: 12px;
        font-weight: 850;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    html body .mih-filter-controls select {
        height: 34px;
        border: 1px solid #d8e1ec;
        border-radius: 10px;
        padding: 0 12px;
        color: #1d2939;
        font-size: 13px;
        font-weight: 750;
        background: #f9fbfd;
    }

@media (max-width: 991px) {
    html body .mih-filter-controls {
        flex-direction: column;
        align-items: stretch;
    }

        html body .mih-filter-controls label {
            justify-content: space-between;
        }

        html body .mih-filter-controls select {
            min-width: 160px;
        }
}
/* DETAIL RESERVATION POPUP */
body.mtd-modal-open {
    overflow: hidden;
}

.mtd-reservation-actions .reserve {
    border: 0;
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
    background: #0f8f7e;
    color: #fff;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .mtd-reservation-actions .reserve:hover {
        background: #087468;
    }

.mtd-reservation-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .mtd-reservation-modal.show {
        display: flex;
    }

.mtd-reservation-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .72);
    backdrop-filter: blur(5px);
}

.mtd-reservation-modal-card {
    position: relative;
    z-index: 2;
    width: min(620px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

.mtd-reservation-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 0;
    background: #f2f4f7;
    color: #344054;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mtd-reservation-modal-head {
    padding-right: 44px;
    margin-bottom: 18px;
}

    .mtd-reservation-modal-head span {
        color: #b77a12;
        font-size: 13px;
        font-weight: 900;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        margin-bottom: 8px;
    }

    .mtd-reservation-modal-head h3 {
        color: #17233a;
        font-size: 24px;
        font-weight: 950;
        margin: 0 0 8px;
    }

    .mtd-reservation-modal-head p {
        color: #667085;
        margin: 0;
        line-height: 1.55;
    }

.mtd-reservation-modal-summary {
    border: 1px solid #dbe5f0;
    border-radius: 18px;
    background: #f8fbff;
    padding: 16px;
    margin-bottom: 18px;
}

.mtd-reservation-summary-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

    .mtd-reservation-summary-top div {
        background: #fff;
        border: 1px solid #e4ebf3;
        border-radius: 14px;
        padding: 12px;
        text-align: center;
    }

    .mtd-reservation-summary-top small {
        display: block;
        color: #667085;
        font-weight: 850;
        margin-bottom: 4px;
    }

    .mtd-reservation-summary-top strong {
        color: #17233a;
        font-size: 18px;
        font-weight: 950;
    }

.mtd-reservation-summary-list {
    display: grid;
    gap: 8px;
}

.mtd-reservation-summary-room {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #e4ebf3;
    padding-top: 8px;
    color: #344054;
}

    .mtd-reservation-summary-room strong {
        color: #17233a;
        font-weight: 900;
    }

.mtd-reservation-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

    .mtd-reservation-modal-grid label {
        color: #344054;
        font-size: 13px;
        font-weight: 900;
    }

    .mtd-reservation-modal-grid input {
        width: 100%;
        height: 48px;
        margin-top: 7px;
        border: 1px solid #d0d7e2;
        border-radius: 13px;
        padding: 0 14px;
        color: #17233a;
        font-weight: 700;
    }

.mtd-kvkk-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 16px 0;
    color: #475467;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
}

    .mtd-kvkk-check input {
        margin-top: 3px;
    }

.mtd-reservation-modal-alert {
    display: none;
    border-radius: 13px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 14px;
}

    .mtd-reservation-modal-alert.error {
        display: block;
        background: #fff1f1;
        color: #b42318;
        border: 1px solid #ffd0d0;
    }

    .mtd-reservation-modal-alert.success {
        display: block;
        background: #ecfdf3;
        color: #027a48;
        border: 1px solid #abefc6;
    }

.mtd-reservation-modal-submit {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 15px;
    background: #0f8f7e;
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

    .mtd-reservation-modal-submit:disabled {
        opacity: .7;
        cursor: not-allowed;
    }

@media (max-width: 575px) {
    .mtd-reservation-modal-card {
        padding: 22px;
        border-radius: 20px;
    }

    .mtd-reservation-modal-grid {
        grid-template-columns: 1fr;
    }

    .mtd-reservation-summary-top {
        grid-template-columns: 1fr;
    }

    .mtd-reservation-summary-room {
        flex-direction: column;
        gap: 3px;
    }
}
/* ---------- FEATURE SECTION WRAP ---------- */
html body .mih-feature-cards,
html body .mih-feature-cards-v2 {
    padding: 28px 0 42px !important;
}

html body .mih-feature-layout-v2 {
    max-width: 1320px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1.15fr .78fr !important;
    gap: 18px !important;
    align-items: stretch !important;
}

html body .mih-feature-left-v2 {
    display: grid !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 16px !important;
}

/* ---------- LEFT HORIZONTAL CARDS ---------- */
html body .mih-feature-card-hz {
    min-height: 154px !important;
    max-height: 162px !important;
    padding: 18px 20px !important;
    border-radius: 24px !important;
    display: grid !important;
    grid-template-columns: 64px 1fr !important;
    gap: 16px !important;
    overflow: hidden !important;
}

    html body .mih-feature-card-hz::after {
        width: 96px !important;
        height: 96px !important;
        right: -22px !important;
        top: -22px !important;
        opacity: .85 !important;
    }

html body .mih-feature-card-icon {
    width: 60px !important;
    height: 60px !important;
    border-radius: 18px !important;
    font-size: 24px !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .06) !important;
}

html body .mih-feature-mini {
    margin-bottom: 4px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
}

html body .mih-feature-card-content h3 {
    margin: 0 0 6px !important;
    font-size: 18px !important;
    line-height: 1.12 !important;
    font-weight: 900 !important;
}

html body .mih-feature-card-content p {
    margin: 0 0 8px !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

html body .mih-feature-card-content ul {
    margin: 0 0 8px !important;
    gap: 4px !important;
}

    html body .mih-feature-card-content ul li {
        font-size: 12.5px !important;
        line-height: 1.35 !important;
        gap: 6px !important;
    }

        html body .mih-feature-card-content ul li:nth-child(n+3) {
            display: none !important;
        }

        html body .mih-feature-card-content ul li i {
            font-size: 12px !important;
            margin-top: 2px !important;
        }

html body .mih-feature-card-hz strong {
    font-size: 13.5px !important;
    line-height: 1.2 !important;
    gap: 6px !important;
    font-weight: 900 !important;
}

/* ---------- RIGHT SPECIAL CARD ---------- */
html body .mih-feature-special-v2 {
    min-height: 324px !important;
    max-height: 340px !important;
    padding: 20px 22px !important;
    border-radius: 24px !important;
    overflow: hidden !important;
}

html body .mih-feature-special-badge {
    padding: 6px 12px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    margin-bottom: 12px !important;
    font-weight: 900 !important;
}

html body .mih-feature-special-top {
    gap: 12px !important;
    margin-bottom: 10px !important;
}

html body .mih-feature-special-icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 16px !important;
    font-size: 22px !important;
    box-shadow: none !important;
}

html body .mih-feature-special-top h3 {
    margin: 2px 0 0 !important;
    font-size: 21px !important;
    line-height: 1.08 !important;
    font-weight: 950 !important;
}

html body .mih-feature-special-text {
    margin: 0 0 10px !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

html body .mih-feature-special-points {
    gap: 6px !important;
    margin-bottom: 10px !important;
}

    html body .mih-feature-special-points div {
        font-size: 12.5px !important;
        line-height: 1.4 !important;
        gap: 7px !important;
    }

    html body .mih-feature-special-points i {
        font-size: 13px !important;
        margin-top: 2px !important;
    }

html body .mih-feature-special-boxes {
    display: none !important;
}

html body .mih-feature-special-action {
    margin-top: 6px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
}

/* ---------- HOVER ---------- */
html body .mih-feature-card-hz:hover,
html body .mih-feature-special-v2:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08) !important;
}

/* ---------- TABLET ---------- */
@media (max-width: 1200px) {
    html body .mih-search-card {
        width: calc(100% - 40px) !important;
        padding: 24px 24px !important;
    }

    html body .mih-search-form {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    html body .mih-feature-layout-v2 {
        grid-template-columns: 1fr !important;
    }

    html body .mih-feature-special-v2 {
        min-height: auto !important;
        max-height: none !important;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
    html body .mih-search-card {
        width: calc(100% - 24px) !important;
        margin-top: -28px !important;
        padding: 18px 16px !important;
        border-radius: 20px !important;
    }

    html body .mih-search-head {
        font-size: 15px !important;
        margin-bottom: 14px !important;
    }

    html body .mih-search-form {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    html body .mih-filter-controls {
        flex-direction: column !important;
        align-items: stretch !important;
        min-height: auto !important;
        padding: 12px !important;
        gap: 10px !important;
    }

        html body .mih-filter-controls select {
            width: 100% !important;
            min-width: 100% !important;
        }

    html body .mih-search-submit {
        height: 50px !important;
    }

    html body .mih-feature-layout-v2 {
        gap: 12px !important;
    }

    html body .mih-feature-left-v2 {
        gap: 12px !important;
    }

    html body .mih-feature-card-hz {
        min-height: auto !important;
        max-height: none !important;
        grid-template-columns: 52px 1fr !important;
        gap: 12px !important;
        padding: 14px !important;
        border-radius: 18px !important;
    }

    html body .mih-feature-card-icon {
        width: 52px !important;
        height: 52px !important;
        font-size: 20px !important;
    }

    html body .mih-feature-card-content h3 {
        font-size: 17px !important;
    }

    html body .mih-feature-card-content p,
    html body .mih-feature-card-content ul li,
    html body .mih-feature-special-text,
    html body .mih-feature-special-points div {
        font-size: 12.5px !important;
    }

    html body .mih-feature-special-v2 {
        min-height: auto !important;
        max-height: none !important;
        padding: 16px !important;
        border-radius: 20px !important;
    }

    html body .mih-feature-special-top h3 {
        font-size: 19px !important;
    }

    html body .mih-feature-special-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }
}
/* =========================================================
   FEATURE CARDS FINAL
   Filtre kutusuyla aynı genişlikte, dengeli, kesilmeyen final tasarım
   ========================================================= */

html body .mih-feature-cards,
html body .mih-feature-cards-v2 {
    padding: 32px 0 48px !important;
    background: #fff !important;
}

    html body .mih-feature-cards-v2 .container {
        max-width: none !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

html body .mih-feature-layout-v2 {
    width: calc(100% - 150px) !important;
    max-width: 1480px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr) !important;
    gap: 22px !important;
    align-items: stretch !important;
}

html body .mih-feature-left-v2 {
    display: grid !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 20px !important;
}

html body .mih-feature-right-v2 {
    height: 100% !important;
}

/* SOLDAKİ 2 YATAY KART */
html body .mih-feature-card-hz {
    position: relative !important;
    min-height: 188px !important;
    height: 188px !important;
    padding: 26px 30px !important;
    border-radius: 26px !important;
    display: grid !important;
    grid-template-columns: 78px 1fr !important;
    gap: 22px !important;
    align-items: flex-start !important;
    overflow: hidden !important;
    text-decoration: none !important;
    background: #fff !important;
    border: 1px solid #cfe7e3 !important;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .055) !important;
}

    html body .mih-feature-card-hz.international {
        border-color: #d5e3f5 !important;
    }

    html body .mih-feature-card-hz::after {
        content: "" !important;
        position: absolute !important;
        width: 118px !important;
        height: 118px !important;
        right: -34px !important;
        top: -34px !important;
        border-radius: 50% !important;
        background: rgba(0, 143, 132, .10) !important;
        pointer-events: none !important;
    }

    html body .mih-feature-card-hz.international::after {
        background: rgba(53, 84, 137, .09) !important;
    }

html body .mih-feature-card-icon {
    width: 76px !important;
    height: 76px !important;
    border-radius: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 30px !important;
    flex-shrink: 0 !important;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .06) !important;
}

html body .mih-feature-card-hz.umrah .mih-feature-card-icon {
    background: #e9fbf6 !important;
    color: #008f84 !important;
}

html body .mih-feature-card-hz.international .mih-feature-card-icon {
    background: #eaf1ff !important;
    color: #355489 !important;
}

html body .mih-feature-card-content {
    position: relative !important;
    z-index: 2 !important;
    min-width: 0 !important;
}

html body .mih-feature-mini {
    display: block !important;
    margin: 0 0 6px !important;
    color: #008f84 !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 950 !important;
}

html body .mih-feature-card-hz.international .mih-feature-mini {
    color: #355489 !important;
}

html body .mih-feature-card-content h3 {
    margin: 0 0 8px !important;
    color: #0f1d3a !important;
    font-size: 28px !important;
    line-height: 1.05 !important;
    font-weight: 950 !important;
    letter-spacing: -.02em !important;
}

html body .mih-feature-card-content p {
    margin: 0 0 10px !important;
    color: #5b6b84 !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
    max-width: 760px !important;
    white-space: normal !important;
    overflow: visible !important;
    display: block !important;
}

html body .mih-feature-card-content ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 12px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px 18px !important;
}

    html body .mih-feature-card-content ul li {
        display: flex !important;
        align-items: flex-start !important;
        gap: 7px !important;
        color: #50617a !important;
        font-size: 13.5px !important;
        line-height: 1.35 !important;
    }

        html body .mih-feature-card-content ul li:nth-child(n+3) {
            display: none !important;
        }

        html body .mih-feature-card-content ul li i {
            color: #008f84 !important;
            font-size: 13px !important;
            margin-top: 2px !important;
        }

html body .mih-feature-card-hz strong {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #006f67 !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    font-weight: 950 !important;
}

html body .mih-feature-card-hz.international strong {
    color: #234a83 !important;
}

/* SAĞDAKİ ÖZEL PROGRAM KARTI */
html body .mih-feature-special-v2 {
    position: relative !important;
    height: 100% !important;
    min-height: 396px !important;
    padding: 28px 32px !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    text-decoration: none !important;
    border: 1px solid #e4c879 !important;
    background: radial-gradient(circle at top right, rgba(0, 143, 132, .08) 0%, rgba(0, 143, 132, .08) 17%, transparent 18%), linear-gradient(180deg, #fffdf7 0%, #fffaf0 100%) !important;
    box-shadow: 0 16px 42px rgba(179, 122, 11, .08) !important;
}

html body .mih-feature-special-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 15px !important;
    border-radius: 999px !important;
    background: rgba(179, 122, 11, .11) !important;
    color: #b37a0b !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    margin-bottom: 18px !important;
}

html body .mih-feature-special-top {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    margin-bottom: 16px !important;
}

html body .mih-feature-special-icon {
    width: 72px !important;
    height: 72px !important;
    border-radius: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 30px !important;
    background: linear-gradient(135deg, #fff2cc 0%, #f5df9a 100%) !important;
    color: #b37a0b !important;
    flex-shrink: 0 !important;
}

html body .mih-feature-special-top .mih-feature-mini {
    margin-bottom: 5px !important;
    color: #008f84 !important;
    font-size: 14px !important;
}

html body .mih-feature-special-top h3 {
    margin: 0 !important;
    color: #0f1d3a !important;
    font-size: 31px !important;
    line-height: 1.08 !important;
    font-weight: 950 !important;
    letter-spacing: -.025em !important;
}

html body .mih-feature-special-text {
    margin: 0 0 16px !important;
    color: #5b6b84 !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    display: block !important;
    overflow: visible !important;
}

html body .mih-feature-special-points {
    display: grid !important;
    gap: 9px !important;
    margin-bottom: 20px !important;
}

    html body .mih-feature-special-points div {
        display: flex !important;
        align-items: flex-start !important;
        gap: 9px !important;
        color: #50617a !important;
        font-size: 14px !important;
        line-height: 1.45 !important;
    }

        html body .mih-feature-special-points div:nth-child(n+3) {
            display: none !important;
        }

    html body .mih-feature-special-points i {
        color: #b37a0b !important;
        font-size: 15px !important;
        margin-top: 3px !important;
        flex-shrink: 0 !important;
    }

html body .mih-feature-special-boxes {
    display: none !important;
}

html body .mih-feature-special-action {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 0 !important;
    color: #b37a0b !important;
    font-size: 17px !important;
    line-height: 1.2 !important;
    font-weight: 950 !important;
}

/* Hover */
html body .mih-feature-card-hz:hover,
html body .mih-feature-special-v2:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .10) !important;
}

/* Mobil / Tablet */
@media (max-width: 1200px) {
    html body .mih-feature-layout-v2 {
        width: calc(100% - 44px) !important;
        grid-template-columns: 1fr !important;
    }

    html body .mih-feature-special-v2 {
        min-height: auto !important;
    }
}

@media (max-width: 768px) {
    html body .mih-feature-layout-v2 {
        width: calc(100% - 24px) !important;
        gap: 14px !important;
    }

    html body .mih-feature-left-v2 {
        gap: 14px !important;
    }

    html body .mih-feature-card-hz {
        height: auto !important;
        min-height: 170px !important;
        grid-template-columns: 58px 1fr !important;
        gap: 14px !important;
        padding: 18px !important;
        border-radius: 20px !important;
    }

    html body .mih-feature-card-icon {
        width: 56px !important;
        height: 56px !important;
        border-radius: 16px !important;
        font-size: 23px !important;
    }

    html body .mih-feature-card-content h3 {
        font-size: 23px !important;
    }

    html body .mih-feature-card-content p,
    html body .mih-feature-card-content ul li,
    html body .mih-feature-special-text,
    html body .mih-feature-special-points div {
        font-size: 13px !important;
    }

    html body .mih-feature-card-content ul {
        grid-template-columns: 1fr !important;
    }

    html body .mih-feature-special-v2 {
        padding: 22px !important;
        border-radius: 22px !important;
    }

    html body .mih-feature-special-top h3 {
        font-size: 25px !important;
    }

    html body .mih-feature-special-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 25px !important;
    }
}
/* =========================================================
   MIF PROGRAM SHOWCASE - FINAL CLEAN VERSION
   Eski mih-feature classlarını kullanmaz, çakışma yapmaz.
   ========================================================= */

html body .mif-program-showcase {
    padding: 34px 0 48px !important;
    background: #fff !important;
}

    html body .mif-program-showcase .container {
        max-width: none !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

html body .mif-program-layout {
    width: calc(100% - 150px) !important;
    max-width: 1480px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.55fr) minmax(390px, .95fr) !important;
    gap: 22px !important;
    align-items: stretch !important;
}

html body .mif-program-left {
    display: grid !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 18px !important;
}

html body .mif-program-card,
html body .mif-program-special {
    position: relative !important;
    text-decoration: none !important;
    overflow: hidden !important;
    border-radius: 26px !important;
    background: #fff !important;
    transition: .2s ease !important;
}

/* SOLDAKİ 2 KART */
html body .mif-program-card {
    height: 178px !important;
    min-height: 178px !important;
    padding: 24px 28px !important;
    display: grid !important;
    grid-template-columns: 76px minmax(0, 1fr) !important;
    gap: 22px !important;
    align-items: center !important;
    border: 1px solid #cfe7e3 !important;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .055) !important;
}

html body .mif-program-world {
    border-color: #d5e3f5 !important;
}

html body .mif-program-card::after,
html body .mif-program-special::after {
    content: "" !important;
    position: absolute !important;
    width: 118px !important;
    height: 118px !important;
    right: -35px !important;
    top: -35px !important;
    border-radius: 50% !important;
    background: rgba(0, 143, 132, .09) !important;
    pointer-events: none !important;
}

html body .mif-program-world::after {
    background: rgba(53, 84, 137, .08) !important;
}

html body .mif-program-icon {
    width: 74px !important;
    height: 74px !important;
    border-radius: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 30px !important;
    flex-shrink: 0 !important;
}

html body .mif-program-umrah .mif-program-icon {
    background: #e9fbf6 !important;
    color: #008f84 !important;
}

html body .mif-program-world .mif-program-icon {
    background: #eaf1ff !important;
    color: #355489 !important;
}

html body .mif-program-content {
    position: relative !important;
    z-index: 2 !important;
    min-width: 0 !important;
}

    html body .mif-program-content span {
        display: block !important;
        color: #008f84 !important;
        font-size: 14px !important;
        line-height: 1.2 !important;
        font-weight: 950 !important;
        margin-bottom: 5px !important;
    }

html body .mif-program-world .mif-program-content span {
    color: #355489 !important;
}

html body .mif-program-content h3 {
    color: #0f1d3a !important;
    font-size: 30px !important;
    line-height: 1.02 !important;
    font-weight: 950 !important;
    margin: 0 0 8px !important;
    letter-spacing: -.025em !important;
}

html body .mif-program-content p {
    color: #5b6b84 !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
    margin: 0 0 10px !important;
}

html body .mif-program-points {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px 24px !important;
    margin-bottom: 11px !important;
}

    html body .mif-program-points small {
        display: inline-flex !important;
        align-items: center !important;
        gap: 7px !important;
        color: #50617a !important;
        font-size: 13.5px !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
    }

    html body .mif-program-points i {
        color: #008f84 !important;
    }

html body .mif-program-card strong {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #006f67 !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    font-weight: 950 !important;
}

html body .mif-program-world strong {
    color: #234a83 !important;
}

/* SAĞDAKİ ÖZEL KART */
html body .mif-program-special {
    height: 374px !important;
    min-height: 374px !important;
    padding: 30px 34px !important;
    border: 1px solid #e4c879 !important;
    background: radial-gradient(circle at top right, rgba(0, 143, 132, .08) 0%, rgba(0, 143, 132, .08) 17%, transparent 18%), linear-gradient(180deg, #fffdf7 0%, #fffaf0 100%) !important;
    box-shadow: 0 16px 42px rgba(179, 122, 11, .08) !important;
}

html body .mif-special-badge {
    position: relative !important;
    z-index: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 16px !important;
    border-radius: 999px !important;
    background: rgba(179, 122, 11, .11) !important;
    color: #b37a0b !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    margin-bottom: 22px !important;
}

html body .mif-special-main {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    margin-bottom: 16px !important;
}

html body .mif-special-icon {
    width: 74px !important;
    height: 74px !important;
    border-radius: 22px !important;
    background: linear-gradient(135deg, #fff2cc 0%, #f5df9a 100%) !important;
    color: #b37a0b !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 30px !important;
    flex-shrink: 0 !important;
}

html body .mif-special-main span {
    display: block !important;
    color: #008f84 !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 950 !important;
    margin-bottom: 5px !important;
}

html body .mif-special-main h3 {
    color: #0f1d3a !important;
    font-size: 34px !important;
    line-height: 1.05 !important;
    font-weight: 950 !important;
    margin: 0 !important;
    letter-spacing: -.025em !important;
}

html body .mif-program-special p {
    position: relative !important;
    z-index: 2 !important;
    color: #5b6b84 !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    margin: 0 0 18px !important;
}

html body .mif-special-points {
    position: relative !important;
    z-index: 2 !important;
    display: grid !important;
    gap: 9px !important;
    margin-bottom: 20px !important;
}

    html body .mif-special-points small {
        display: flex !important;
        align-items: flex-start !important;
        gap: 9px !important;
        color: #50617a !important;
        font-size: 14px !important;
        line-height: 1.35 !important;
        font-weight: 700 !important;
    }

    html body .mif-special-points i {
        color: #b37a0b !important;
        font-size: 15px !important;
        margin-top: 2px !important;
        flex-shrink: 0 !important;
    }

html body .mif-program-special > strong {
    position: relative !important;
    z-index: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #b37a0b !important;
    font-size: 17px !important;
    line-height: 1.2 !important;
    font-weight: 950 !important;
}

html body .mif-program-card:hover,
html body .mif-program-special:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .10) !important;
}

/* TABLET */
@media (max-width: 1200px) {
    html body .mif-program-layout {
        width: calc(100% - 44px) !important;
        grid-template-columns: 1fr !important;
    }

    html body .mif-program-special {
        height: auto !important;
        min-height: auto !important;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    html body .mif-program-showcase {
        padding: 24px 0 34px !important;
    }

    html body .mif-program-layout {
        width: calc(100% - 24px) !important;
        gap: 14px !important;
    }

    html body .mif-program-left {
        gap: 14px !important;
    }

    html body .mif-program-card {
        height: auto !important;
        min-height: 174px !important;
        grid-template-columns: 58px 1fr !important;
        gap: 14px !important;
        padding: 18px !important;
        border-radius: 20px !important;
    }

    html body .mif-program-icon {
        width: 56px !important;
        height: 56px !important;
        border-radius: 17px !important;
        font-size: 23px !important;
    }

    html body .mif-program-content h3 {
        font-size: 23px !important;
    }

    html body .mif-program-content p,
    html body .mif-program-points small,
    html body .mif-program-special p,
    html body .mif-special-points small {
        font-size: 13px !important;
    }

    html body .mif-program-points {
        display: grid !important;
        gap: 6px !important;
    }

    html body .mif-program-special {
        padding: 22px !important;
        border-radius: 22px !important;
    }

    html body .mif-special-main h3 {
        font-size: 25px !important;
    }

    html body .mif-special-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 25px !important;
    }
}
/* =========================================================
   MIF PROGRAM SHOWCASE - SON FINAL
   Referanstaki boyuta yakın: solda 2 yatay kart, sağda 1 özel kart
   ========================================================= */

html body .mif-program-showcase {
    padding: 24px 0 34px !important;
    background: #fff !important;
}

    html body .mif-program-showcase .container {
        max-width: 1320px !important;
        width: 100% !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

/* ANA YERLEŞİM */
html body .mif-program-layout {
    width: 100% !important;
    max-width: 1210px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 720px) minmax(0, 430px) !important;
    gap: 18px !important;
    align-items: stretch !important;
    justify-content: center !important;
}

/* SOL 2 KART */
html body .mif-program-left {
    display: grid !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 14px !important;
}

/* SOLDAKİ KARTLAR */
html body .mif-program-card {
    height: 156px !important;
    min-height: 156px !important;
    max-height: 156px !important;
    padding: 20px 22px !important;
    border-radius: 22px !important;
    display: grid !important;
    grid-template-columns: 62px minmax(0, 1fr) !important;
    gap: 18px !important;
    align-items: center !important;
    overflow: hidden !important;
    text-decoration: none !important;
    background: #fff !important;
    border: 1px solid #cde7e2 !important;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .055) !important;
}

html body .mif-program-world {
    border-color: #d5e3f5 !important;
}

html body .mif-program-card::after {
    width: 92px !important;
    height: 92px !important;
    right: -28px !important;
    top: -28px !important;
    opacity: .9 !important;
}

/* İKON */
html body .mif-program-icon {
    width: 60px !important;
    height: 60px !important;
    border-radius: 18px !important;
    font-size: 25px !important;
    flex-shrink: 0 !important;
}

/* SOL KART İÇERİK */
html body .mif-program-content span {
    display: block !important;
    margin: 0 0 4px !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
    font-weight: 950 !important;
}

html body .mif-program-content h3 {
    margin: 0 0 6px !important;
    color: #0f1d3a !important;
    font-size: 24px !important;
    line-height: 1.05 !important;
    font-weight: 950 !important;
    letter-spacing: -.02em !important;
}

html body .mif-program-content p {
    margin: 0 0 8px !important;
    color: #5b6b84 !important;
    font-size: 13.5px !important;
    line-height: 1.35 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

html body .mif-program-points {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 20px !important;
    margin: 0 0 9px !important;
    overflow: hidden !important;
}

    html body .mif-program-points small {
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        color: #50617a !important;
        font-size: 12.5px !important;
        line-height: 1.1 !important;
        font-weight: 750 !important;
        white-space: nowrap !important;
    }

        html body .mif-program-points small:nth-child(n+3) {
            display: none !important;
        }

html body .mif-program-card strong {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    color: #006f67 !important;
    font-size: 14px !important;
    line-height: 1.1 !important;
    font-weight: 950 !important;
}

html body .mif-program-world strong {
    color: #234a83 !important;
}

/* SAĞDAKİ ÖZEL PROGRAM KARTI */
html body .mif-program-special {
    height: 326px !important;
    min-height: 326px !important;
    max-height: 326px !important;
    padding: 22px 24px !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    border: 1px solid #e4c879 !important;
    background: radial-gradient(circle at top right, rgba(0, 143, 132, .09) 0%, rgba(0, 143, 132, .09) 18%, transparent 19%), linear-gradient(180deg, #fffdf7 0%, #fffaf0 100%) !important;
    box-shadow: 0 14px 34px rgba(179, 122, 11, .075) !important;
}

    html body .mif-program-special::after {
        width: 112px !important;
        height: 112px !important;
        right: -28px !important;
        top: -28px !important;
    }

/* ROZET */
html body .mif-special-badge {
    padding: 7px 14px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    margin-bottom: 16px !important;
    font-weight: 950 !important;
}

/* BAŞLIK BLOĞU */
html body .mif-special-main {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 14px !important;
}

html body .mif-special-icon {
    width: 62px !important;
    height: 62px !important;
    border-radius: 18px !important;
    font-size: 25px !important;
    flex-shrink: 0 !important;
}

html body .mif-special-main span {
    display: block !important;
    margin: 0 0 4px !important;
    color: #008f84 !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
    font-weight: 950 !important;
}

html body .mif-special-main h3 {
    margin: 0 !important;
    color: #0f1d3a !important;
    font-size: 28px !important;
    line-height: 1.03 !important;
    font-weight: 950 !important;
    letter-spacing: -.025em !important;
}

/* SAĞ KART YAZILAR */
html body .mif-program-special p {
    margin: 0 0 14px !important;
    color: #5b6b84 !important;
    font-size: 13.5px !important;
    line-height: 1.45 !important;
}

html body .mif-special-points {
    display: grid !important;
    gap: 8px !important;
    margin: 0 0 16px !important;
}

    html body .mif-special-points small {
        display: flex !important;
        align-items: flex-start !important;
        gap: 8px !important;
        color: #50617a !important;
        font-size: 13px !important;
        line-height: 1.25 !important;
        font-weight: 750 !important;
    }

        html body .mif-special-points small:nth-child(n+3) {
            display: none !important;
        }

    html body .mif-special-points i {
        color: #b37a0b !important;
        font-size: 14px !important;
        margin-top: 1px !important;
    }

html body .mif-program-special > strong {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #b37a0b !important;
    font-size: 15px !important;
    line-height: 1.15 !important;
    font-weight: 950 !important;
}

/* HOVER */
html body .mif-program-card:hover,
html body .mif-program-special:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 16px 36px rgba(15, 23, 42, .09) !important;
}

/* TABLET */
@media (max-width: 1200px) {
    html body .mif-program-layout {
        max-width: 920px !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    html body .mif-program-special {
        height: auto !important;
        min-height: 230px !important;
        max-height: none !important;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    html body .mif-program-showcase {
        padding: 20px 0 30px !important;
    }

        html body .mif-program-showcase .container {
            padding-left: 12px !important;
            padding-right: 12px !important;
        }

    html body .mif-program-layout {
        width: 100% !important;
        max-width: 100% !important;
        gap: 14px !important;
    }

    html body .mif-program-left {
        gap: 14px !important;
    }

    html body .mif-program-card {
        height: auto !important;
        min-height: 150px !important;
        max-height: none !important;
        grid-template-columns: 54px 1fr !important;
        gap: 13px !important;
        padding: 16px !important;
        border-radius: 18px !important;
    }

    html body .mif-program-icon {
        width: 52px !important;
        height: 52px !important;
        border-radius: 16px !important;
        font-size: 21px !important;
    }

    html body .mif-program-content h3 {
        font-size: 21px !important;
    }

    html body .mif-program-content p {
        white-space: normal !important;
        font-size: 13px !important;
    }

    html body .mif-program-points {
        display: grid !important;
        gap: 6px !important;
    }

    html body .mif-program-special {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        padding: 18px !important;
        border-radius: 20px !important;
    }

    html body .mif-special-main h3 {
        font-size: 23px !important;
    }

    html body .mif-special-icon {
        width: 54px !important;
        height: 54px !important;
        font-size: 22px !important;
    }
}
/* =========================================================
   UMRE TOUR CARDS - YATAY / 2'Lİ / DAHA İNCE TASARIM
   ========================================================= */

.mih-tours-section {
    padding: 52px 0 70px;
    background: #eef4fa;
}

.mih-tour-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.mih-tour-card {
    display: flex;
    flex-direction: column;
    background: #fffaf0;
    border: 1px solid #e8cf99;
    border-radius: 24px;
    padding: 14px;
    color: var(--mif-text);
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(20, 30, 50, .06);
    transition: .22s ease;
    min-height: 235px;
}

    .mih-tour-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 34px rgba(20, 30, 50, .10);
        color: var(--mif-text);
    }

.mih-tour-date {
    display: grid;
    grid-template-columns: 78px 1fr auto;
    align-items: center;
    gap: 14px;
    background: linear-gradient(90deg, #b9b19f 0%, #ebe6dc 55%, #f8f7f2 100%);
    border-radius: 16px;
    padding: 12px 14px;
    min-height: 74px;
}

    .mih-tour-date > div {
        width: 72px;
        height: 60px;
        background: #fff;
        border: 1px solid #efd39c;
        border-radius: 12px;
        display: grid;
        place-items: center;
        line-height: 1;
        padding-top: 2px;
    }

    .mih-tour-date strong {
        display: block;
        font-size: 22px;
        color: #a76a09;
        font-weight: 950;
        line-height: 1;
        margin-bottom: 2px;
    }

    .mih-tour-date span {
        display: block;
        color: #c07808;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .04em;
        line-height: 1;
    }

    .mih-tour-date p {
        margin: 0;
        min-width: 0;
    }

        .mih-tour-date p b {
            display: block;
            color: #9a6208;
            font-size: 14px;
            font-weight: 900;
            margin-bottom: 2px;
            line-height: 1.2;
        }

        .mih-tour-date p small {
            display: block;
            color: #53647d;
            font-size: 13px;
            line-height: 1.2;
        }

    .mih-tour-date em {
        border: 1px solid #d8dee8;
        background: #fff;
        border-radius: 999px;
        padding: 6px 11px;
        font-style: normal;
        font-weight: 800;
        font-size: 12px;
        color: #12233d;
        white-space: nowrap;
    }

.mih-tour-body {
    background: #fff;
    border: 1px solid var(--mif-border);
    border-radius: 16px;
    padding: 12px 14px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.mih-tour-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

    .mih-tour-option strong {
        color: #6b4107;
        font-size: 14px;
        font-weight: 900;
    }

    .mih-tour-option span {
        white-space: nowrap;
        line-height: 1;
    }

    .mih-tour-option i {
        color: #f1b500;
        font-size: 13px;
        margin-left: 1px;
    }

.mih-tour-hotel-row {
    display: grid;
    grid-template-columns: 72px 1fr 64px;
    gap: 12px;
    align-items: center;
}

.mih-tour-images {
    display: flex;
    align-items: center;
    min-width: 0;
}

    .mih-tour-images img {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #fff;
        margin-right: -12px;
        box-shadow: 0 4px 10px rgba(0,0,0,.10);
    }

.mih-tour-hotel-row p {
    margin: 0;
    color: #738199;
    line-height: 1.3;
    font-size: 12.8px;
}

.mih-tour-hotel-row b {
    color: var(--mif-text);
    font-weight: 900;
}

.mih-airline-logo {
    max-width: 58px;
    max-height: 28px;
    object-fit: contain;
    justify-self: end;
}

.mih-tour-price {
    border: 1px solid var(--mif-border);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
}

    .mih-tour-price span {
        color: #617089;
        font-size: 13px;
        line-height: 1.2;
    }

    .mih-tour-price div {
        display: flex;
        align-items: baseline;
        gap: 8px;
        flex-shrink: 0;
    }

    .mih-tour-price del {
        color: #9aa8ba;
        font-size: 12px;
        margin: 0;
        white-space: nowrap;
    }

    .mih-tour-price strong {
        font-size: 18px;
        font-weight: 950;
        color: #08152a;
        white-space: nowrap;
    }

/* TABLET */
@media (max-width: 1200px) {
    .mih-tour-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .mih-tour-card {
        min-height: 228px;
    }

    .mih-tour-date {
        grid-template-columns: 70px 1fr auto;
        gap: 12px;
        padding: 11px 12px;
    }

        .mih-tour-date > div {
            width: 66px;
            height: 58px;
        }

    .mih-tour-hotel-row {
        grid-template-columns: 66px 1fr 58px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .mih-tour-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mih-tour-card {
        padding: 12px;
        border-radius: 20px;
        min-height: auto;
    }

    .mih-tour-date {
        grid-template-columns: 64px 1fr;
        gap: 10px;
        padding: 10px;
    }

        .mih-tour-date em {
            grid-column: 1 / -1;
            justify-self: start;
            margin-top: 2px;
        }

        .mih-tour-date > div {
            width: 60px;
            height: 54px;
        }

        .mih-tour-date strong {
            font-size: 20px;
        }

    .mih-tour-body {
        padding: 12px;
    }

    .mih-tour-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .mih-tour-hotel-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mih-airline-logo {
        justify-self: start;
    }

    .mih-tour-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

        .mih-tour-price div {
            width: 100%;
            justify-content: flex-start;
        }
}
/* =========================================================
   MIF VIDEO STORY - CLEAN FINAL
   Yeni class isimleri, çakışma yok, yazı-video birbirine girmez
   ========================================================= */

html body .mif-video-story {
    padding: 32px 0 44px !important;
    background: linear-gradient(180deg, #03101c 0%, #02070d 100%) !important;
    overflow: hidden !important;
}

html body .mif-video-story-card {
    width: min(1500px, calc(100vw - 28px)) !important;
    height: 390px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 43% 57% !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 30px !important;
    background: #02070d !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    box-shadow: 0 26px 58px rgba(0, 0, 0, .30) !important;
}

/* SOL YAZI ALANI */
html body .mif-video-story-content {
    position: relative !important;
    z-index: 3 !important;
    height: 100% !important;
    padding: 36px 40px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    background: #02070d !important;
}

html body .mif-video-story-chip {
    align-self: flex-start !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    padding: 8px 15px !important;
    border-radius: 999px !important;
    background: rgba(183, 122, 18, .14) !important;
    border: 1px solid rgba(242, 200, 111, .24) !important;
    color: #f2c86f !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    margin-bottom: 14px !important;
}

html body .mif-video-story-content small {
    display: block !important;
    color: rgba(255,255,255,.58) !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: .26em !important;
    margin-bottom: 10px !important;
}

html body .mif-video-story-content h2 {
    margin: 0 0 12px !important;
    color: #fff !important;
    font-size: clamp(34px, 3.2vw, 54px) !important;
    line-height: 1.02 !important;
    font-weight: 950 !important;
    letter-spacing: -.035em !important;
    max-width: 560px !important;
}

    html body .mif-video-story-content h2 strong {
        display: block !important;
        color: #f2c86f !important;
    }

html body .mif-video-story-content p {
    margin: 0 0 16px !important;
    color: rgba(255,255,255,.82) !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
    max-width: 560px !important;
}

html body .mif-video-story-points {
    display: grid !important;
    gap: 8px !important;
    margin-bottom: 18px !important;
}

    html body .mif-video-story-points span {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        color: rgba(255,255,255,.92) !important;
        font-size: 13px !important;
        line-height: 1.35 !important;
        font-weight: 750 !important;
    }

    html body .mif-video-story-points i {
        color: #f2c86f !important;
        font-size: 14px !important;
        flex-shrink: 0 !important;
    }

html body .mif-video-story-actions {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
}

    html body .mif-video-story-actions a {
        min-height: 44px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        padding: 10px 18px !important;
        border-radius: 14px !important;
        text-decoration: none !important;
        font-size: 13.5px !important;
        font-weight: 900 !important;
    }

    html body .mif-video-story-actions .primary {
        background: linear-gradient(135deg, #c98c18 0%, #b77a12 100%) !important;
        color: #fff !important;
        box-shadow: 0 14px 26px rgba(183,122,18,.24) !important;
    }

    html body .mif-video-story-actions .secondary {
        background: rgba(255,255,255,.08) !important;
        color: #fff !important;
        border: 1px solid rgba(255,255,255,.14) !important;
    }

/* SAĞ VİDEO ALANI */
html body .mif-video-story-media {
    position: relative !important;
    z-index: 1 !important;
    height: 100% !important;
    overflow: hidden !important;
    background: #000 !important;
}

    html body .mif-video-story-media video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        display: block !important;
        pointer-events: none !important;
        transform: scale(1.02) !important;
    }

        /* Video kontrollerini kapat */
        html body .mif-video-story-media video::-webkit-media-controls {
            display: none !important;
        }

    /* GEÇİŞ: video soldan koyuya doğal erisin */
    html body .mif-video-story-media::before {
        content: "" !important;
        position: absolute !important;
        left: -240px !important;
        top: 0 !important;
        width: 420px !important;
        height: 100% !important;
        z-index: 2 !important;
        pointer-events: none !important;
        background: linear-gradient(90deg, rgba(2,7,13,1) 0%, rgba(2,7,13,.96) 18%, rgba(2,7,13,.82) 36%, rgba(2,7,13,.58) 56%, rgba(2,7,13,.28) 76%, rgba(2,7,13,0) 100%) !important;
        filter: blur(18px) !important;
    }

    /* Videonun üstündeki hafif karartma */
    html body .mif-video-story-media::after {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        z-index: 1 !important;
        pointer-events: none !important;
        background: linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.16) 100%), linear-gradient(90deg, rgba(2,7,13,.10) 0%, rgba(2,7,13,.02) 50%, rgba(2,7,13,.10) 100%) !important;
    }

/* Tablet */
@media (max-width: 1199px) {
    html body .mif-video-story-card {
        height: 360px !important;
        grid-template-columns: 46% 54% !important;
    }

    html body .mif-video-story-content {
        padding: 30px 28px !important;
    }

        html body .mif-video-story-content h2 {
            font-size: clamp(30px, 3vw, 44px) !important;
        }

        html body .mif-video-story-content p {
            font-size: 13.5px !important;
        }
}

/* Mobil */
@media (max-width: 991px) {
    html body .mif-video-story-card {
        height: auto !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    html body .mif-video-story-media {
        order: 1 !important;
        height: 220px !important;
    }

    html body .mif-video-story-content {
        order: 2 !important;
        padding: 24px 18px 22px !important;
    }

    html body .mif-video-story-media::before {
        left: 0 !important;
        top: auto !important;
        bottom: -1px !important;
        width: 100% !important;
        height: 90px !important;
        background: linear-gradient(180deg, rgba(2,7,13,0) 0%, rgba(2,7,13,.34) 35%, rgba(2,7,13,.88) 76%, rgba(2,7,13,1) 100%) !important;
    }

    html body .mif-video-story-content h2 {
        font-size: 30px !important;
    }

    html body .mif-video-story-actions {
        display: grid !important;
    }

        html body .mif-video-story-actions a {
            width: 100% !important;
        }
}
/* =========================================================
   MIF ABOUT TRUST SECTION
   Klasik hakkımızda yerine güven + süreç + istatistik bölümü
   ========================================================= */

html body .mif-about-trust {
    padding: 64px 0;
    background: radial-gradient(circle at left top, rgba(0, 143, 132, .08), transparent 28%), linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
}

html body .mif-about-trust-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .85fr) minmax(330px, .9fr);
    gap: 26px;
    align-items: stretch;
    border: 1px solid #dbe4ef;
    border-radius: 34px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 22px 54px rgba(15, 23, 42, .08);
    padding: 28px;
    overflow: hidden;
}

html body .mif-about-trust-left {
    padding: 14px 8px 14px 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

html body .mif-about-chip {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 15px;
    border-radius: 999px;
    background: #f8ecd4;
    color: #9a6408;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}

html body .mif-about-trust-left h2 {
    margin: 0 0 16px;
    color: #10213d;
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -.035em;
}

    html body .mif-about-trust-left h2 strong {
        display: block;
        color: #008f84;
    }

html body .mif-about-trust-left p {
    margin: 0 0 22px;
    color: #5b6b84;
    font-size: 15.5px;
    line-height: 1.8;
}

html body .mif-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

html body .mif-about-btn-primary,
html body .mif-about-btn-light {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

html body .mif-about-btn-primary {
    background: #008f84;
    color: #fff;
    box-shadow: 0 12px 26px rgba(0, 143, 132, .22);
}

    html body .mif-about-btn-primary:hover {
        background: #006f67;
        color: #fff;
    }

html body .mif-about-btn-light {
    background: #fff;
    color: #10213d;
    border: 1px solid #dbe4ef;
}

html body .mif-about-trust-center {
    display: grid;
    gap: 14px;
}

html body .mif-process-card {
    position: relative;
    border: 1px solid #dbe4ef;
    border-radius: 22px;
    background: radial-gradient(circle at top right, rgba(0, 143, 132, .08), transparent 34%), #fff;
    padding: 20px 20px 18px;
    overflow: hidden;
}

    html body .mif-process-card span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 14px;
        background: #e7fbf8;
        color: #008f84;
        font-size: 15px;
        font-weight: 950;
        margin-bottom: 12px;
    }

    html body .mif-process-card h3 {
        margin: 0 0 7px;
        color: #10213d;
        font-size: 18px;
        font-weight: 950;
    }

    html body .mif-process-card p {
        margin: 0;
        color: #667085;
        font-size: 13.5px;
        line-height: 1.55;
    }

html body .mif-about-trust-right {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 16px;
}

html body .mif-about-image-wrap {
    position: relative;
    min-height: 330px;
    border-radius: 26px;
    overflow: hidden;
    background: #10213d;
    box-shadow: 0 18px 38px rgba(15, 23, 42, .12);
}

    html body .mif-about-image-wrap img {
        width: 100%;
        height: 100%;
        min-height: 330px;
        object-fit: cover;
        display: block;
        filter: saturate(1.05);
    }

    html body .mif-about-image-wrap::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(15, 23, 42, .08) 0%, rgba(15, 23, 42, .72) 100%);
    }

html body .mif-about-image-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
}

    html body .mif-about-image-overlay strong {
        display: block;
        color: #fff;
        font-size: 18px;
        font-weight: 950;
        margin-bottom: 5px;
    }

    html body .mif-about-image-overlay span {
        display: block;
        color: rgba(255, 255, 255, .84);
        font-size: 13.5px;
        line-height: 1.45;
    }

html body .mif-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

    html body .mif-about-stats div {
        border: 1px solid #dbe4ef;
        border-radius: 18px;
        background: #fff;
        padding: 14px 10px;
        text-align: center;
    }

    html body .mif-about-stats strong {
        display: block;
        color: #b37a0b;
        font-size: 24px;
        line-height: 1;
        font-weight: 950;
        margin-bottom: 6px;
    }

    html body .mif-about-stats span {
        display: block;
        color: #667085;
        font-size: 12px;
        line-height: 1.3;
        font-weight: 800;
    }

/* Tablet */
@media (max-width: 1199px) {
    html body .mif-about-trust-card {
        grid-template-columns: 1fr 1fr;
    }

    html body .mif-about-trust-left {
        grid-column: 1 / -1;
    }
}

/* Mobil */
@media (max-width: 768px) {
    html body .mif-about-trust {
        padding: 42px 0;
    }

    html body .mif-about-trust-card {
        grid-template-columns: 1fr;
        padding: 20px;
        border-radius: 26px;
    }

    html body .mif-about-trust-left h2 {
        font-size: 30px;
    }

    html body .mif-about-trust-left p {
        font-size: 14px;
    }

    html body .mif-about-actions {
        display: grid;
    }

    html body .mif-about-btn-primary,
    html body .mif-about-btn-light {
        width: 100%;
    }

    html body .mif-about-image-wrap,
    html body .mif-about-image-wrap img {
        min-height: 260px;
    }

    html body .mif-about-stats {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   MIF BLOG SHOWCASE
   Miftah renklerine uygun blog / rehber bölümü
   ========================================================= */

html body .mif-blog-showcase {
    padding: 68px 0;
    background: radial-gradient(circle at top left, rgba(0, 143, 132, .08), transparent 30%), radial-gradient(circle at bottom right, rgba(183, 122, 18, .08), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
}

html body .mif-blog-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 30px;
}

    html body .mif-blog-head > div {
        max-width: 820px;
    }

    html body .mif-blog-head span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-height: 36px;
        padding: 8px 16px;
        border-radius: 999px;
        background: #f8ecd4;
        color: #9a6408;
        font-size: 13px;
        font-weight: 950;
        margin-bottom: 14px;
    }

    html body .mif-blog-head h2 {
        margin: 0 0 12px;
        color: #10213d;
        font-size: clamp(34px, 3.2vw, 52px);
        line-height: 1.07;
        font-weight: 950;
        letter-spacing: -.04em;
    }

        html body .mif-blog-head h2 strong {
            display: block;
            color: #008f84;
        }

    html body .mif-blog-head p {
        margin: 0;
        max-width: 720px;
        color: #667085;
        font-size: 16px;
        line-height: 1.75;
    }

    html body .mif-blog-head > a {
        min-height: 48px;
        padding: 12px 20px;
        border-radius: 15px;
        background: #b77a12;
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 950;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
        box-shadow: 0 14px 28px rgba(183, 122, 18, .22);
    }

html body .mif-blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .9fr);
    gap: 22px;
    align-items: stretch;
}

html body .mif-blog-featured,
html body .mif-blog-mini,
html body .mif-blog-help-card,
html body .mif-blog-empty {
    text-decoration: none;
    color: inherit;
    border: 1px solid #dbe4ef;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .065);
}

html body .mif-blog-featured {
    display: grid;
    grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
    overflow: hidden;
    border-radius: 30px;
    min-height: 390px;
}

html body .mif-blog-featured-image {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    background: #10213d;
}

    html body .mif-blog-featured-image img {
        width: 100%;
        height: 100%;
        min-height: 390px;
        object-fit: cover;
        display: block;
        transition: .35s ease;
    }

html body .mif-blog-featured:hover .mif-blog-featured-image img {
    transform: scale(1.04);
}

html body .mif-blog-featured-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 33, 61, .05) 0%, rgba(16, 33, 61, .58) 100%);
}

html body .mif-blog-type {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #008f84;
    font-size: 12px;
    font-weight: 950;
}

html body .mif-blog-featured-content {
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    html body .mif-blog-featured-content small {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: #b77a12;
        font-size: 13px;
        font-weight: 900;
        margin-bottom: 12px;
    }

    html body .mif-blog-featured-content h3 {
        margin: 0 0 14px;
        color: #10213d;
        font-size: clamp(28px, 2.4vw, 40px);
        line-height: 1.12;
        font-weight: 950;
        letter-spacing: -.025em;
    }

    html body .mif-blog-featured-content p {
        margin: 0 0 22px;
        color: #667085;
        font-size: 15px;
        line-height: 1.75;
    }

    html body .mif-blog-featured-content strong {
        margin-top: auto;
        color: #008f84;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
        font-weight: 950;
    }

html body .mif-blog-side {
    display: grid;
    gap: 16px;
}

html body .mif-blog-mini {
    display: grid;
    grid-template-columns: 142px minmax(0, 1fr);
    gap: 16px;
    padding: 14px;
    border-radius: 24px;
    overflow: hidden;
    transition: .22s ease;
}

    html body .mif-blog-mini:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 42px rgba(15, 23, 42, .09);
        border-color: rgba(0, 143, 132, .28);
    }

html body .mif-blog-mini-image {
    height: 142px;
    border-radius: 18px;
    overflow: hidden;
    background: #10213d;
}

    html body .mif-blog-mini-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: .35s ease;
    }

html body .mif-blog-mini:hover .mif-blog-mini-image img {
    transform: scale(1.05);
}

html body .mif-blog-mini-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    html body .mif-blog-mini-content span {
        color: #008f84;
        font-size: 12px;
        font-weight: 950;
        margin-bottom: 6px;
    }

    html body .mif-blog-mini-content h3 {
        margin: 0 0 8px;
        color: #10213d;
        font-size: 20px;
        line-height: 1.18;
        font-weight: 950;
    }

    html body .mif-blog-mini-content p {
        margin: 0 0 10px;
        color: #667085;
        font-size: 13.5px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    html body .mif-blog-mini-content small {
        color: #b77a12;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 12.5px;
        font-weight: 900;
    }

html body .mif-blog-help-card {
    border-radius: 24px;
    padding: 24px;
    background: radial-gradient(circle at top right, rgba(0, 143, 132, .12), transparent 36%), linear-gradient(135deg, #10213d 0%, #0e3443 100%);
    color: #fff;
}

    html body .mif-blog-help-card span {
        color: #f6c76a;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 950;
        margin-bottom: 10px;
    }

    html body .mif-blog-help-card h3 {
        color: #fff;
        margin: 0 0 16px;
        font-size: 22px;
        line-height: 1.25;
        font-weight: 950;
    }

    html body .mif-blog-help-card a {
        color: #fff;
        background: #008f84;
        min-height: 42px;
        padding: 10px 16px;
        border-radius: 14px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13.5px;
        font-weight: 950;
    }

html body .mif-blog-empty {
    border-radius: 28px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

    html body .mif-blog-empty span {
        color: #b77a12;
        font-size: 13px;
        font-weight: 950;
    }

    html body .mif-blog-empty h3 {
        margin: 6px 0;
        color: #10213d;
        font-size: 28px;
        font-weight: 950;
    }

    html body .mif-blog-empty p {
        margin: 0;
        color: #667085;
    }

    html body .mif-blog-empty a {
        min-height: 44px;
        padding: 10px 18px;
        border-radius: 14px;
        background: #008f84;
        color: #fff;
        text-decoration: none;
        font-weight: 950;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }

/* Tablet */
@media (max-width: 1199px) {
    html body .mif-blog-layout {
        grid-template-columns: 1fr;
    }

    html body .mif-blog-featured {
        min-height: auto;
    }
}

/* Mobil */
@media (max-width: 768px) {
    html body .mif-blog-showcase {
        padding: 44px 0;
    }

    html body .mif-blog-head {
        display: block;
    }

        html body .mif-blog-head h2 {
            font-size: 30px;
        }

        html body .mif-blog-head p {
            font-size: 14px;
        }

        html body .mif-blog-head > a {
            margin-top: 18px;
            width: 100%;
            justify-content: center;
        }

    html body .mif-blog-featured {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    html body .mif-blog-featured-image,
    html body .mif-blog-featured-image img {
        min-height: 240px;
    }

    html body .mif-blog-featured-content {
        padding: 22px;
    }

        html body .mif-blog-featured-content h3 {
            font-size: 25px;
        }

    html body .mif-blog-mini {
        grid-template-columns: 1fr;
    }

    html body .mif-blog-mini-image {
        height: 210px;
    }

    html body .mif-blog-empty {
        display: block;
    }

        html body .mif-blog-empty a {
            margin-top: 18px;
            width: 100%;
            justify-content: center;
        }
}
/* =========================================================
   MIF FAQ SECTION
   FAQ varsa admin verisi, yoksa hazır sorular
   ========================================================= */

html body .mif-faq-section {
    padding: 64px 0;
    background: radial-gradient(circle at top left, rgba(0, 143, 132, .08), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
}

html body .mif-faq-head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

    html body .mif-faq-head > span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-height: 36px;
        padding: 8px 16px;
        border-radius: 999px;
        background: #f8ecd4;
        color: #9a6408;
        font-size: 13px;
        font-weight: 950;
        margin-bottom: 14px;
    }

    html body .mif-faq-head h2 {
        margin: 0 0 12px;
        color: #10213d;
        font-size: clamp(34px, 3.2vw, 52px);
        line-height: 1.08;
        font-weight: 950;
        letter-spacing: -.035em;
    }

    html body .mif-faq-head p {
        margin: 0 auto;
        max-width: 660px;
        color: #667085;
        font-size: 15.5px;
        line-height: 1.7;
    }

html body .mif-faq-layout {
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.35fr);
    gap: 24px;
    align-items: start;
}

html body .mif-faq-left {
    position: sticky;
    top: 100px;
    border-radius: 30px;
    padding: 30px;
    background: radial-gradient(circle at top right, rgba(0, 143, 132, .16), transparent 38%), linear-gradient(135deg, #10213d 0%, #0d3441 100%);
    color: #fff;
    box-shadow: 0 20px 46px rgba(15, 23, 42, .16);
    overflow: hidden;
}

    html body .mif-faq-left::after {
        content: "";
        position: absolute;
        right: -55px;
        bottom: -55px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: rgba(246, 199, 106, .16);
    }

html body .mif-faq-mini {
    display: inline-flex;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(246, 199, 106, .14);
    color: #f6c76a;
    font-size: 12px;
    font-weight: 950;
    margin-bottom: 14px;
}

html body .mif-faq-left h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: #fff;
    font-size: 30px;
    line-height: 1.12;
    font-weight: 950;
}

html body .mif-faq-left p {
    position: relative;
    z-index: 2;
    margin: 0 0 20px;
    color: rgba(255,255,255,.82);
    font-size: 14.5px;
    line-height: 1.7;
}

html body .mif-faq-left a {
    position: relative;
    z-index: 2;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 14px;
    background: #008f84;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 950;
}

html body .mif-faq-list {
    display: grid;
    gap: 14px;
}

    html body .mif-faq-list details {
        border: 1px solid #dbe4ef;
        border-radius: 20px;
        background: #fff;
        box-shadow: 0 12px 28px rgba(15, 23, 42, .045);
        overflow: hidden;
        transition: .22s ease;
    }

        html body .mif-faq-list details[open] {
            border-color: rgba(0, 143, 132, .34);
            box-shadow: 0 18px 38px rgba(15, 23, 42, .08);
        }

    html body .mif-faq-list summary {
        list-style: none;
        cursor: pointer;
        padding: 20px 22px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        align-items: center;
    }

        html body .mif-faq-list summary::-webkit-details-marker {
            display: none;
        }

        html body .mif-faq-list summary small {
            display: inline-flex;
            padding: 6px 10px;
            border-radius: 999px;
            background: #e7fbf8;
            color: #008f84;
            font-size: 11px;
            font-weight: 950;
            white-space: nowrap;
        }

        html body .mif-faq-list summary span {
            color: #10213d;
            font-size: 16px;
            line-height: 1.35;
            font-weight: 950;
        }

        html body .mif-faq-list summary i {
            width: 34px;
            height: 34px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #f8ecd4;
            color: #9a6408;
            transition: .22s ease;
        }

    html body .mif-faq-list details[open] summary i {
        transform: rotate(45deg);
        background: #008f84;
        color: #fff;
    }

html body .mif-faq-answer {
    padding: 0 22px 20px 22px;
    color: #667085;
    font-size: 14.5px;
    line-height: 1.75;
}

    html body .mif-faq-answer p {
        margin: 0;
    }

/* Tablet */
@media (max-width: 991px) {
    html body .mif-faq-layout {
        grid-template-columns: 1fr;
    }

    html body .mif-faq-left {
        position: relative;
        top: auto;
    }
}

/* Mobil */
@media (max-width: 575px) {
    html body .mif-faq-section {
        padding: 44px 0;
    }

    html body .mif-faq-head {
        text-align: left;
        margin-bottom: 24px;
    }

        html body .mif-faq-head h2 {
            font-size: 30px;
        }

        html body .mif-faq-head p {
            font-size: 14px;
        }

    html body .mif-faq-left {
        padding: 24px;
        border-radius: 24px;
    }

        html body .mif-faq-left h3 {
            font-size: 25px;
        }

    html body .mif-faq-list summary {
        padding: 18px;
        grid-template-columns: 1fr auto;
    }

        html body .mif-faq-list summary small {
            grid-column: 1 / -1;
            justify-self: start;
        }

        html body .mif-faq-list summary span {
            font-size: 15px;
        }

    html body .mif-faq-answer {
        padding: 0 18px 18px;
        font-size: 14px;
    }
}
/* =========================================================
   FAQ BALANCE FIX
   Kategori sabit genişlik + soru yazıları hizalı
   ========================================================= */

html body .mif-faq-section {
    padding: 58px 0 54px !important;
}

html body .mif-faq-head {
    margin-bottom: 34px !important;
}

    html body .mif-faq-head h2 {
        font-size: clamp(40px, 4vw, 64px) !important;
        line-height: 1.02 !important;
        margin-bottom: 14px !important;
    }

    html body .mif-faq-head p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

/* Sol destek kartını biraz toparla */
html body .mif-faq-layout {
    grid-template-columns: 0.78fr 1.32fr !important;
    gap: 32px !important;
    align-items: start !important;
}

html body .mif-faq-left {
    padding: 34px 36px !important;
    min-height: 330px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    border-radius: 34px !important;
}

    html body .mif-faq-left h3 {
        font-size: 34px !important;
        line-height: 1.18 !important;
        max-width: 430px !important;
    }

    html body .mif-faq-left p {
        max-width: 470px !important;
        font-size: 15px !important;
        line-height: 1.75 !important;
    }

/* Sağ FAQ listesi */
html body .mif-faq-list {
    gap: 18px !important;
}

    html body .mif-faq-list details {
        border-radius: 22px !important;
    }

    /* Asıl dengeleme burası */
    html body .mif-faq-list summary {
        min-height: 92px !important;
        padding: 18px 26px !important;
        display: grid !important;
        grid-template-columns: 122px minmax(0, 1fr) 42px !important;
        gap: 18px !important;
        align-items: center !important;
    }

        /* Kategoriler artık sabit genişlikte */
        html body .mif-faq-list summary small {
            width: 112px !important;
            min-width: 112px !important;
            height: 36px !important;
            padding: 0 12px !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            border-radius: 999px !important;
            background: #e7fbf8 !important;
            color: #008f84 !important;
            font-size: 12px !important;
            line-height: 1 !important;
            font-weight: 950 !important;
            text-align: center !important;
            white-space: nowrap !important;
        }

        /* Soru yazısı hep aynı yerden başlar */
        html body .mif-faq-list summary span {
            display: block !important;
            color: #071c3a !important;
            font-size: 20px !important;
            line-height: 1.35 !important;
            font-weight: 950 !important;
            letter-spacing: -.015em !important;
        }

        /* Plus butonu sabit */
        html body .mif-faq-list summary i {
            width: 42px !important;
            height: 42px !important;
            border-radius: 15px !important;
            font-size: 18px !important;
            justify-self: end !important;
        }

/* Açılan cevap daha düzgün dursun */
html body .mif-faq-answer {
    padding: 0 26px 24px 166px !important;
    color: #667085 !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
}

/* Cevap açılınca kart daha temiz büyüsün */
html body .mif-faq-list details[open] summary {
    padding-bottom: 14px !important;
}

/* Tablet */
@media (max-width: 991px) {
    html body .mif-faq-layout {
        grid-template-columns: 1fr !important;
    }

    html body .mif-faq-left {
        position: relative !important;
        top: auto !important;
        min-height: auto !important;
    }
}

/* Mobil */
@media (max-width: 575px) {
    html body .mif-faq-head h2 {
        font-size: 32px !important;
    }

    html body .mif-faq-list summary {
        min-height: auto !important;
        padding: 18px !important;
        grid-template-columns: 1fr 40px !important;
        gap: 10px 14px !important;
    }

        html body .mif-faq-list summary small {
            grid-column: 1 / -1 !important;
            width: auto !important;
            min-width: 92px !important;
            justify-self: start !important;
        }

        html body .mif-faq-list summary span {
            font-size: 16px !important;
        }

        html body .mif-faq-list summary i {
            width: 40px !important;
            height: 40px !important;
        }

    html body .mif-faq-answer {
        padding: 0 18px 18px !important;
        font-size: 14px !important;
    }
}
/* =========================================================
   MIFTAH NEW HEADER
   Üst sosyal bar + slogan bar + temiz logo navbar
   ========================================================= */

html body .mifx-header {
    position: relative;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #dbe4ef;
}

/* EN ÜST BAR */
html body .mifx-socialbar {
    background: #10213d;
    color: #fff;
    min-height: 42px;
    display: flex;
    align-items: center;
}

html body .mifx-socialbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

html body .mifx-social-left,
html body .mifx-social-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

html body .mifx-socialbar a {
    color: rgba(255,255,255,.88);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: .2s ease;
}

    html body .mifx-socialbar a:hover {
        color: #f6c76a;
    }

html body .mifx-social-right > a:not(.mifx-top-phone) {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    font-size: 14px;
}

html body .mifx-top-phone {
    min-height: 31px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(0, 143, 132, .20);
    border: 1px solid rgba(0, 143, 132, .42);
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 950 !important;
}

/* SLOGAN BAR */
html body .mifx-sloganbar {
    background: radial-gradient(circle at left, rgba(0, 143, 132, .10), transparent 28%), linear-gradient(90deg, #f8fbff 0%, #ffffff 100%);
    border-bottom: 1px solid #dbe4ef;
}

html body .mifx-sloganbar-inner {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

html body .mifx-slogan-text {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #10213d;
    font-size: 14px;
    font-weight: 950;
}

    html body .mifx-slogan-text i {
        color: #b77a12;
    }

html body .mifx-slogan-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

    html body .mifx-slogan-actions a {
        min-height: 34px;
        padding: 7px 15px;
        border-radius: 999px;
        background: #f8ecd4;
        color: #9a6408;
        border: 1px solid rgba(183, 122, 18, .20);
        text-decoration: none;
        font-size: 13px;
        font-weight: 950;
        display: inline-flex;
        align-items: center;
        gap: 7px;
    }

    html body .mifx-slogan-actions small {
        color: #667085;
        font-size: 12px;
        font-weight: 800;
    }

/* ANA NAVBAR */
html body .mifx-navbar {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
}

html body .mifx-navbar-inner {
    min-height: 88px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
}

html body .mifx-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    min-width: 260px;
}

html body .mifx-logo-card {
    width: 92px;
    height: 70px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #dbe4ef;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    overflow: hidden;
    flex-shrink: 0;
}

    html body .mifx-logo-card img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
    }

html body .mifx-brand-text {
    display: grid;
    gap: 2px;
}

    html body .mifx-brand-text strong {
        color: #10213d;
        font-size: 20px;
        line-height: 1.1;
        font-weight: 950;
        letter-spacing: -.02em;
    }

    html body .mifx-brand-text small {
        color: #667085;
        font-size: 12.5px;
        font-weight: 750;
    }

html body .mifx-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

    html body .mifx-menu a {
        min-height: 42px;
        padding: 10px 14px;
        border-radius: 999px;
        color: #26364f;
        text-decoration: none;
        font-size: 15px;
        font-weight: 900;
        transition: .2s ease;
        white-space: nowrap;
    }

        html body .mifx-menu a:hover {
            background: #e7fbf8;
            color: #008f84;
        }

html body .mifx-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

html body .mifx-wp-btn {
    min-height: 46px;
    padding: 11px 18px;
    border-radius: 999px;
    background: #008f84;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 12px 24px rgba(0, 143, 132, .20);
}

    html body .mifx-wp-btn:hover {
        background: #00776e;
        color: #fff;
    }

html body .mifx-mobile-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    border: 1px solid #dbe4ef;
    background: #fff;
    color: #10213d;
    font-size: 24px;
}

/* MOBİL MENÜ */
html body .mifx-mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #dbe4ef;
    padding: 12px 16px 18px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, .08);
}

    html body .mifx-mobile-menu.active {
        display: grid;
        gap: 8px;
    }

    html body .mifx-mobile-menu > a {
        min-height: 44px;
        padding: 11px 14px;
        border-radius: 14px;
        background: #f5f9fc;
        color: #10213d;
        text-decoration: none;
        font-size: 15px;
        font-weight: 900;
    }

html body .mifx-mobile-contact {
    display: grid;
    gap: 8px;
    padding-top: 8px;
}

    html body .mifx-mobile-contact a {
        min-height: 44px;
        padding: 11px 14px;
        border-radius: 14px;
        background: #10213d;
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 900;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

        html body .mifx-mobile-contact a:last-child {
            background: #008f84;
        }

/* TABLET */
@media (max-width: 1199px) {
    html body .mifx-navbar-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    html body .mifx-menu,
    html body .mifx-wp-btn {
        display: none;
    }

    html body .mifx-mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* MOBİL */
@media (max-width: 768px) {
    html body .mifx-socialbar-inner {
        justify-content: center;
    }

    html body .mifx-social-left {
        display: none;
    }

    html body .mifx-social-right {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }

    html body .mifx-top-phone {
        padding: 7px 10px;
        font-size: 12px !important;
    }

    html body .mifx-sloganbar-inner {
        min-height: auto;
        padding: 9px 0;
        display: grid;
        gap: 8px;
        text-align: center;
        justify-content: center;
    }

    html body .mifx-slogan-text {
        justify-content: center;
        font-size: 13px;
    }

    html body .mifx-slogan-actions {
        justify-content: center;
    }

        html body .mifx-slogan-actions small {
            display: none;
        }

    html body .mifx-navbar-inner {
        min-height: 78px;
    }

    html body .mifx-brand {
        min-width: 0;
        gap: 10px;
    }

    html body .mifx-logo-card {
        width: 76px;
        height: 58px;
        border-radius: 18px;
        padding: 7px 9px;
    }

    html body .mifx-brand-text strong {
        font-size: 16px;
    }

    html body .mifx-brand-text small {
        display: none;
    }
}

/* ÇOK KÜÇÜK EKRAN */
@media (max-width: 420px) {
    html body .mifx-brand-text {
        display: none;
    }

    html body .mifx-social-right > a:not(.mifx-top-phone) {
        width: 28px;
        height: 28px;
    }
}
/* =========================================================
   HEADER LOGO PREMIUM FIX
   Logo küçük kalmasın, ama navbarı da bozmasın
   ========================================================= */

html body .mifx-navbar {
    overflow: visible !important;
}

html body .mifx-navbar-inner {
    min-height: 108px !important;
    overflow: visible !important;
}

html body .mifx-brand-premium {
    position: relative !important;
    min-width: 360px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 18px !important;
    text-decoration: none !important;
    z-index: 5 !important;
}

html body .mifx-logo-emblem {
    width: 142px !important;
    height: 112px !important;
    border-radius: 0 0 42px 42px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
    border: 1px solid rgba(183, 122, 18, .32) !important;
    border-top: 0 !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .15) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px 18px 18px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    margin-top: -18px !important;
}

    html body .mifx-logo-emblem img {
        max-width: 100% !important;
        max-height: 90px !important;
        object-fit: contain !important;
        display: block !important;
    }

html body .mifx-brand-info {
    display: grid !important;
    gap: 4px !important;
}

    html body .mifx-brand-info strong {
        color: #10213d !important;
        font-size: 24px !important;
        line-height: 1.05 !important;
        font-weight: 950 !important;
        letter-spacing: -.025em !important;
    }

    html body .mifx-brand-info small {
        color: #667085 !important;
        font-size: 13.5px !important;
        line-height: 1.3 !important;
        font-weight: 800 !important;
    }

html body .mifx-menu {
    justify-content: flex-end !important;
}

    html body .mifx-menu a {
        font-size: 15px !important;
        padding: 10px 13px !important;
    }

/* Tablet */
@media (max-width: 1199px) {
    html body .mifx-brand-premium {
        min-width: auto !important;
    }

    html body .mifx-logo-emblem {
        width: 122px !important;
        height: 94px !important;
        border-radius: 0 0 34px 34px !important;
        padding: 12px 15px 15px !important;
        margin-top: -14px !important;
    }

        html body .mifx-logo-emblem img {
            max-height: 76px !important;
        }

    html body .mifx-brand-info strong {
        font-size: 20px !important;
    }
}

/* Mobil */
@media (max-width: 768px) {
    html body .mifx-navbar-inner {
        min-height: 88px !important;
    }

    html body .mifx-logo-emblem {
        width: 98px !important;
        height: 76px !important;
        border-radius: 0 0 26px 26px !important;
        padding: 9px 12px 12px !important;
        margin-top: -10px !important;
    }

        html body .mifx-logo-emblem img {
            max-height: 60px !important;
        }

    html body .mifx-brand-info strong {
        font-size: 17px !important;
    }

    html body .mifx-brand-info small {
        display: none !important;
    }
}

/* Çok küçük telefon */
@media (max-width: 420px) {
    html body .mifx-logo-emblem {
        width: 90px !important;
        height: 70px !important;
    }

    html body .mifx-brand-info {
        display: none !important;
    }
}
/* LOGO FINAL - SADECE CSS */

html body .miftah-navbar-inner {
    min-height: 86px !important;
}

html body .miftah-brand {
    min-width: 230px !important;
    gap: 0 !important;
}

html body .miftah-brand-text {
    display: none !important;
}

html body .miftah-brand-logo-wrap {
    width: 210px !important;
    height: 78px !important;
    margin: 0 !important;
    padding: 8px 14px !important;
    border-radius: 18px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

    html body .miftah-brand-logo-wrap img {
        width: 100% !important;
        height: 100% !important;
        max-width: 210px !important;
        max-height: 78px !important;
        object-fit: contain !important;
    }

    html body .miftah-brand-logo-wrap span {
        width: 64px !important;
        height: 64px !important;
    }

/* Menü logo yüzünden sıkışmasın */
html body .miftah-main-menu {
    gap: 24px !important;
}

    html body .miftah-main-menu a {
        font-size: 16px !important;
    }

/* Tablet */
@media (max-width: 1199px) {
    html body .miftah-brand {
        min-width: 190px !important;
    }

    html body .miftah-brand-logo-wrap {
        width: 180px !important;
        height: 68px !important;
    }

        html body .miftah-brand-logo-wrap img {
            max-width: 180px !important;
            max-height: 68px !important;
        }
}

/* Mobil */
@media (max-width: 991px) {
    html body .miftah-navbar-inner {
        min-height: 76px !important;
    }

    html body .miftah-brand {
        min-width: 150px !important;
    }

    html body .miftah-brand-logo-wrap {
        width: 150px !important;
        height: 58px !important;
        padding: 6px 8px !important;
    }

        html body .miftah-brand-logo-wrap img {
            max-width: 150px !important;
            max-height: 58px !important;
        }
}
/* FINAL MIFTAH FOOTER */

.miftah-final-footer,
.miftah-final-footer * {
    box-sizing: border-box;
}

.miftah-final-footer {
    background: #06111f;
    color: #fff;
    overflow: hidden;
}

    .miftah-final-footer a {
        text-decoration: none;
    }

.miftah-final-footer-main {
    padding: 76px 0 38px;
    background: radial-gradient(circle at 8% 8%, rgba(214, 173, 53, .12), transparent 30%), radial-gradient(circle at 90% 14%, rgba(0, 143, 132, .14), transparent 28%), linear-gradient(180deg, #0d1728 0%, #06111f 100%);
}

.miftah-final-footer-grid {
    display: grid;
    grid-template-columns: 1.28fr .82fr 1.04fr 1.1fr;
    gap: 54px;
    align-items: flex-start;
}

.miftah-final-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 24px;
}

    .miftah-final-logo img {
        max-width: 200px;
        max-height: 125px;
        object-fit: contain;
        display: block;
    }

    .miftah-final-logo strong {
        color: #fff;
        font-size: 34px;
        line-height: 1.1;
        font-weight: 950;
    }

.miftah-final-brand p {
    max-width: 380px;
    color: rgba(255, 255, 255, .78);
    font-size: 15.5px;
    line-height: 1.85;
    margin: 0 0 24px;
}

.miftah-final-certificate {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 12px;
    background: rgba(214, 173, 53, .10);
    border: 1px solid rgba(214, 173, 53, .36);
}

    .miftah-final-certificate i {
        color: #d6ad35;
        font-size: 22px;
    }

    .miftah-final-certificate small {
        display: block;
        color: rgba(255, 255, 255, .58);
        font-size: 11px;
        font-weight: 850;
        margin-bottom: 2px;
    }

    .miftah-final-certificate strong {
        color: #fff;
        font-size: 16px;
        font-weight: 950;
    }

.miftah-final-menu h4,
.miftah-final-contact h4 {
    position: relative;
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 950;
    margin: 0 0 26px;
    padding-bottom: 13px;
}

    .miftah-final-menu h4::after,
    .miftah-final-contact h4::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 38px;
        height: 2px;
        border-radius: 20px;
        background: #d6ad35;
    }

.miftah-final-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 28px;
    padding: 5px 12px;
    border-radius: 5px;
    border: 1px solid rgba(214, 173, 53, .40);
    color: #d6ad35;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: 16px;
}

.miftah-final-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.miftah-final-menu li {
    margin-bottom: 14px;
}

.miftah-final-menu a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .82);
    font-size: 15.5px;
    font-weight: 750;
    line-height: 1.42;
    transition: .2s ease;
}

    .miftah-final-menu a::before {
        content: "›";
        color: #d6ad35;
        font-size: 23px;
        line-height: 1;
        font-weight: 400;
    }

    .miftah-final-menu a:hover {
        color: #fff;
        transform: translateX(4px);
    }

.miftah-final-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 18px;
}

    .miftah-final-contact-item i {
        width: 20px;
        flex-shrink: 0;
        color: #d6ad35;
        font-size: 17px;
        line-height: 1.6;
    }

    .miftah-final-contact-item p,
    .miftah-final-contact-item a {
        color: rgba(255, 255, 255, .84);
        font-size: 15.5px;
        line-height: 1.65;
        font-weight: 750;
        margin: 0;
    }

        .miftah-final-contact-item a:hover {
            color: #fff;
        }

.miftah-final-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

    .miftah-final-socials a {
        width: 38px;
        height: 38px;
        border-radius: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, .84);
        background: rgba(255, 255, 255, .055);
        border: 1px solid rgba(255, 255, 255, .11);
        transition: .2s ease;
    }

        .miftah-final-socials a:hover {
            color: #fff;
            border-color: rgba(214, 173, 53, .60);
            background: rgba(214, 173, 53, .13);
            transform: translateY(-2px);
        }

.miftah-final-cta {
    margin-top: 54px;
    padding: 22px 28px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .035);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

    .miftah-final-cta h5 {
        color: #fff;
        font-size: 18px;
        font-weight: 950;
        margin: 0 0 5px;
    }

    .miftah-final-cta p {
        color: rgba(255, 255, 255, .56);
        font-size: 14px;
        font-weight: 700;
        margin: 0;
    }

.miftah-final-cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.miftah-final-btn-gold,
.miftah-final-btn-whatsapp {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 950;
    transition: .2s ease;
}

.miftah-final-btn-gold {
    background: #d6ad35;
    color: #111827;
}

.miftah-final-btn-whatsapp {
    background: #20c86b;
    color: #fff;
}

    .miftah-final-btn-gold:hover,
    .miftah-final-btn-whatsapp:hover {
        color: #fff;
        transform: translateY(-2px);
    }

.miftah-final-btn-gold:hover {
    background: #b98f20;
}

.miftah-final-btn-whatsapp:hover {
    background: #13a856;
}

.miftah-final-divider {
    height: 1px;
    background: rgba(255, 255, 255, .10);
    margin: 46px 0 28px;
}

.miftah-final-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.miftah-final-copy p {
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 6px;
}

.miftah-final-copy span {
    display: block;
    color: rgba(255, 255, 255, .58);
    font-size: 13.5px;
    font-weight: 700;
}

.miftah-final-tursab {
    width: 245px;
    min-height: 84px;
    padding: 13px 16px;
    border-radius: 6px;
    background: #fff;
    color: #111827;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .20);
    position: relative;
    overflow: hidden;
}

    .miftah-final-tursab::after {
        content: "";
        position: absolute;
        right: -26px;
        top: -26px;
        width: 82px;
        height: 82px;
        border-radius: 50%;
        background: rgba(0, 0, 0, .06);
    }

    .miftah-final-tursab small {
        display: block;
        color: #e1251b;
        font-size: 22px;
        line-height: 1;
        font-weight: 950;
        margin-bottom: 5px;
    }

    .miftah-final-tursab strong {
        display: block;
        color: #e1251b;
        font-size: 12px;
        line-height: 1.25;
        font-weight: 950;
        text-transform: uppercase;
        margin-bottom: 5px;
    }

    .miftah-final-tursab span {
        display: block;
        color: #111827;
        font-size: 13px;
        font-weight: 900;
    }

.miftah-final-credit {
    background: #050b13;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 18px 0;
}

.miftah-final-credit-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.miftah-final-policy {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

    .miftah-final-policy a,
    .miftah-final-policy span,
    .miftah-final-credit-inner p {
        color: rgba(255, 255, 255, .50);
        font-size: 13.5px;
        font-weight: 700;
        margin: 0;
    }

        .miftah-final-policy a:hover {
            color: #fff;
        }

        .miftah-final-credit-inner p a {
            color: #d6ad35;
            font-weight: 950;
            letter-spacing: .03em;
        }

        .miftah-final-credit-inner p span {
            margin: 0 5px;
            color: rgba(255, 255, 255, .32);
        }

@media (max-width: 1199px) {
    .miftah-final-footer-grid {
        grid-template-columns: 1.2fr .8fr 1fr 1fr;
        gap: 34px;
    }

    .miftah-final-logo img {
        max-width: 175px;
    }
}

@media (max-width: 991px) {
    .miftah-final-footer-main {
        padding: 54px 0 32px;
    }

    .miftah-final-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 34px;
    }

    .miftah-final-brand p {
        max-width: 100%;
    }

    .miftah-final-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .miftah-final-cta-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .miftah-final-btn-gold,
    .miftah-final-btn-whatsapp {
        flex: 1;
        min-width: 210px;
    }

    .miftah-final-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .miftah-final-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .miftah-final-logo img {
        max-width: 155px;
    }

    .miftah-final-menu h4,
    .miftah-final-contact h4 {
        font-size: 20px;
        margin-bottom: 22px;
    }

    .miftah-final-cta {
        margin-top: 40px;
        padding: 20px;
    }

    .miftah-final-btn-gold,
    .miftah-final-btn-whatsapp {
        width: 100%;
        min-width: 100%;
    }

    .miftah-final-tursab {
        width: 100%;
    }

    .miftah-final-credit-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
.mifx-logo-emblem.logo-error::after {
    content: "M";
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--miftah-gold-soft);
    color: var(--miftah-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: 950;
}
.mifx-logo-fallback,
.mifx-logo-emblem.logo-error::after {
    content: "M";
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--miftah-gold-soft);
    color: var(--miftah-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: 950;
}
#miftahTourResultsArea {
    transition: opacity .2s ease, transform .2s ease;
}

    #miftahTourResultsArea.is-loading {
        opacity: .45;
        pointer-events: none;
        transform: translateY(4px);
    }

.miftah-tour-filter-bar.is-loading {
    pointer-events: none;
}
/* =========================================================
   HOME MOBILE FIX - HERO + SEARCH + TOUR CARDS
   En alta ekle.
========================================================= */

@media (max-width: 575px) {
    .mih-hero {
        padding: 12px 0 34px !important;
        background: #f3f7fb !important;
    }

        .mih-hero .container,
        .mih-tours-section .container {
            padding-left: 12px !important;
            padding-right: 12px !important;
        }

    .mih-hero-card {
        min-height: 430px !important;
        height: 430px !important;
        border-radius: 22px !important;
        overflow: hidden !important;
        background-position: center !important;
        background-size: cover !important;
    }

    .mih-hero-content {
        position: relative !important;
        min-height: 430px !important;
        height: 430px !important;
        padding: 28px 22px 92px !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .mih-hero-left {
        width: 100% !important;
        max-width: 100% !important;
        padding-top: 0 !important;
    }

        .mih-hero-left h1 {
            font-size: 32px !important;
            line-height: 1.05 !important;
            margin-bottom: 12px !important;
            max-width: 100% !important;
        }

        .mih-hero-left p {
            font-size: 14px !important;
            line-height: 1.55 !important;
            max-width: 100% !important;
            margin-bottom: 14px !important;
        }

    .mih-hero-badge {
        font-size: 12px !important;
        min-height: 30px !important;
        padding: 7px 12px !important;
        margin-bottom: 12px !important;
    }

    .mih-hero-actions {
        width: 100% !important;
        margin-top: 14px !important;
        display: grid !important;
        gap: 10px !important;
    }

        .mih-hero-actions a,
        .mih-btn-primary,
        .mih-btn-ghost {
            width: 100% !important;
            min-height: 44px !important;
            border-radius: 13px !important;
            font-size: 14px !important;
            justify-content: center !important;
            padding: 10px 14px !important;
        }

    .mih-hero-right,
    .mih-premium-label,
    .mih-signature-box {
        display: none !important;
    }

    .mih-hero-arrow {
        width: 42px !important;
        height: 42px !important;
        top: auto !important;
        bottom: 20px !important;
        transform: none !important;
        z-index: 5 !important;
    }

        .mih-hero-arrow.left {
            left: 18px !important;
        }

        .mih-hero-arrow.right {
            right: 18px !important;
        }

    /* Arama kartı */

    .mih-search-card {
        margin: -24px 10px 0 !important;
        padding: 18px !important;
        border-radius: 22px !important;
        position: relative !important;
        z-index: 10 !important;
        max-width: calc(100% - 20px) !important;
        overflow: hidden !important;
    }

    .mih-search-head {
        gap: 10px !important;
        margin-bottom: 18px !important;
    }

        .mih-search-head strong {
            font-size: 14px !important;
            letter-spacing: .04em !important;
        }

    .mih-search-form {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        width: 100% !important;
    }

    .mih-search-months,
    .mih-search-filter-group,
    .mih-filter-controls,
    .mih-filter-controls label {
        width: 100% !important;
        min-width: 0 !important;
    }

    .mih-month-buttons {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        overflow-x: auto !important;
        padding-bottom: 4px !important;
        max-width: 100% !important;
    }

        .mih-month-buttons button {
            flex: 0 0 auto !important;
            min-width: 54px !important;
            height: 42px !important;
            border-radius: 12px !important;
        }

    .mih-filter-title-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
    }

        .mih-filter-title-row span {
            font-size: 14px !important;
        }

        .mih-filter-title-row small {
            font-size: 12px !important;
        }

    .mih-filter-controls {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

        .mih-filter-controls select,
        .mih-search-form select,
        .mih-search-form input {
            width: 100% !important;
            max-width: 100% !important;
            height: 48px !important;
            border-radius: 14px !important;
            font-size: 14px !important;
            padding: 0 14px !important;
            box-sizing: border-box !important;
        }

    .mih-search-submit {
        width: 100% !important;
        min-height: 48px !important;
        border-radius: 14px !important;
    }

    /* Umre Turları ve Fiyatları başlığı */

    .mih-tours-section {
        padding: 48px 0 !important;
    }

    .mih-section-title-row {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        align-items: center !important;
        gap: 12px !important;
        margin-bottom: 24px !important;
    }

        .mih-section-title-row > div {
            min-width: 0 !important;
        }

    .mih-chip {
        font-size: 12px !important;
        padding: 8px 12px !important;
        border-radius: 10px !important;
        margin-bottom: 14px !important;
    }

    .mih-section-title-row h2 {
        font-size: 28px !important;
        line-height: 1.12 !important;
        margin-bottom: 8px !important;
    }

    .mih-section-title-row p {
        font-size: 15px !important;
        line-height: 1.55 !important;
        margin: 0 !important;
    }

    .mih-all-btn {
        width: 104px !important;
        min-width: 104px !important;
        min-height: 58px !important;
        border-radius: 14px !important;
        padding: 8px 12px !important;
        font-size: 14px !important;
        line-height: 1.25 !important;
        text-align: center !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
    }

    /* Tur kartları */

    .mih-tour-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .mih-tour-card {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 12px !important;
        border-radius: 20px !important;
        overflow: hidden !important;
    }

    .mih-tour-date {
        width: 100% !important;
        min-width: 0 !important;
        display: grid !important;
        grid-template-columns: 62px 1fr auto !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 12px !important;
        border-radius: 16px !important;
    }

        .mih-tour-date > div {
            width: 54px !important;
            height: 54px !important;
            border-radius: 14px !important;
        }

            .mih-tour-date > div strong {
                font-size: 20px !important;
                line-height: 1 !important;
            }

            .mih-tour-date > div span {
                font-size: 11px !important;
            }

        .mih-tour-date p {
            min-width: 0 !important;
            margin: 0 !important;
        }

            .mih-tour-date p b {
                font-size: 14px !important;
                display: block !important;
            }

            .mih-tour-date p small {
                font-size: 12px !important;
            }

        .mih-tour-date em {
            width: auto !important;
            min-width: 45px !important;
            height: 34px !important;
            border-radius: 999px !important;
            font-size: 12px !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
        }

    .mih-tour-body {
        width: 100% !important;
        min-width: 0 !important;
        padding: 12px !important;
        border-radius: 16px !important;
    }

    .mih-tour-option {
        margin-bottom: 14px !important;
    }

        .mih-tour-option strong {
            font-size: 15px !important;
        }

    .mih-tour-hotel-row {
        display: grid !important;
        grid-template-columns: 58px 1fr !important;
        gap: 12px !important;
        align-items: center !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .mih-tour-images {
        width: 58px !important;
        min-width: 58px !important;
        display: flex !important;
    }

        .mih-tour-images img {
            width: 42px !important;
            height: 42px !important;
            border-radius: 50% !important;
            object-fit: cover !important;
        }

            .mih-tour-images img + img {
                margin-left: -18px !important;
            }

    .mih-tour-hotel-row p {
        min-width: 0 !important;
        font-size: 13px !important;
        line-height: 1.45 !important;
        margin: 0 !important;
        word-break: break-word !important;
    }

        .mih-tour-hotel-row p b {
            display: inline !important;
            font-size: 13px !important;
        }

    .mih-airline-logo {
        grid-column: 1 / -1 !important;
        max-width: 92px !important;
        max-height: 36px !important;
        margin-top: 8px !important;
    }

    .mih-tour-price {
        margin-top: 14px !important;
        padding-top: 12px !important;
        display: grid !important;
        gap: 8px !important;
    }

        .mih-tour-price span {
            font-size: 12px !important;
        }

        .mih-tour-price div {
            display: flex !important;
            flex-direction: column !important;
            align-items: flex-start !important;
            gap: 2px !important;
        }

        .mih-tour-price strong {
            font-size: 22px !important;
        }

        .mih-tour-price del {
            font-size: 13px !important;
        }
}

@media (max-width: 420px) {
    .mih-hero-card {
        height: 400px !important;
        min-height: 400px !important;
    }

    .mih-hero-content {
        height: 400px !important;
        min-height: 400px !important;
        padding: 24px 18px 86px !important;
    }

    .mih-hero-left h1 {
        font-size: 28px !important;
    }

    .mih-hero-left p {
        font-size: 13px !important;
    }

    .mih-search-card {
        margin-left: 6px !important;
        margin-right: 6px !important;
        max-width: calc(100% - 12px) !important;
        padding: 16px !important;
    }

    .mih-section-title-row {
        grid-template-columns: 1fr !important;
    }

    .mih-all-btn {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 48px !important;
    }

    .mih-tour-date {
        grid-template-columns: 54px 1fr !important;
    }

        .mih-tour-date em {
            grid-column: 1 / -1 !important;
            justify-self: flex-start !important;
        }
}
/* =========================================================
   MIFTAH FINAL MOBILE FIX
   Slogan + logo yazısı + hero buttons + filtre select fix
========================================================= */

@media (max-width: 575px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

        html body .mifx-socialbar {
            display: block !important;
        }

            html body .mifx-socialbar .container,
            html body .mifx-sloganbar .container,
            html body .mifx-navbar .container,
            html body .mih-hero .container {
                padding-left: 10px !important;
                padding-right: 10px !important;
            }

        html body .mifx-socialbar-inner {
            min-height: 42px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
        }

        html body .mifx-social-left {
            display: none !important;
        }

        html body .mifx-social-right {
            width: 100% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            flex-wrap: nowrap !important;
            gap: 8px !important;
        }

            html body .mifx-social-right > a:not(.mifx-top-phone) {
                width: 30px !important;
                height: 30px !important;
                min-width: 30px !important;
                font-size: 13px !important;
            }

        html body .mifx-top-phone {
            min-height: 31px !important;
            height: 31px !important;
            padding: 0 10px !important;
            font-size: 11.5px !important;
            line-height: 1 !important;
            white-space: nowrap !important;
        }

        /* SLOGAN: tek satır, yıldız sol yanında */

        html body .mifx-sloganbar {
            display: block !important;
        }

        html body .mifx-sloganbar-inner {
            min-height: auto !important;
            padding: 8px 0 10px !important;
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 8px !important;
            align-items: center !important;
            justify-content: center !important;
            text-align: left !important;
        }

        html body .mifx-slogan-text {
            width: 100% !important;
            min-width: 0 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: flex-start !important;
            gap: 6px !important;
            text-align: left !important;
            white-space: nowrap !important;
            overflow: hidden !important;
        }

            html body .mifx-slogan-text i {
                flex: 0 0 auto !important;
                color: #b37a0b !important;
                font-size: 12px !important;
                line-height: 1 !important;
            }

            html body .mifx-slogan-text span {
                display: block !important;
                min-width: 0 !important;
                max-width: 100% !important;
                color: #10213d !important;
                font-size: 11.4px !important;
                line-height: 1.2 !important;
                font-weight: 950 !important;
                white-space: nowrap !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
            }

        html body .mifx-slogan-actions {
            width: 100% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 8px !important;
        }

            html body .mifx-slogan-actions a {
                min-height: 34px !important;
                padding: 7px 16px !important;
                font-size: 12.5px !important;
                border-radius: 999px !important;
            }

            html body .mifx-slogan-actions small {
                display: none !important;
            }

        /* LOGO ALANI: telefonda güvenilir umre yazısı gözüksün */

        html body .mifx-navbar-inner {
            min-height: 74px !important;
            display: flex !important;
            grid-template-columns: none !important;
            align-items: center !important;
            justify-content: space-between !important;
            gap: 10px !important;
            overflow: visible !important;
        }

        html body .mifx-brand,
        html body .mifx-brand-premium {
            min-width: 0 !important;
            max-width: calc(100% - 54px) !important;
            display: flex !important;
            align-items: center !important;
            gap: 10px !important;
        }

        html body .mifx-logo-emblem {
            width: 82px !important;
            height: 66px !important;
            min-width: 82px !important;
            margin-top: -8px !important;
            margin-bottom: -8px !important;
            padding: 8px 10px !important;
            border-radius: 0 0 34px 34px !important;
            flex-shrink: 0 !important;
        }

            html body .mifx-logo-emblem img {
                max-height: 48px !important;
                max-width: 100% !important;
                object-fit: contain !important;
            }

        html body .mifx-brand-info {
            display: flex !important;
            flex-direction: column !important;
            justify-content: center !important;
            min-width: 0 !important;
            max-width: 210px !important;
            gap: 0 !important;
        }

            html body .mifx-brand-info strong {
                display: none !important;
            }

            html body .mifx-brand-info small {
                display: block !important;
                color: #667085 !important;
                font-size: 12.2px !important;
                line-height: 1.25 !important;
                font-weight: 850 !important;
                white-space: normal !important;
                overflow: visible !important;
                max-width: 210px !important;
            }

        html body .mifx-menu,
        html body .mifx-wp-btn {
            display: none !important;
        }

        html body .mifx-mobile-toggle {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            width: 44px !important;
            height: 40px !important;
            min-width: 44px !important;
            border-radius: 12px !important;
            font-size: 23px !important;
        }

        /* HERO / SLIDER */

        html body .mih-hero {
            padding: 12px 0 34px !important;
            background: #f3f7fb !important;
        }

        html body .mih-hero-card {
            height: 440px !important;
            min-height: 440px !important;
            max-height: 440px !important;
            border-radius: 20px !important;
            overflow: hidden !important;
            background-size: cover !important;
            background-position: center !important;
        }

        html body .mih-hero-content {
            position: relative !important;
            height: 440px !important;
            min-height: 440px !important;
            max-height: 440px !important;
            padding: 54px 18px 118px !important;
            display: flex !important;
            align-items: flex-start !important;
            justify-content: flex-start !important;
        }

        html body .mih-hero-left {
            width: 100% !important;
            max-width: 100% !important;
        }

        html body .mih-hero-badge {
            min-height: 30px !important;
            padding: 7px 12px !important;
            font-size: 12px !important;
            margin-bottom: 12px !important;
            border-radius: 999px !important;
        }

        html body .mih-hero-left h1,
        html body .mih-hero h1 {
            font-size: 28px !important;
            line-height: 1.05 !important;
            margin: 0 0 12px !important;
            max-width: 100% !important;
        }

            html body .mih-hero-left h1 em,
            html body .mih-hero h1 em {
                font-size: 25px !important;
                line-height: 1.05 !important;
            }

        html body .mih-hero-left p,
        html body .mih-hero p {
            font-size: 13.5px !important;
            line-height: 1.55 !important;
            max-width: 100% !important;
            margin-bottom: 0 !important;
        }

        html body .mih-hero-right,
        html body .mih-premium-label,
        html body .mih-signature-box {
            display: none !important;
        }

        /* Hero 2 buton düzgün görünsün */

        html body .mih-hero-actions {
            position: absolute !important;
            left: 18px !important;
            right: 18px !important;
            bottom: 50px !important;
            width: auto !important;
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 8px !important;
            margin: 0 !important;
            z-index: 4 !important;
        }

            html body .mih-hero-actions a,
            html body .mih-btn-primary,
            html body .mih-btn-ghost {
                width: 100% !important;
                min-height: 42px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                border-radius: 12px !important;
                padding: 10px 14px !important;
                font-size: 13.5px !important;
                font-weight: 950 !important;
            }

        html body .mih-btn-ghost {
            background: #ffffff !important;
            color: #17233a !important;
            border: 1px solid rgba(255, 255, 255, .65) !important;
        }

        html body .mih-hero-arrow {
            width: 36px !important;
            height: 36px !important;
            top: auto !important;
            bottom: 102px !important;
            transform: none !important;
            z-index: 5 !important;
        }

            html body .mih-hero-arrow.left {
                left: 14px !important;
            }

            html body .mih-hero-arrow.right {
                right: 14px !important;
            }

        /* FİLTRELEME KARTI */

        html body .mih-search-card {
            width: calc(100% - 28px) !important;
            max-width: calc(100% - 28px) !important;
            margin: -22px auto 0 !important;
            padding: 16px !important;
            border-radius: 22px !important;
            overflow: visible !important;
            position: relative !important;
            z-index: 10 !important;
        }

        html body .mih-search-head {
            display: flex !important;
            align-items: center !important;
            gap: 10px !important;
            margin-bottom: 16px !important;
        }

            html body .mih-search-head strong {
                font-size: 14px !important;
                letter-spacing: .04em !important;
            }

        html body .mih-search-form {
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 14px !important;
            width: 100% !important;
            min-width: 0 !important;
        }

        html body .mih-search-months,
        html body .mih-search-filter-group {
            width: 100% !important;
            min-width: 0 !important;
        }

            html body .mih-search-months label,
            html body .mih-filter-title-row span {
                font-size: 13px !important;
                font-weight: 900 !important;
            }

        html body .mih-month-buttons {
            width: 100% !important;
            max-width: 100% !important;
            display: flex !important;
            flex-wrap: nowrap !important;
            gap: 8px !important;
            overflow-x: auto !important;
            padding-bottom: 4px !important;
        }

            html body .mih-month-buttons button {
                flex: 0 0 auto !important;
                min-width: 54px !important;
                height: 40px !important;
                border-radius: 12px !important;
                font-size: 12.5px !important;
            }

        html body .mih-filter-title-row {
            display: grid !important;
            grid-template-columns: 1fr !important;
            align-items: start !important;
            justify-content: start !important;
            gap: 4px !important;
            margin-bottom: 8px !important;
        }

            html body .mih-filter-title-row small {
                display: block !important;
                font-size: 11.5px !important;
                line-height: 1.35 !important;
            }

        html body .mih-filter-controls {
            width: 100% !important;
            min-width: 0 !important;
            min-height: auto !important;
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 10px !important;
            padding: 0 !important;
            border: 0 !important;
            background: transparent !important;
        }

            html body .mih-filter-controls label {
                width: 100% !important;
                min-width: 0 !important;
                margin: 0 !important;
                padding: 8px 10px !important;
                display: grid !important;
                grid-template-columns: 54px minmax(0, 1fr) !important;
                align-items: center !important;
                gap: 8px !important;
                border: 1px solid #d8e1ec !important;
                border-radius: 14px !important;
                background: #fff !important;
                font-size: 12px !important;
                font-weight: 850 !important;
                color: #66758e !important;
            }

            html body .mih-filter-controls select,
            html body .mih-search-form select,
            html body .mih-search-form input {
                width: 100% !important;
                min-width: 0 !important;
                max-width: 100% !important;
                height: 42px !important;
                border-radius: 11px !important;
                border: 1px solid #d8e1ec !important;
                background-color: #f9fbfd !important;
                color: #1d2939 !important;
                font-size: 13px !important;
                font-weight: 800 !important;
                padding: 0 12px !important;
                box-sizing: border-box !important;
            }

        html body .mih-search-submit {
            width: 100% !important;
            min-height: 48px !important;
            border-radius: 14px !important;
            font-size: 15px !important;
        }
}

@media (max-width: 420px) {
    html body .mifx-slogan-text span {
        font-size: 10.7px !important;
    }

    html body .mifx-logo-emblem {
        width: 76px !important;
        height: 62px !important;
        min-width: 76px !important;
    }

        html body .mifx-logo-emblem img {
            max-height: 44px !important;
        }

    html body .mifx-brand-info {
        max-width: 190px !important;
    }

        html body .mifx-brand-info small {
            font-size: 11.7px !important;
            max-width: 190px !important;
        }

    html body .mih-hero-card,
    html body .mih-hero-content {
        height: 420px !important;
        min-height: 420px !important;
        max-height: 420px !important;
    }

    html body .mih-hero-content {
        padding: 48px 16px 112px !important;
    }

    html body .mih-hero-left h1,
    html body .mih-hero h1 {
        font-size: 26px !important;
    }

        html body .mih-hero-left h1 em,
        html body .mih-hero h1 em {
            font-size: 23px !important;
        }
}
/* =========================================================
   MİFTAH TURİZM - MOBİL RESPONSIVE DÜZENLEMELERİ (MAX-WIDTH: 768PX)
   ========================================================= */

@media (max-width: 768px) {

    /* 1. Slogan Bar: Tek satır ve ortalı, yıldız solda */
    .mifx-sloganbar-inner {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 8px 10px !important;
        overflow: hidden !important;
    }

    .mifx-slogan-text {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        white-space: nowrap !important;
        font-size: 11.5px !important; /* Mobilde taşmaması için font boyutu */
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    /* 2. Logo ve Metin: Mobilde 'Güvenilir umre...' yazısının görünmesi */
    .mifx-navbar-inner {
        padding: 10px 0 !important;
    }

    .mifx-brand {
        max-width: calc(100% - 60px) !important; /* Menü ikonuna yer bırak */
        gap: 10px !important;
    }

    .mifx-logo-card, .mifx-logo-emblem {
        width: 70px !important;
        height: 60px !important;
        padding: 5px !important;
        flex-shrink: 0 !important;
    }

    .mifx-brand-info {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

        .mifx-brand-info strong {
            font-size: 16px !important;
            line-height: 1.1 !important;
            display: block !important;
        }

        .mifx-brand-info small {
            display: block !important; /* Mobilde görünür yapıldı */
            font-size: 11px !important;
            color: #667085 !important;
            white-space: nowrap !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
        }

    /* 3. Hero Slider & Butonlar: 2 butonun mobilde yan yana düzgün durması */
    .mih-hero-content {
        padding: 40px 20px 100px !important; /* Arama kartına alttan yer bırak */
        text-align: center !important; /* Mobilde ortalı daha şık durur */
    }

    .mih-hero-left h1 {
        font-size: 28px !important;
    }

    .mih-hero-left p {
        font-size: 15px !important;
    }

    .mih-hero-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important; /* 2 butonu yan yana eşit böler */
        gap: 10px !important;
        width: 100% !important;
        margin-top: 20px !important;
    }

    .mih-btn-primary,
    .mih-btn-ghost {
        width: 100% !important;
        min-height: 44px !important;
        padding: 0 10px !important;
        font-size: 13px !important;
    }

    /* 4. Arama & Filtre Kartı (Tur Ara): Taşmaların önlenmesi ve alt alta dizilim */
    .mih-search-card {
        margin: -40px 15px 0 !important; /* Ekran kenarlarından boşluk */
        width: calc(100% - 30px) !important;
        padding: 20px 15px !important;
        border-radius: 20px !important;
    }

    .mih-search-form {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    .mih-filter-controls {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    }

        .mih-filter-controls label {
            width: 100% !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: flex-start !important;
            gap: 5px !important;
            font-size: 13px !important;
        }

        .mih-filter-controls select {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            height: 46px !important;
            border-radius: 12px !important;
            background-color: #f9fbfd !important;
            border: 1px solid #d8e1ec !important;
            padding: 0 12px !important;
        }

    .mih-search-submit {
        width: 100% !important;
        height: 48px !important;
        border-radius: 12px !important;
        margin-top: 5px !important;
    }

    /* 5. Alt Kartlar (Programlar, Hakkımızda vb.) Mobilde tek kolona düşürme */
    .mif-program-layout,
    .mih-tour-grid,
    .mih-info-grid,
    .mih-why-grid,
    .mih-about-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .mif-program-card {
        grid-template-columns: 60px 1fr !important; /* İkon ve metin dengesi */
        padding: 16px !important;
        height: auto !important;
        min-height: auto !important;
    }

    .mif-program-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 24px !important;
    }
}

/* ÇOK KÜÇÜK EKRANLAR (MAX-WIDTH: 420PX) İÇİN İNCE AYAR */
@media (max-width: 420px) {
    .mifx-brand-info strong {
        font-size: 14px !important; /* En dar ekranda logoya yer açmak için */
    }

    .mih-hero-actions {
        grid-template-columns: 1fr !important; /* Butonlar sığmazsa alt alta atar */
    }
}
/* =========================================================
   MİFTAH TURİZM - MOBİL FİLTRE KARTI (KESİN ÇÖZÜM)
   ========================================================= */

@media (max-width: 768px) {
    /* Form içi boşlukları dengele */
    html body .mih-search-form {
        display: flex !important;
        flex-direction: column !important;
        gap: 18px !important;
    }

    /* Gün/Gece ve Ücret filtre kapsayıcısı */
    html body .mih-filter-controls {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    }

        /* Etiketleri (Süre, Ücret Aralığı) kutunun dışına ve üstüne alıyoruz */
        html body .mih-filter-controls label {
            display: flex !important;
            flex-direction: column !important;
            align-items: flex-start !important;
            gap: 8px !important;
            width: 100% !important;
            border: none !important;
            background: transparent !important;
            padding: 0 !important;
            color: #10213d !important;
            font-size: 13.5px !important;
            font-weight: 900 !important;
        }

        /* Select kutularını %100 genişletip ferahlatıyoruz */
        html body .mih-filter-controls select,
        html body .mih-search-form select {
            width: 100% !important;
            max-width: 100% !important;
            height: 52px !important; /* Mobilde dokunmatik alan için daha yüksek */
            border: 1px solid #dbe4ef !important;
            border-radius: 14px !important;
            background-color: #f8fafc !important;
            color: #10213d !important;
            font-size: 14px !important;
            font-weight: 750 !important;
            padding: 0 16px !important;
            box-sizing: border-box !important;
            /* Özel ok ikonu ekleyerek native çirkinliği gizliyoruz */
            appearance: none !important;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
            background-repeat: no-repeat !important;
            background-position: right 16px center !important;
            background-size: 16px !important;
            /* Uzun metin taşmalarını üç nokta ile kes */
            white-space: nowrap !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
            box-shadow: 0 4px 10px rgba(15, 23, 42, 0.02) !important;
        }

    /* Tur Ara Butonu */
    html body .mih-search-submit {
        height: 54px !important;
        border-radius: 14px !important;
        font-size: 16px !important;
        margin-top: 4px !important;
    }
}

/* Tıklanma anında (focus) etrafında INALCODE altın rengi parlaması */
html body .mih-filter-controls select:focus {
    outline: none !important;
    border-color: #b37a0b !important;
    box-shadow: 0 0 0 4px rgba(179, 122, 11, 0.15) !important;
}
/* =========================================================
   MİFTAH TURİZM - FİLTRE KARTI MOBİL TAŞMA KESİN ÇÖZÜM
   ========================================================= */

@media (max-width: 768px) {
    /* Dış kapsayıcının kenarlıklarını ve eski grid yapısını sıfırla */
    html body .mih-filter-controls {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    }

        /* Eski yan yana (grid) yapısını ezip, yazıyı üste kutuyu alta alıyoruz */
        html body .mih-filter-controls label {
            display: flex !important;
            flex-direction: column !important;
            align-items: flex-start !important;
            width: 100% !important;
            padding: 12px !important;
            border: 1px solid #d8e1ec !important;
            border-radius: 14px !important;
            background: #fff !important;
            gap: 8px !important;
        }

        /* Select kutularını %100 genişliğe yay ve tasarıma uydur */
        html body .mih-filter-controls select {
            width: 100% !important;
            max-width: 100% !important;
            min-width: 100% !important;
            height: 46px !important;
            border: 1px solid #e2e8f0 !important;
            border-radius: 10px !important;
            background-color: #f8fafc !important;
            color: #10213d !important;
            font-size: 14px !important;
            font-weight: 800 !important;
            padding: 0 12px !important;
            margin: 0 !important;
            box-sizing: border-box !important;
        }
}
/* =========================================================
   MİFTAH TURİZM - FİLTRE KARTI (YAZILAR KÜÇÜLDÜ, YAN YANA GELDİ)
   ========================================================= */

@media (max-width: 768px) {
    /* Filtre kapsayıcısını temizle */
    html body .mih-filter-controls {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
    }

        /* Etiket ve kutuyu tekrar yan yana alıyoruz */
        html body .mih-filter-controls label {
            display: flex !important;
            flex-direction: row !important; /* Tekrar Yan Yana! */
            align-items: center !important;
            justify-content: space-between !important;
            width: 100% !important;
            padding: 6px 10px !important; /* Daha sıkı padding */
            border: 1px solid #d8e1ec !important;
            border-radius: 12px !important;
            background: #fff !important;
            gap: 8px !important;
            color: #66758e !important;
            font-size: 11px !important; /* YAZIYI İYİCE KÜÇÜLTTÜK */
            font-weight: 850 !important;
            white-space: nowrap !important; /* Asla alt satıra inmesin */
        }

        /* İçindeki Select kutusu (Açılır Menü) */
        html body .mih-filter-controls select {
            width: 65% !important; /* Sağda %65 alan kaplasın, yazıya yer kalsın */
            flex-shrink: 0 !important;
            height: 38px !important; /* Kutu boyunu kısalttık */
            border: 1px solid #d8e1ec !important;
            border-radius: 9px !important;
            background-color: #f9fbfd !important;
            color: #1d2939 !important;
            font-size: 11.5px !important; /* İÇ YAZIYI DA KÜÇÜLTTÜK */
            font-weight: 800 !important;
            padding: 0 10px !important;
            margin: 0 !important;
        }
}
/* =========================================================
   MİFTAH TURİZM - FİLTRE KARTI (TAŞMA KESİN ÇÖZÜM)
   ========================================================= */

@media (max-width: 768px) {
    /* Konteynerı sütun yap */
    html body .mih-filter-controls {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
    }

        /* Etiketi Yatay (Row) yap ve taşmaları gizle */
        html body .mih-filter-controls label {
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            justify-content: space-between !important;
            width: 100% !important;
            box-sizing: border-box !important;
            padding: 6px 6px 6px 14px !important;
            border: 1px solid #d8e1ec !important;
            border-radius: 12px !important;
            background: #fff !important;
            gap: 10px !important;
            color: #10213d !important;
            font-size: 13px !important;
            font-weight: 850 !important;
            white-space: nowrap !important;
            overflow: hidden !important; /* Dışarı taşmayı bıçak gibi keser */
        }

        /* İçindeki Select kutusu kalan yeri alsın ve asla taşmasın */
        html body .mih-filter-controls select {
            flex: 1 !important; /* Kalan boşluğu tam doldurur */
            min-width: 0 !important; /* TAŞMAYI DURDURAN EN ÖNEMLİ KOD */
            width: 100% !important;
            height: 40px !important;
            border: 1px solid #d8e1ec !important;
            border-radius: 9px !important;
            background-color: #f9fbfd !important;
            color: #1d2939 !important;
            font-size: 12.5px !important;
            font-weight: 800 !important;
            padding: 0 10px !important;
            margin: 0 !important;
            box-sizing: border-box !important;
        }
}
/* =========================================================
   MIF VIDEO STORY - DESKTOP GENİŞLETME + BUTON HİZASI
   ========================================================= */

@media (min-width: 1200px) {
    html body .mif-video-story {
        padding: 34px 0 44px !important;
        background: #020b12 !important;
    }

    html body .mif-video-story-card {
        width: min(92vw, 1540px) !important;
        max-width: 1540px !important;
        height: 430px !important;
        min-height: 430px !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: 43% 57% !important;
        border-radius: 30px !important;
        overflow: hidden !important;
        background: #020b12 !important;
        box-shadow: 0 24px 62px rgba(0, 0, 0, .24) !important;
    }

    html body .mif-video-story-content {
        height: 100% !important;
        padding: 42px 42px 40px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-start !important;
        overflow: visible !important;
    }

    html body .mif-video-story-chip {
        margin-bottom: 18px !important;
    }

    html body .mif-video-story-content small {
        margin-bottom: 14px !important;
    }

    html body .mif-video-story-content h2 {
        font-size: clamp(42px, 3.8vw, 64px) !important;
        line-height: 1.02 !important;
        margin: 0 0 18px !important;
        max-width: 560px !important;
    }

    html body .mif-video-story-content p {
        max-width: 610px !important;
        font-size: 14.5px !important;
        line-height: 1.75 !important;
        margin: 0 0 18px !important;
    }

    html body .mif-video-story-points {
        display: grid !important;
        gap: 8px !important;
        margin: 0 0 20px !important;
    }

        html body .mif-video-story-points span {
            font-size: 14px !important;
            line-height: 1.35 !important;
        }

    html body .mif-video-story-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        flex-wrap: nowrap !important;
        margin-top: 0 !important;
        width: auto !important;
    }

        html body .mif-video-story-actions a {
            height: 48px !important;
            min-height: 48px !important;
            padding: 0 22px !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 8px !important;
            white-space: nowrap !important;
            line-height: 1 !important;
            margin: 0 !important;
            flex: 0 0 auto !important;
            border-radius: 15px !important;
        }

            html body .mif-video-story-actions a i {
                line-height: 1 !important;
                margin: 0 !important;
            }

    html body .mif-video-story-media {
        height: 100% !important;
        min-height: 430px !important;
        overflow: hidden !important;
    }

        html body .mif-video-story-media video {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            object-position: center center !important;
            transform: scale(1.02) !important;
        }
}
/* =========================================================
   MIFTAH VIDEO STORY - GENİŞ + BOYUNA UZUN + BUTON KESİLMEZ
   ========================================================= */

@media (min-width: 1200px) {
    html body .mif-video-story {
        padding: 48px 0 70px !important;
        background: #020b12 !important;
        overflow: visible !important;
    }

    html body .mif-video-story-card {
        width: min(98vw, 1820px) !important;
        max-width: 1820px !important;
        height: 650px !important;
        min-height: 650px !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: 43% 57% !important;
        border-radius: 34px !important;
        background: #020b12 !important;
        overflow: hidden !important;
        box-shadow: 0 30px 80px rgba(0, 0, 0, .30) !important;
    }

    html body .mif-video-story-content {
        height: 650px !important;
        min-height: 650px !important;
        padding: 64px 58px 64px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-start !important;
        overflow: visible !important;
    }

    html body .mif-video-story-chip {
        margin-bottom: 22px !important;
        flex-shrink: 0 !important;
    }

    html body .mif-video-story-content small {
        margin-bottom: 16px !important;
        flex-shrink: 0 !important;
    }

    html body .mif-video-story-content h2 {
        font-size: clamp(52px, 4.5vw, 76px) !important;
        line-height: 1.02 !important;
        margin: 0 0 22px !important;
        max-width: 720px !important;
        flex-shrink: 0 !important;
    }

        html body .mif-video-story-content h2 strong {
            display: block !important;
        }

    html body .mif-video-story-content p {
        max-width: 720px !important;
        font-size: 17px !important;
        line-height: 1.85 !important;
        margin: 0 0 22px !important;
        flex-shrink: 0 !important;
    }

    html body .mif-video-story-points {
        display: grid !important;
        gap: 11px !important;
        margin: 0 0 30px !important;
        flex-shrink: 0 !important;
    }

        html body .mif-video-story-points span {
            font-size: 16px !important;
            line-height: 1.4 !important;
            white-space: normal !important;
        }

    html body .mif-video-story-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 16px !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        flex-shrink: 0 !important;
        position: relative !important;
        z-index: 5 !important;
    }

        html body .mif-video-story-actions a {
            height: 56px !important;
            min-height: 56px !important;
            padding: 0 30px !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 10px !important;
            line-height: 1 !important;
            white-space: nowrap !important;
            margin: 0 !important;
            flex: 0 0 auto !important;
            border-radius: 16px !important;
            transform: none !important;
            overflow: visible !important;
        }

            html body .mif-video-story-actions a i {
                line-height: 1 !important;
                margin: 0 !important;
            }

    html body .mif-video-story-media {
        height: 650px !important;
        min-height: 650px !important;
        overflow: hidden !important;
    }

        html body .mif-video-story-media video {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            object-position: center center !important;
            transform: scale(1.025) !important;
            display: block !important;
        }
}