/* ==========================================================
   MOBILE.CSS — Tüm Cihazlar İçin %100 Responsive
   ==========================================================
   Breakpoints (büyükten küçüğe):
     1280px+  : Desktop (default — base CSS dosyalarında)
     ≤1280px  : Küçük desktop
     ≤1024px  : Tablet (landscape)
     ≤900px   : Büyük tablet (portrait) / küçük tablet landscape
     ≤768px   : Standart tablet portrait (iPad mini)
     ≤640px   : Büyük mobil / phablet
     ≤480px   : Standart mobil (iPhone Plus, Pro Max)
     ≤390px   : Orta mobil (iPhone 14 Pro)
     ≤360px   : Küçük mobil (iPhone SE, Galaxy S küçük)
     Landscape & ufak cihazlar için özel kurallar altta
   ========================================================== */

/* ===== ROOT / TEMEL ===== */
html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    -webkit-overflow-scrolling: touch;
}

/* iOS Safari'de input zoom önle — minimum 16px font */
input, select, textarea, button {
    font-size: 16px;
    touch-action: manipulation;
}

@media (min-width: 769px) {
    input, select, textarea, button {
        font-size: inherit;
    }
}

/* Touch cihazlarda hover yerine active feedback */
@media (hover: none) {
    .hotel-card:hover,
    .feature-banner:hover,
    .feature-block:hover,
    .why-card:hover,
    .deals-tab:hover,
    .search-tab:hover {
        transform: none;
    }
}

/* Tüm interaktif öğelerde aktif state */
.deals-tab:active,
.search-tab:active,
.search-submit:active,
.popup-apply:active,
.mobile-drawer__link:active,
.hotel-card:active,
.feature-block:active,
.why-card:active,
.reviews__arrow:active,
.footer__top-btn:active,
.auth-btn:active,
.feature-banner__btn:active,
.top-promo__btn:active {
    transform: scale(0.97);
    transition: transform 0.08s ease;
}

/* ====================================
   MOBİL HAMBURGER BUTONU
==================================== */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: transparent;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-shrink: 0;
    cursor: pointer;
    transition: background 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:active {
    background: var(--color-bg-soft);
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-btn.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-btn.is-active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ====================================
   MOBİL DRAWER
==================================== */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    visibility: hidden;
}

.mobile-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 24, 48, 0);
    transition: background 0.3s ease;
}

.mobile-drawer.is-open .mobile-drawer__overlay {
    background: rgba(12, 24, 48, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.mobile-drawer__panel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(340px, 88vw);
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.mobile-drawer.is-open .mobile-drawer__panel {
    transform: translateX(0);
}

.mobile-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
}

.mobile-drawer__logo {
    height: 38px;
    width: auto;
}

.mobile-drawer__close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg-soft);
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

.mobile-drawer__close:active {
    background: #d9dde5;
}

.mobile-drawer__auth {
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-cyan) 100%);
}

.mobile-drawer__login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 18px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    min-height: 46px;
}

.mobile-drawer__nav {
    padding: 8px 12px;
    flex: 1;
}

.mobile-drawer__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    border-radius: 10px;
    transition: background 0.15s ease, color 0.15s ease;
    min-height: 48px;
}

.mobile-drawer__link svg {
    color: var(--color-cyan);
    flex-shrink: 0;
}

.mobile-drawer__link:active {
    background: var(--color-bg-soft);
}

.mobile-drawer__link--accent { color: var(--color-orange-dark); }
.mobile-drawer__link--accent svg { color: var(--color-orange); }

.mobile-drawer__divider {
    height: 1px;
    background: var(--color-border);
    margin: 4px 18px;
}

.mobile-drawer__utils {
    padding: 6px 14px;
    display: flex;
    flex-direction: column;
}

.mobile-drawer__util {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 500;
    border-radius: 8px;
    min-height: 44px;
}

.mobile-drawer__call {
    margin: 14px 18px calc(20px + env(safe-area-inset-bottom, 0));
    padding: 14px 18px;
    background: var(--color-orange);
    color: #1c2536;
    font-weight: 800;
    font-size: 14.5px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 16px rgba(255, 153, 51, 0.35);
    min-height: 50px;
}

/* ====================================
   BODY SCROLL LOCK
==================================== */
body.is-scroll-locked,
body.is-popup-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    body.is-popup-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

/* ====================================
   ≤1280px - KÜÇÜK DESKTOP
==================================== */
@media (max-width: 1280px) {
    :root {
        --container-pad: 20px;
    }
}

/* ====================================
   ≤1365px - HEADER HAMBURGER COLLAPSE
   8 menü öğesi tek satıra sığmadığı için bu genişliğin altında
   yatay menü gizlenir, hamburger (mobile drawer) devreye girer.
==================================== */
@media (max-width: 1365px) {
    .main-nav__list { display: none; }
    .auth-btn__sep,
    .auth-btn__label--alt { display: none; }
    .mobile-menu-btn { display: inline-flex; }
    .main-nav__logo {
        margin-right: auto;
        margin-left: 8px;
    }
    .main-nav__inner {
        gap: 8px;
        min-height: 68px;
    }
    .main-nav__logo img { height: 42px; }
}

/* ====================================
   ≤1024px - TABLET (landscape)
==================================== */
@media (max-width: 1024px) {
    /* HERO */
    .hero__inner { padding: 0 20px; }

    /* FEATURES */
    .features__inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .feature-banner { min-height: 320px; }
}

/* ====================================
   ≤900px - BÜYÜK TABLET PORTRAIT
==================================== */
@media (max-width: 900px) {
    /* HOTEL/TOUR/BUNGALOV CARDS — 2 sütun */
    .deals__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    /* REVIEWS — 2 kart visible (JS de tetikler) */
    .review-card { flex: 0 0 calc((100% - 20px) / 2); }
}

/* ====================================
   ≤768px - STANDART TABLET / BÜYÜK MOBİL
==================================== */
@media (max-width: 768px) {
    :root {
        --container-pad: 16px;
    }

    /* === TOP PROMO === */
    .top-promo { padding: 10px 0; }
    .top-promo__inner {
        flex-direction: column;
        gap: 6px;
        font-size: 12px;
        text-align: center;
    }
    .top-promo p { font-size: 12.5px; }
    .top-promo__btn {
        padding: 6px 18px;
        font-size: 12px;
        min-height: 36px;
        display: inline-flex;
        align-items: center;
    }

    /* === UTILITY STRIP (mobilde gizli, drawer'da var) === */
    .utility-strip { display: none; }

    /* === HEADER === */
    .main-nav {
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .main-nav__inner {
        min-height: 60px;
        padding: 0 14px;
        gap: 6px;
    }
    .main-nav__logo img { height: 38px; }
    .main-nav__logo { margin-left: 4px; }
    .auth-btn {
        padding: 8px;
        gap: 0;
        border-radius: 999px;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
    }
    .auth-btn__icon { width: 28px; height: 28px; }
    .auth-btn__label { display: none; }

    /* === HERO === */
    .hero {
        min-height: auto;
        padding: 24px 0 50px;
    }
    .hero__heading { margin-bottom: 22px; }
    .hero__badge {
        font-size: 10.5px;
        padding: 4px 10px;
        margin-bottom: 10px;
    }
    .hero__heading h1 {
        font-size: 22px;
        line-height: 1.2;
        padding: 0 8px;
    }
    .hero__heading p {
        font-size: 13px;
        padding: 0 8px;
    }
    .hero__dots { margin-top: 14px; }

    /* === SEARCH BOX === */
    .search-box { max-width: 100%; }
    .search-box__tabs {
        gap: 4px;
        padding: 0 4px;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .search-box__tabs::-webkit-scrollbar { display: none; }
    .search-tab {
        padding: 10px 14px;
        font-size: 13px;
        white-space: nowrap;
        min-height: 42px;
    }
    .search-tab svg { width: 16px; height: 16px; }
    .search-box__body { padding: 10px; }

    .search-form {
        flex-direction: column;
        gap: 8px;
        background: transparent;
    }
    .search-field {
        flex: 1 1 100%;
        border-right: none;
        background: #f7f9fc;
        border-radius: 10px;
        padding: 12px 14px;
        min-height: 60px;
    }
    .search-field label {
        font-size: 11px;
        margin-bottom: 3px;
    }
    .search-submit {
        flex: 1 1 100%;
        margin: 4px 0 0;
        padding: 14px 22px;
        min-height: 54px;
        font-size: 15px;
    }

    /* === BOTTOM SHEET POPUP === */
    .js-field { position: static; }

    .field-popup {
        position: fixed !important;
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        border-radius: 18px 18px 0 0 !important;
        max-height: 78vh;
        overflow-y: auto;
        padding: 20px 18px calc(20px + env(safe-area-inset-bottom, 0)) !important;
        transform: translateY(100%) !important;
        transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
        z-index: 2000 !important;
        box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.25) !important;
        -webkit-overflow-scrolling: touch;
    }

    .js-field.is-open .field-popup {
        transform: translateY(0) !important;
    }

    .js-field.is-open .field-popup::before {
        content: '';
        position: sticky;
        top: -8px;
        display: block;
        width: 40px;
        height: 4px;
        background: #d9dde5;
        border-radius: 2px;
        margin: -8px auto 12px;
    }

    .js-field.is-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(12, 24, 48, 0.5);
        z-index: 1999;
        animation: backdropIn 0.25s ease;
    }
    @keyframes backdropIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .js-field.popup-up .field-popup,
    .js-field.popup-right .field-popup {
        bottom: 0 !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
    }

    /* Date picker mobile */
    .field-popup--date {
        width: 100% !important;
        min-width: 0 !important;
    }
    .dp-day { font-size: 14px; min-height: 38px; }
    .dp-weekdays span { font-size: 12px; padding: 6px 0; }
    .dp-title { font-size: 16px; }
    .dp-nav-btn { width: 38px; height: 38px; }
    .dp-nav-btn svg { width: 16px; height: 16px; }
    .dp-link { font-size: 14px; padding: 10px 14px; }

    /* Counters mobile */
    .counter-row { padding: 14px 4px; }
    .counter__btn { width: 40px; height: 40px; font-size: 20px; }
    .counter__val { min-width: 38px; font-size: 16px; }
    .counter-row__info strong { font-size: 15px; }

    /* Time grid */
    .time-grid {
        grid-template-columns: repeat(4, 1fr);
        max-height: 50vh;
    }
    .time-slot { padding: 11px 6px; font-size: 14px; }

    /* Select list */
    .select-list__item {
        padding: 13px 14px;
        font-size: 15px;
        min-height: 48px;
    }

    .popup-apply {
        width: 100%;
        padding: 14px;
        font-size: 15px;
        min-height: 50px;
    }
    .popup-footer { justify-content: stretch; }

    /* === FEATURES === */
    .features { padding: 28px 0 16px; }
    .features__inner {
        padding: 0 16px;
        gap: 12px;
    }
    .feature-banner {
        min-height: 240px;
        border-radius: 14px;
    }
    .feature-banner__content {
        padding: 20px 20px 18px;
        gap: 6px;
    }
    .feature-banner__kicker { font-size: 10.5px; padding: 4px 10px; }
    .feature-banner__content h3 { font-size: 18px; line-height: 1.25; }
    .feature-banner__content p { font-size: 12.5px; }
    .feature-banner__btn {
        padding: 11px 18px;
        font-size: 13px;
        min-height: 42px;
    }
    .feature-blocks { gap: 10px; }
    .feature-block {
        min-height: 130px;
        border-radius: 12px;
    }
    .feature-block__content { padding: 12px 14px; }
    .feature-block__content h4 { font-size: 15px; }
    .feature-block__content small { font-size: 11.5px; }
    .feature-block__tag {
        font-size: 9px;
        padding: 2px 7px;
    }

    /* === DEALS / TOURS / BUNGALOVS / PACKAGES === */
    .deals { padding: 32px 0 40px; }
    .deals__header {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin-bottom: 20px;
    }
    .deals__header--centered { gap: 10px; }
    .deals__title-wrap { align-items: center; text-align: center; }
    .deals__kicker { font-size: 11px; }
    .deals__title { font-size: 22px; line-height: 1.2; }
    .deals__subtitle { font-size: 13px; padding: 0 8px; }

    .deals__tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        padding: 5px;
        border-radius: 14px;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }
    .deals__tabs::-webkit-scrollbar { display: none; }
    .deals-tab {
        padding: 9px 14px;
        font-size: 13px;
        flex-shrink: 0;
        min-height: 40px;
        display: inline-flex;
        align-items: center;
    }

    .deals__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hotel-card { border-radius: 14px; }
    .hotel-card__body { padding: 14px 16px 16px; }
    .hotel-card__name {
        font-size: 16px;
        margin-bottom: 12px;
        min-height: auto;
    }
    .hotel-card__location { font-size: 12.5px; }
    .hotel-card__price-new { font-size: 20px; }
    .hotel-card__price-old { font-size: 12px; }
    .hotel-card__price-label { font-size: 11px; }
    .hotel-card__package {
        font-size: 11px;
        max-width: 90px;
    }
    .hotel-card__meta { font-size: 11.5px; }
    .hotel-card__badge {
        font-size: 10.5px;
        padding: 4px 9px;
    }

    /* === WHY US === */
    .why-us { padding: 40px 0 48px; }
    .why-us__header { margin-bottom: 28px; }
    .why-us__kicker { font-size: 11px; }
    .why-us__title { font-size: 22px; }
    .why-us__subtitle { font-size: 13.5px; padding: 0 8px; }
    .why-us__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .why-card {
        padding: 20px 18px;
        border-radius: 14px;
    }
    .why-card__icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: 14px;
    }
    .why-card__icon svg { width: 22px; height: 22px; }
    .why-card h3 { font-size: 15px; margin-bottom: 6px; }
    .why-card p { font-size: 12.5px; }

    /* === REVIEWS === */
    .reviews { padding: 40px 0 48px; }
    .reviews__header { margin-bottom: 24px; }
    .reviews__title { font-size: 22px; }
    .reviews__stat-text { font-size: 13px; text-align: center; }
    .reviews__stat-stars svg { width: 16px; height: 16px; }
    .reviews__slider { gap: 6px; }
    .reviews__arrow {
        width: 38px;
        height: 38px;
    }
    .reviews__arrow svg { width: 18px; height: 18px; }
    .review-card {
        flex: 0 0 100%;
        padding: 22px 20px;
        min-height: 260px;
    }
    .review-card__text { font-size: 13.5px; -webkit-line-clamp: 7; }
    .review-card::before { font-size: 70px; }

    /* === FOOTER === */
    .footer__main { padding: 36px 0 24px; }
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer__col--brand { max-width: 100%; }
    .footer__logo { height: 56px; }
    .footer__heading { font-size: 13px; }
    .footer__list a { font-size: 13.5px; padding: 4px 0; min-height: 32px; display: inline-flex; align-items: center; }
    .footer__list { gap: 4px; }
    .footer__contact-item { min-height: 36px; }
    .footer__social a {
        width: 42px;
        height: 42px;
    }

    .footer__trust-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .footer__bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .footer__top-btn { min-height: 40px; }

    /* === FOOTER MOBİL AKORDEON (başlık sabit, liste açılır/kapanır) === */
    .footer__inner { gap: 8px; }
    .footer__col--brand { margin-bottom: 16px; }

    .footer__col:not(.footer__col--brand) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .footer__col:not(.footer__col--brand) .footer__heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 0;
        padding: 14px 2px;
        cursor: pointer;
        user-select: none;
        -webkit-user-select: none;
    }
    .footer__col:not(.footer__col--brand) .footer__heading::after {
        content: '';
        width: 9px;
        height: 9px;
        border-right: 2px solid rgba(255, 255, 255, 0.6);
        border-bottom: 2px solid rgba(255, 255, 255, 0.6);
        transform: translateY(-2px) rotate(45deg);
        transition: transform 0.25s ease;
        flex-shrink: 0;
    }
    .footer__col.is-open .footer__heading::after {
        transform: translateY(2px) rotate(-135deg);
    }
    .footer__col:not(.footer__col--brand) .footer__list {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .footer__col.is-open .footer__list {
        max-height: 460px;
        padding-bottom: 12px;
    }
}

/* ====================================
   ≤640px - BÜYÜK MOBİL / PHABLET
==================================== */
@media (max-width: 640px) {
    .feature-banner { min-height: 220px; }
    .feature-banner__content h3 { font-size: 17px; }

    /* Trust badges biraz daha kompakt */
    .pay-badge {
        font-size: 11px;
        padding: 5px 8px;
        height: 26px;
    }
    .seal {
        padding: 5px 10px;
    }
    .seal strong { font-size: 11.5px; }
    .seal small { font-size: 10.5px; }
}

/* ====================================
   ≤480px - STANDART MOBİL
==================================== */
@media (max-width: 480px) {
    .top-promo p { font-size: 11.5px; }
    .top-promo strong { font-size: 11.5px; }

    .main-nav__inner { padding: 0 12px; }
    .main-nav__logo img { height: 36px; }

    .hero { padding: 20px 0 40px; }
    .hero__heading h1 { font-size: 20px; }
    .hero__heading p { font-size: 12.5px; }

    .search-box__body { padding: 8px; }
    .search-tab { padding: 9px 12px; font-size: 12.5px; }

    .deals { padding: 28px 0 36px; }
    .deals__title { font-size: 20px; }
    .deals__inner { padding: 0 14px; }

    .hotel-card__body { padding: 12px 14px 14px; }
    .hotel-card__name { font-size: 15px; }
    .hotel-card__price-new { font-size: 18px; }

    .features { padding: 24px 0 12px; }
    .features__inner { padding: 0 14px; }
    .feature-blocks { grid-template-columns: 1fr 1fr; gap: 10px; }
    .feature-block { min-height: 120px; }

    .why-us { padding: 32px 0 40px; }
    .why-us__title { font-size: 20px; }
    .why-us__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .why-card { padding: 18px 16px; }

    .reviews { padding: 32px 0 40px; }
    .reviews__title { font-size: 20px; }
    .reviews__slider { gap: 4px; }
    .reviews__arrow { width: 34px; height: 34px; }
    .review-card { padding: 20px 18px; }

    .footer__main { padding: 32px 0 22px; }
    .footer__inner { padding: 0 18px; gap: 24px; }
    .footer__logo { height: 52px; }
    .footer__col--brand p { font-size: 13px; }
    .footer__trust { padding: 16px 0; }
    .footer__trust-inner { padding: 0 18px; }
    .footer__seals { gap: 8px; }
    .footer__bottom { padding: 14px 0; }
    .footer__bottom p { font-size: 12px; }
}

/* ====================================
   ≤390px - ORTA MOBİL (iPhone 14 Pro)
==================================== */
@media (max-width: 390px) {
    .top-promo__inner { padding: 0 14px; }
    .top-promo__btn { padding: 5px 14px; font-size: 11.5px; }

    .hero__heading h1 { font-size: 19px; }

    .auth-btn { padding: 7px; }
    .auth-btn__icon { width: 26px; height: 26px; }

    .feature-banner { min-height: 200px; }
    .feature-banner__content { padding: 18px 18px 16px; }
    .feature-banner__content h3 { font-size: 16px; }
    .feature-block { min-height: 110px; }

    .deals__title { font-size: 19px; }
    .why-us__title { font-size: 19px; }
    .reviews__title { font-size: 19px; }

    .pay-badge { font-size: 10.5px; padding: 5px 7px; }
    .payment-list { gap: 4px; }
}

/* ====================================
   ≤360px - KÜÇÜK MOBİL (Galaxy S, iPhone SE)
==================================== */
@media (max-width: 360px) {
    :root { --container-pad: 12px; }

    .main-nav__inner { padding: 0 10px; gap: 4px; }
    .main-nav__logo img { height: 32px; }

    .hero__heading h1 { font-size: 18px; }
    .hero__heading p { font-size: 12px; }

    .search-tab { padding: 8px 10px; font-size: 12px; }
    .search-tab svg { width: 14px; height: 14px; }

    .feature-banner { min-height: 190px; }
    .feature-blocks { gap: 8px; }
    .feature-block { min-height: 100px; }
    .feature-block__content h4 { font-size: 14px; }

    .hotel-card__name { font-size: 14.5px; }
    .hotel-card__price-new { font-size: 17px; }
    .hotel-card__badge { font-size: 10px; padding: 3px 8px; }

    .deals-tab { padding: 8px 12px; font-size: 12.5px; }

    .why-card { padding: 16px 14px; }
    .why-card__icon { width: 44px; height: 44px; }

    .review-card { padding: 18px 16px; min-height: 240px; }
    .review-card__text { font-size: 13px; }

    .footer__logo { height: 48px; }
    .footer__heading { font-size: 12.5px; }
}

/* ====================================
   LANDSCAPE küçük cihaz (popup ekranı taşmasın)
==================================== */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
    .field-popup {
        max-height: 88vh !important;
    }
    .hero {
        min-height: auto;
        padding: 16px 0 30px;
    }
    .hero__heading {
        margin-bottom: 14px;
    }
    .hero__heading h1 { font-size: 18px; }
    .hero__badge { margin-bottom: 6px; }
}

/* ====================================
   PRINT (yazdırma için temizlik)
==================================== */
@media print {
    .main-nav, .top-promo, .utility-strip,
    .mobile-drawer, .mobile-menu-btn,
    .footer__trust, .footer__bottom,
    .hero__dots, .reviews__arrow, .reviews__dots,
    .deals__tabs, .feature-banner__btn {
        display: none !important;
    }
}

/* ====================================
   REDUCED MOTION (erişilebilirlik)
==================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
