/* ==========================================================================
   Online Villacım - Profesyonel Tatil & Villa Kiralama Tasarım Sistemi
   Sade, Güven Veren, Sıcak ve Modern Türk Turizm Standartları
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* --------------------------------------------------------------------------
   1. TASARIM DEĞİŞKENLERİ & TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Güven Veren Ege & Akdeniz Kurumsal Lacivert Tonları */
    --primary: #183b56;
    --primary-dark: #0f2436;
    --primary-hover: #122e43;
    --primary-light: #f0f6fa;
    --primary-tint: #e4edf4;

    /* Sıcak, Davetkar Tatil Amber / Terracotta Aksan Tonları */
    --accent: #e07a2c;
    --accent-hover: #cb691f;
    --accent-light: #fff8f3;
    --accent-border: #fcd9bd;

    /* Nötr Renkler & Tipografi */
    --text: #1e293b;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-subtle: #cbd5e1;

    /* Arka Planlar */
    --background: #ffffff;
    --background-soft: #f8fafc;
    --background-card: #ffffff;
    --background-hover: #f1f5f9;
    --topbar-bg: #0f2436;
    --header-bg: #143147;
    --footer-bg: #0b1a26;

    /* Kenarlıklar */
    --border: #e2e8f0;
    --border-color: #e2e8f0;
    --border-hover: #cbd5e1;
    --border-focus: #183b56;

    /* Kenar Yuvarlaklıkları (Aşırı yuvarlaklıktan kaçınıldı) */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-full: 9999px;

    /* Ölçülü Gölgeler (Yapay aşırı blur yerine doğal derinlik) */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.08);

    /* Durum & Rozet Renkleri */
    --success: #16a34a;
    --success-light: #f0fdf4;
    --warning: #d97706;
    --warning-light: #fffbeb;
    --danger: #dc2626;
    --danger-light: #fef2f2;
    --star-color: #f59e0b;

    /* Konteyner & Tipografi */
    --container: 1240px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Geriye Dönük Uyumluluk */
    --teal-primary: var(--primary);
    --teal-dark: var(--primary-dark);
    --brand-primary: var(--primary);
}

/* --------------------------------------------------------------------------
   2. TEMEL SIFIRLAMA & TABAN STİLLER
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.55;
    font-size: 14.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.18s ease, opacity 0.18s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

button {
    cursor: pointer;
}

/* Erişilebilir Klavye Focus Göstergesi */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Tipografi Hiyerarşisi */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.25;
}

h1 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.015em;
}

h3 {
    font-size: 19px;
    font-weight: 700;
}

h4 {
    font-size: 16px;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   3. ÜST BİLGİ ÇUBUĞU (TOP BAR)
   -------------------------------------------------------------------------- */
.top-bar {
    background: var(--topbar-bg);
    color: #cbd5e1;
    font-size: 12.5px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e1;
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
    flex-shrink: 0;
}

.top-bar-item.divider {
    color: rgba(255, 255, 255, 0.2);
}

.top-bar-link {
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 500;
}

.top-bar-link:hover {
    color: #ffffff;
}

.top-bar-link.whatsapp {
    color: #4ade80;
    font-weight: 600;
}

.top-bar-currency {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 2px 8px;
    border-radius: var(--radius-xs);
    font-size: 11.5px;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   4. ANA HEADER & MENÜ
   -------------------------------------------------------------------------- */
.site-header {
    background: #0b3741;
    color: #ffffff;
    height: 74px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(15, 36, 54, 0.15);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.brand-logo:hover .logo-icon {
    transform: translateY(-1px);
}

.logo-icon svg {
    width: 22px;
    height: 22px;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.brand-accent {
    color: var(--accent);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: background 0.18s ease, color 0.18s ease;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fav-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.18s ease;
}

.fav-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #f87171;
}

.fav-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: var(--radius-full);
    min-width: 17px;
    text-align: center;
}

.auth-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--accent);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: background 0.18s ease, transform 0.18s ease;
    border: 1px solid transparent;
}

.auth-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.auth-btn:active {
    transform: scale(0.98);
}

.user-menu-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.user-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    padding: 6px 0 !important;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: none !important;
    opacity: 0.95;
    transition: opacity 0.15s ease, color 0.15s ease;
}

.user-dropdown-btn:hover {
    opacity: 1;
    color: #38bdf8 !important;
    background: transparent !important;
}

.user-dropdown-btn svg {
    flex-shrink: 0;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0 !important;
    left: auto !important;
    width: 230px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22) !important;
    display: none;
    z-index: 99999 !important;
    overflow: hidden;
    color: #1e293b !important;
    opacity: 1 !important;
    transform: none !important;
    isolation: isolate !important;
}

.user-dropdown.show {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
    animation: userDropSlide 0.18s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@keyframes userDropSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-dropdown-header {
    padding: 12px 18px;
    background: #f8fafc !important;
    border-bottom: 1px solid #edf2f7 !important;
    text-align: left;
}

.udh-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a !important;
    line-height: 1.3;
}

.udh-email {
    font-size: 11.5px;
    color: #64748b !important;
    margin-top: 2px;
    word-break: break-all;
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: #334155 !important;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.user-dropdown a:hover {
    background: #f1f5f9 !important;
    color: #0084a9 !important;
}

.user-dropdown a svg {
    flex-shrink: 0;
    color: #64748b;
    transition: color 0.15s ease;
}

.user-dropdown a:hover svg {
    color: #0084a9;
}

.user-dropdown .divider {
    height: 1px;
    background: #f1f5f9 !important;
    margin: 4px 0;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 8px;
}

/* --------------------------------------------------------------------------
   5. HERO BÖLÜMÜ & YATAY ARAMA FORMU (VillaSepeti Akışı)
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 480px;
    background: linear-gradient(180deg, rgba(15, 36, 54, 0.78) 0%, rgba(20, 49, 71, 0.85) 100%),
        url('https://images.unsplash.com/photo-1580587771525-78b9dba3b914?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 50px 0 65px 0;
    color: #ffffff;
}

.hero-content {
    text-align: center;
    max-width: 1020px;
    margin: 0 auto;
    width: 100%;
    animation: heroFadeIn 0.35s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 14px;
}

.hero-trust-pill svg {
    color: #4ade80;
}

.hero-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 10px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hero-brand-name {
    color: #fbd38d;
}

.hero-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #e2e8f0;
    margin-bottom: 28px;
    line-height: 1.5;
}

/* Arama Kartı (Masaüstünde Tek Satır 5 Sütunlu) */
.search-box-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 10px 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--text);
    position: relative;
    z-index: 50;
}

.search-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
}

.search-field {
    text-align: left;
    position: relative;
    padding: 6px 12px;
    border-right: 1px solid var(--border);
    cursor: pointer;
    user-select: none;
    border-radius: var(--radius-sm);
    transition: background 0.15s ease;
}

.search-field:hover {
    background: var(--background-soft);
}

.search-field:last-of-type {
    border-right: none;
}

.search-label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.6px;
    margin-bottom: 3px;
}

.custom-region-trigger,
.custom-date-trigger,
.custom-guest-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.field-icon {
    width: 17px;
    height: 17px;
    color: var(--primary);
    flex-shrink: 0;
}

.field-chevron {
    color: var(--text-light);
    flex-shrink: 0;
    margin-left: auto;
}

.region-display-text,
.guest-display-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.date-display-text {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.date-display-placeholder {
    color: var(--text-muted);
    font-weight: 500;
}

.search-submit-btn {
    background: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm);
    height: 48px;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.18s ease, transform 0.18s ease;
    white-space: nowrap;
}

.search-submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.search-submit-btn:active {
    transform: scale(0.98);
}

/* --------------------------------------------------------------------------
   6. GELİŞMİŞ POP-OVER TAKVİM & TARİH SEÇİMİ
   -------------------------------------------------------------------------- */
.date-picker-popover {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 340px;
    padding: 16px;
    z-index: 2000;
    display: none;
    text-align: left;
    color: var(--text);
}

.date-picker-popover.show {
    display: block;
    animation: fadeInDropdown 0.2s ease-out;
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translate(-50%, -6px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.dp-mobile-bar {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.dp-mobile-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
}

.dp-mobile-close {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: var(--text-muted);
}

.dp-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 6px 10px;
    background: var(--background-soft);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.dp-step-item {
    color: var(--text-muted);
}

.dp-step-item.active {
    color: var(--primary);
    font-weight: 700;
}

.dp-step-arrow {
    color: var(--text-light);
}

.dp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.dp-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.dp-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border);
    background: #ffffff;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.dp-nav-btn:hover:not(:disabled) {
    background: var(--background-soft);
    border-color: var(--primary);
}

.dp-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.dp-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.dp-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    row-gap: 4px;
}

.dp-day {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: background 0.12s ease, color 0.12s ease;
    user-select: none;
    position: relative;
}

.dp-day:hover:not(.dp-disabled) {
    background: var(--primary-light);
    color: var(--primary);
}

.dp-day.dp-empty {
    visibility: hidden;
    pointer-events: none;
}

.dp-day.dp-disabled {
    color: #cbd5e1;
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.5;
}

/* Seçilen Tarih Aralığı Görünümü */
.dp-day.dp-range-start {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.dp-day.dp-range-end {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.dp-day.dp-range-single {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-radius: 6px !important;
}

.dp-day.dp-in-range {
    background: var(--primary-tint) !important;
    color: var(--primary-dark) !important;
    border-radius: 0 !important;
}

.dp-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    gap: 8px;
}

.dp-btn-clear {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: var(--radius-xs);
}

.dp-btn-clear:hover {
    color: var(--danger);
    background: var(--danger-light);
}

.dp-status-text {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    flex-grow: 1;
}

.dp-btn-apply {
    background: var(--primary);
    color: #ffffff;
    border: none;
    font-size: 12.5px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: background 0.15s ease;
}

.dp-btn-apply:hover {
    background: var(--primary-hover);
}

.dp-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 1999;
}

/* --------------------------------------------------------------------------
   7. BÖLGE VE MİSAFİR POPOVER'LARI
   -------------------------------------------------------------------------- */
.region-picker-popover {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 320px;
    padding: 12px;
    z-index: 2000;
    display: none;
    text-align: left;
}

.region-picker-popover.show {
    display: block;
    animation: fadeInDropdown 0.2s ease-out;
}

.region-search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--background-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 7px 10px;
    margin-bottom: 8px;
}

.region-search-box svg {
    color: var(--text-light);
    flex-shrink: 0;
}

.region-search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 13.5px;
    width: 100%;
}

.region-list-wrap {
    max-height: 240px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.region-option-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.15s ease;
}

.region-option-item:hover,
.region-option-item.active {
    background: var(--primary-light);
}

.roi-icon {
    font-size: 16px;
}

.roi-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.roi-info strong {
    font-size: 13px;
    color: var(--text-dark);
}

.roi-info span {
    font-size: 11px;
    color: var(--text-muted);
}

.roi-badge {
    font-size: 10.5px;
    font-weight: 700;
    background: #e0f2fe;
    color: #0369a1;
    padding: 1px 6px;
    border-radius: var(--radius-full);
}

/* Misafir Popover */
.guest-picker-popover {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 280px;
    padding: 16px;
    z-index: 2000;
    display: none;
    text-align: left;
}

.guest-picker-popover.show {
    display: block;
    animation: fadeInDropdown 0.2s ease-out;
}

.guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.guest-row:last-of-type {
    border-bottom: none;
}

.guest-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-dark);
}

.guest-subtitle {
    font-size: 11.5px;
    color: var(--text-muted);
}

.guest-stepper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-step {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: #ffffff;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-step:hover:not(:disabled) {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}

.btn-step:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.step-count {
    font-size: 14px;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
}

.guest-popover-footer {
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
}

.guest-btn-done {
    background: var(--primary);
    color: #ffffff;
    border: none;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* Hızlı Kategori Rozetleri (Pills) */
.quick-filter-pills {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.filter-pill {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: all 0.18s ease;
}

.filter-pill:hover {
    background: #ffffff;
    color: var(--primary);
}

.verified-guarantee-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 12.5px;
    color: #f1f5f9;
}

.verified-guarantee-pill svg {
    color: #4ade80;
}

/* --------------------------------------------------------------------------
   8. VİLLA KARTLARI & GRID MİMARİSİ
   -------------------------------------------------------------------------- */
.section {
    padding: 56px 0;
}

.section-title-wrap {
    margin-bottom: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.section-heading-main {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
}

.section-subheading-main {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-top: 4px;
}

.villas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.villa-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.22s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.villa-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
}

.villa-card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f1f5f9;
}

.villa-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.villa-card:hover .villa-card-thumb img {
    transform: scale(1.025);
}

.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-block;
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
    letter-spacing: 0.2px;
    line-height: 1.3;
    user-select: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.card-badge.instant,
.card-badge.badge-instant {
    background: #0284c7 !important;
    color: #ffffff !important;
}

.card-badge.discount,
.card-badge.badge-discount {
    background: #e11d48 !important;
    color: #ffffff !important;
}

.card-badge.featured,
.card-badge.badge-featured {
    background: #0b3741 !important;
    color: #ffffff !important;
}

.card-fav-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.card-fav-btn:hover {
    background: #ffffff;
    color: #ef4444;
    transform: scale(1.1);
}

.card-fav-btn.active {
    color: #ef4444;
    background: #ffffff;
    animation: heartPulse 0.25s ease;
}

@keyframes heartPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }
}

.card-thumb-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 2;
}

.card-thumb-dots span {
    width: 5px;
    height: 5px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.55);
}

.card-thumb-dots span.active {
    background: #ffffff;
    width: 12px;
}

.villa-card-body {
    padding: 14px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.villa-card-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.villa-card-location svg {
    color: #ef4444;
    flex-shrink: 0;
}

.villa-card-title {
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
}

.villa-card-title a {
    color: var(--text-dark);
}

.villa-card-title a:hover {
    color: var(--primary);
}

.villa-card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    margin-bottom: 12px;
}

.rating-stars {
    color: var(--star-color);
}

.rating-score {
    font-weight: 700;
    color: var(--text-dark);
}

.rating-count {
    color: var(--text-muted);
}

.villa-card-specs {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.spec-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--background-soft);
    border: 1px solid var(--border);
    padding: 3px 8px;
    border-radius: var(--radius-xs);
    font-size: 11.5px;
    font-weight: 500;
    color: var(--text-muted);
}

.villa-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-sub {
    font-size: 10.5px;
    color: var(--text-muted);
}

.price-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-old {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-val {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.price-unit {
    font-size: 11.5px;
    color: var(--text-muted);
}

.btn-inspect {
    background: var(--primary);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: var(--radius-sm);
    transition: background 0.15s ease;
}

.btn-inspect:hover {
    background: var(--primary-hover);
}

/* --------------------------------------------------------------------------
   9. POPÜLER BÖLGELER & SPOTLIGHT VİLLA
   -------------------------------------------------------------------------- */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.region-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: block;
    box-shadow: var(--shadow-sm);
}

.region-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.region-card:hover img {
    transform: scale(1.04);
}

.region-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    color: #ffffff;
}

.region-card-title {
    font-size: 17px;
    font-weight: 700;
}

.region-card-count {
    font-size: 12px;
    color: #cbd5e1;
    margin-top: 2px;
}

/* Spotlight Villa */
.spotlight-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    box-shadow: var(--shadow-md);
}

.spotlight-media {
    position: relative;
    min-height: 320px;
}

.spotlight-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-tag {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid var(--accent-border);
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    width: fit-content;
}

.spotlight-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.spotlight-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   10. GÜVEN & DEĞER ÖNERİSİ BÖLÜMÜ (TÜRSAB, PAYTR, YERİNDE İNCELEME)
   -------------------------------------------------------------------------- */
.trust-banner-section {
    background: var(--background-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 44px 0;
}

.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.trust-icon-box {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: #ffffff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: var(--shadow-xs);
}

.trust-icon-box svg {
    width: 22px;
    height: 22px;
}

.trust-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.trust-item p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   11. SSS & MÜŞTERİ YORUMLARI
   -------------------------------------------------------------------------- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: var(--star-color);
    font-size: 14px;
    margin-bottom: 10px;
}

.review-comment {
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.review-author strong {
    font-size: 13px;
    color: var(--text-dark);
    display: block;
}

.review-author span {
    font-size: 11.5px;
    color: var(--text-muted);
}

/* SSS Accordion */
.faq-grid {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #ffffff;
    overflow: hidden;
}

.faq-question {
    padding: 16px 20px;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 16px 20px;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   12. SİTE FOOTER (VİLLASEPETİ DÜZENİ)
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--footer-bg);
    color: #cbd5e1;
    padding: 56px 0 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-social-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-title {
    font-size: 13px;
    color: #94a3b8;
}

.footer-social-icons {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-xs);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: all 0.15s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.social-icon.whatsapp-icon:hover {
    color: #4ade80;
}

.footer-app-badges {
    display: flex;
    gap: 10px;
}

.app-badge-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-size: 11px;
}

.app-badge-btn strong {
    font-size: 12px;
    display: block;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 36px 0;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 13px;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12.5px;
    color: #64748b;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-copy strong {
    color: #94a3b8;
}

.footer-bottom-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.trust-badge-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-xs);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.payment-card-logo {
    background: #ffffff;
    color: #0f172a;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-xs);
    letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   13. FORM ALANLARI, BİLDİRİMLER & FLASH ALERTS
   -------------------------------------------------------------------------- */
.flash-container {
    max-width: var(--container);
    margin: 16px auto 0 auto;
    padding: 0 20px;
}

.flash-alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.flash-alert.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.flash-alert.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.form-control,
.filter-input {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--text);
    font-size: 13.5px;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control:focus,
.filter-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-tint);
}

/* --------------------------------------------------------------------------
   14. RESPONSIVE UYUMLULUK (TABLET & MOBİL)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .villas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spotlight-card {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 13.5px;
        margin-bottom: 20px;
    }

    /* Arama Formu Mobilde Dikey Kartlara Dönüşür */
    .search-form {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .search-field {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 8px 10px;
    }

    .search-field:last-of-type {
        border-bottom: none;
    }

    .search-submit-btn {
        width: 100%;
        margin-top: 4px;
    }

    /* Mobilde Takvim Popover: Ekrandan Taşmayan Alt Panel (Bottom Sheet) */
    .date-picker-popover {
        position: fixed;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        transform: none !important;
        width: 100%;
        max-height: 85vh;
        overflow-y: auto;
        border-radius: 18px 18px 0 0;
        border-bottom: none;
        box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.25);
        padding: 20px;
    }

    .dp-mobile-bar {
        display: flex;
    }

    .dp-backdrop.show {
        display: block;
    }

    .villas-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-header-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --------------------------------------------------------------------------
   15. ERİŞİLEBİLİRLİK (REDUCED MOTION)
   -------------------------------------------------------------------------- */
@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;
    }
}

/* ==========================================================================
   ONLINE VİLLACIM - OFFICIAL UI SYSTEM (Villa Sepeti Design Flow)
   ========================================================================== */

:root {
    --teal-primary: #0084a9;
    --teal-dark: #006482;
    --teal-hover: #009ecb;
    --teal-light: #e0f2fe;
    --brand-header-bg: #ffffff;
    --brand-topbar-bg: #f8fafc;
    --apricot-wave: linear-gradient(135deg, #fba861 0%, #f68536 100%);
    --spotlight-bg: #eef7f9;
}

/* ==========================================================================
   1. TOP BAR (VillaSepeti Birebir Üst Çubuk - Image 2)
   ========================================================================== */
.top-bar {
    background: #0b3741 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    font-size: 12.5px;
    padding: 7px 0;
    position: relative;
    z-index: 1002;
    transition: margin-top 0.25s ease, transform 0.25s ease, opacity 0.2s ease;
}

body.is-scrolled .top-bar {
    margin-top: -42px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12.5px;
}

.top-bar-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}

.top-bar-item a:hover {
    color: #38bdf8;
}

.top-bar-item svg {
    color: rgba(255, 255, 255, 0.9);
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.topbar-search-form {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 3px 12px;
    gap: 6px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.topbar-search-form:focus-within {
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.4);
}

.topbar-search-form svg {
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}

.topbar-search-input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 12px;
    width: 125px;
    transition: width 0.25s ease;
}

.topbar-search-input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.topbar-search-input:focus {
    width: 165px;
}

.top-bar-link {
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.15s ease;
}

.top-bar-link:hover {
    opacity: 1;
}

.top-bar-currency {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    opacity: 0.95;
}

.top-bar-lang {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.95;
}

/* ==========================================================================
   2. MAIN SITE HEADER (VillaSepeti Birebir Header Sistemi)
   ========================================================================== */
.site-header {
    background: #0b3741;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    height: 68px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.25s ease, height 0.25s ease, box-shadow 0.25s ease;
}

/* En Üstteyken & Hero Üzerinde (Image 2 Birebir) */
.site-header.header-on-hero:not(.scrolled) {
    position: relative;
    margin-bottom: -68px;
    background: linear-gradient(180deg, rgba(8, 38, 48, 0.72) 0%, rgba(8, 38, 48, 0.15) 100%) !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Aşağıdayken (Sticky Scrolled State - Image 1 Birebir) */
.site-header.scrolled,
body.is-scrolled .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: #0b3741 !important;
    height: 64px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.24) !important;
    margin-bottom: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-header-logo-img {
    height: 32px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

/* 1. Orta Kısım: Acenta Metni (En Üsteyken Görünür - Image 2) */
.header-agency-text {
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    text-align: center;
}

body.is-scrolled .header-agency-text,
.site-header.scrolled .header-agency-text {
    display: none !important;
}

/* 2. Orta Kısım: Mini Kapsül Arama Çubuğu (Aşağıdayken Görünür - Image 1) */
.header-mini-search {
    display: none;
    align-items: center;
    background: #ffffff;
    border-radius: 999px;
    height: 42px;
    padding: 3px 5px 3px 18px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
    gap: 12px;
    cursor: pointer;
    user-select: none;
    animation: miniPillFade 0.2s ease-out;
}

@keyframes miniPillFade {
    from {
        opacity: 0;
        transform: translateY(-5px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

body.is-scrolled .header-mini-search,
.site-header.scrolled .header-mini-search {
    display: flex !important;
}

.mini-search-item {
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    white-space: nowrap;
    transition: color 0.15s ease;
}

.mini-search-item:hover {
    color: #0084a9;
}

.mini-search-divider {
    width: 1px;
    height: 18px;
    background: #e2e8f0;
    flex-shrink: 0;
}

.mini-search-filter-btn {
    background: transparent;
    border: none;
    outline: none;
    color: #0b3741;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background 0.15s ease, color 0.15s ease;
}

.mini-search-filter-btn:hover {
    background: #f1f5f9;
    color: #0084a9;
}

.mini-search-submit-btn {
    background: #0084a9;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.15s ease, transform 0.15s ease;
}

.mini-search-submit-btn:hover {
    background: #009ecb;
    transform: scale(1.05);
}

/* Sağ Aksiyonlar: Favoriler & Giriş Yap / Üye Ol */
.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.header-fav-link {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0.95;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.header-fav-link:hover {
    opacity: 1;
    transform: scale(1.08);
}

.header-fav-link .fav-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #ef4444;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0b3741;
}

.header-user-link {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    border: none;
    opacity: 0.95;
    transition: opacity 0.15s ease;
}

.header-user-link:hover {
    opacity: 1;
}

.header-user-link svg {
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 4px;
}

/* 3. HERO & SEARCH SECTION (VillaSepeti Birebir) */
.hero-section {
    position: relative;
    min-height: 520px;
    background: linear-gradient(180deg, rgba(8, 38, 48, 0.45) 0%, rgba(11, 52, 66, 0.78) 100%),
        url('https://images.unsplash.com/photo-1540541338287-41700207dee6?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat !important;
    padding: 85px 0 90px 0;
    overflow: hidden;
}

/* Dekoratif Palmiye Efektleri */
.hero-palm-overlay-left {
    position: absolute;
    top: 0;
    left: -40px;
    width: 240px;
    height: 280px;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-palm-overlay-right {
    position: absolute;
    top: 0;
    right: -40px;
    width: 240px;
    height: 280px;
    background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1040px;
    margin: 0 auto;
}

.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(11, 55, 65, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #e0f2fe;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 20px;
    border-radius: 9999px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-trust-pill svg {
    color: #38bdf8;
}

.hero-title {
    font-size: 42px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    color: #ffffff !important;
    margin-bottom: 16px;
    letter-spacing: -0.6px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.hero-title .hero-brand-name {
    background: linear-gradient(135deg, #ffffff 15%, #a5f3fc 55%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    font-weight: 800;
    letter-spacing: -0.4px;
    filter: drop-shadow(0 2px 10px rgba(11, 55, 65, 0.6));
    padding-bottom: 4px;
}

.hero-title .hero-brand-name::after {
    content: '';
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: 0px;
    height: 3px;
    background: linear-gradient(90deg, #38bdf8 0%, #0084a9 75%, transparent 100%);
    border-radius: 9999px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    font-size: 16px !important;
    color: #e2e8f0 !important;
    margin-bottom: 34px;
    font-weight: 500;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* Arama Çubuğu (Image 1 Birebir VillaSepeti Yuvarlak Pill Kartı) */
.search-box-card {
    background: #ffffff !important;
    border-radius: 40px !important;
    padding: 18px 24px 18px 24px !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16) !important;
    border: none !important;
    max-width: 1060px;
    margin: 0 auto;
    position: relative;
    z-index: 50;
}

.search-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.search-fields-row {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1fr !important;
    gap: 0 !important;
    align-items: center !important;
    margin-bottom: 14px;
}

.search-field {
    text-align: left;
    padding: 6px 18px !important;
    border-right: 1px solid #e2e8f0 !important;
    position: relative;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.15s ease;
}

.search-field:hover {
    background: #f8fafc;
}

.search-field:last-child {
    border-right: none !important;
}

.search-label {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #0084a9 !important;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 4px;
    display: block;
}

.field-icon {
    width: 18px !important;
    height: 18px !important;
    color: #0084a9 !important;
    flex-shrink: 0;
}

.field-chevron {
    color: #94a3b8 !important;
    flex-shrink: 0;
    margin-left: auto;
}

.region-display-text,
.guest-display-text {
    font-size: 14.5px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.date-display-placeholder {
    color: #64748b !important;
    font-weight: 500 !important;
    font-size: 14px !important;
}

.search-btn-row {
    display: flex !important;
    justify-content: flex-start !important;
    padding-left: 6px;
}

.search-submit-btn {
    background: #0084a9 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 12px 36px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 14px rgba(0, 132, 169, 0.35) !important;
    transition: all 0.2s ease;
}

.search-submit-btn:hover {
    background: #006f8e !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 132, 169, 0.45) !important;
}

/* Hızlı Filtre Pill Butonları */
.quick-filter-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.filter-pill {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
}

.filter-pill:hover {
    background: #ffffff;
    color: #0e7490;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.verified-guarantee-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    background: rgba(14, 116, 144, 0.35);
    border: 1px solid rgba(56, 189, 248, 0.4);
    color: #bae6fd;
    border-radius: 30px;
    padding: 8px 22px;
    font-size: 13.5px;
    font-weight: 600;
}

/* 4. GENEL BÖLÜM BAŞLIKLARI */
.section-title-wrap {
    margin-bottom: 32px;
}

.section-title-wrap.text-center {
    text-align: center;
}

.section-heading-main {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.4px;
    margin-bottom: 6px;
}

.section-subheading-main {
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
}

/* 5. VİLLA KARTLARI */
.villas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.villa-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.villa-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
    border-color: #cbd5e1;
}

.villa-card-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.villa-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.villa-card:hover .villa-card-thumb img {
    transform: scale(1.05);
}

.card-thumb-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
}

.card-thumb-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    transition: all 0.2s ease;
}

.card-thumb-dots span.active {
    background: #ffffff;
    width: 14px;
    border-radius: 4px;
}

.card-fav-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    z-index: 3;
}

.card-fav-btn:hover {
    background: #ffffff;
    color: #f43f5e;
    transform: scale(1.1);
}

.card-fav-btn.active {
    color: #f43f5e;
}

.villa-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.villa-card-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--teal-primary);
    margin-bottom: 4px;
}

.villa-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.35;
}

.villa-card-title a {
    color: inherit;
}

.villa-card-title a:hover {
    color: var(--teal-primary);
}

.villa-card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    margin-bottom: 12px;
}

.villa-card-rating .rating-stars {
    color: #f59e0b;
}

.villa-card-rating .rating-score {
    font-weight: 700;
    color: #0f172a;
}

.villa-card-rating .rating-count {
    color: #64748b;
    font-size: 12px;
}

.villa-card-specs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
    margin-bottom: 12px;
}

.spec-pill {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    color: #475569;
    font-weight: 500;
}

.spec-pill svg {
    color: var(--teal-primary);
}

.villa-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.price-sub {
    font-size: 10.5px;
    color: #64748b;
    display: block;
    font-weight: 500;
}

.price-val {
    font-size: 17px;
    font-weight: 800;
    color: var(--teal-primary);
}

.price-unit {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 500;
}

.btn-inspect {
    background: #f0fdfa !important;
    color: var(--teal-primary) !important;
    border: 1px solid #ccfbf1 !important;
    padding: 7px 16px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    transition: all 0.2s ease !important;
    text-decoration: none;
}

.btn-inspect:hover {
    background: var(--teal-primary) !important;
    color: #ffffff !important;
    border-color: var(--teal-primary) !important;
}

/* 6. SLIDER NOKTALARI & MERKEZİ BUTON */
.featured-bottom-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
}

.slider-dots-indicator {
    display: flex;
    gap: 6px;
}

.slider-dots-indicator span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: all 0.2s ease;
}

.slider-dots-indicator span.active {
    background: var(--teal-primary);
    width: 20px;
    border-radius: 4px;
}

.btn-pill-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid var(--teal-primary);
    color: var(--teal-primary);
    padding: 9px 26px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    background: transparent;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-pill-action:hover {
    background: var(--teal-primary);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14, 116, 144, 0.25);
}

/* 7. BU AYIN EN ÇOK TERCİH EDİLEN VİLLASI (Spotlight Card) */
.section-spotlight-wrap {
    padding: 20px 0 40px 0;
}

.spotlight-card {
    background: var(--spotlight-bg);
    border: 1px solid #cce7ed;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    box-shadow: 0 8px 30px rgba(14, 116, 144, 0.08);
}

.spotlight-info {
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-eyebrow {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.badge-featured-month {
    background: var(--teal-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.badge-special-deal {
    background: #fef3c7;
    color: #92400e;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.spotlight-title {
    font-size: 28px;
    font-weight: 800;
    color: #082d38;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.spotlight-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--teal-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
}

.spotlight-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.spotlight-rating .rating-stars {
    color: #f59e0b;
    font-size: 15px;
}

.spotlight-rating .rating-number {
    font-weight: 800;
    font-size: 15px;
    color: #0f172a;
}

.spotlight-rating .rating-badge-text {
    font-size: 13px;
    color: #475569;
}

.spotlight-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.spotlight-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #334155;
    font-weight: 500;
}

.spotlight-features-list li svg {
    color: var(--teal-primary);
    flex-shrink: 0;
}

.spotlight-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(14, 116, 144, 0.15);
}

.spotlight-price .sp-label {
    font-size: 11.5px;
    color: #64748b;
}

.spotlight-price .sp-val {
    font-size: 24px;
    font-weight: 800;
    color: var(--teal-primary);
}

.btn-spotlight-cta {
    background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%);
    color: #ffffff;
    padding: 13px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(14, 116, 144, 0.3);
    transition: all 0.2s ease;
}

.btn-spotlight-cta:hover {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(14, 116, 144, 0.4);
}

.spotlight-media {
    position: relative;
    min-height: 380px;
}

.spotlight-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-tag-verified {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(6px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--teal-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 8. BÖLGE DİZİNİ (4 Kolonlu Link Tablosu) */
.destinations-directory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.directory-column {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px;
    transition: border-color 0.2s ease;
}

.directory-column:hover {
    border-color: #cbd5e1;
}

.directory-column-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--teal-primary);
}

.directory-column-title a {
    color: inherit;
    text-decoration: none;
}

.directory-column-title a:hover {
    color: var(--teal-primary);
}

.directory-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.directory-links-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    color: #475569;
    font-weight: 500;
    padding: 4px 0;
    text-decoration: none;
    transition: all 0.15s ease;
}

.directory-links-list li a:hover {
    color: var(--teal-primary);
    transform: translateX(3px);
}

.badge-count {
    background: #f1f5f9;
    color: var(--teal-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
}

/* 9. DALGALI TURUNCU PROMO BANNERI */
.wave-promo-section {
    position: relative;
    background: var(--apricot-wave);
    border-radius: 20px;
    padding: 44px 56px;
    margin: 40px auto;
    max-width: var(--container);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(246, 133, 54, 0.2);
}

.wave-promo-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.wave-promo-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.wave-promo-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.wave-promo-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 580px;
}

.btn-wave-action {
    background: var(--brand-header-bg);
    color: #ffffff;
    padding: 13px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(7, 38, 48, 0.35);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-wave-action:hover {
    background: #06222b;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(7, 38, 48, 0.45);
}

/* 10. NEDEN VİLLA TATİLİ (4 Kutu) */
.why-villa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.why-villa-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.25s ease;
}

.why-villa-card:hover {
    border-color: var(--teal-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.why-villa-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f0fdfa;
    color: var(--teal-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    border: 1px solid #ccfbf1;
}

.why-villa-icon svg {
    width: 24px;
    height: 24px;
}

.why-villa-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.why-villa-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.55;
}

/* 11. GÜVENCE ŞERİDİ (Trust Pillars - Ultra Corporate & Modern) */
.trust-pillars-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
    padding: 30px 0;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 2px 8px rgba(0, 0, 0, 0.02);
}

.trust-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}

.trust-pillar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 14px;
    border-radius: 12px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Masaüstü şık dikey ayırıcı çizgiler */
@media (min-width: 1025px) {
    .trust-pillar-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -12px;
        top: 15%;
        height: 70%;
        width: 1px;
        background: linear-gradient(180deg, rgba(226, 232, 240, 0.1) 0%, rgba(203, 213, 225, 0.7) 50%, rgba(226, 232, 240, 0.1) 100%);
    }
}

.trust-pillar-item:hover {
    background: #ffffff;
    box-shadow: 0 8px 24px -4px rgba(11, 55, 65, 0.08), 0 2px 6px -1px rgba(11, 55, 65, 0.04);
    transform: translateY(-2px);
}

/* İkon Rozet Kutuları */
.tp-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-icon-villa {
    background: linear-gradient(135deg, #e0f2fe 0%, #ccebfb 100%);
    color: #0284c7;
    border: 1px solid rgba(14, 165, 233, 0.25);
    box-shadow: 0 3px 8px rgba(14, 165, 233, 0.12);
}

.tp-icon-payment {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.25);
    box-shadow: 0 3px 8px rgba(34, 197, 94, 0.12);
}

.tp-icon-support {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #4f46e5;
    border: 1px solid rgba(99, 102, 241, 0.25);
    box-shadow: 0 3px 8px rgba(99, 102, 241, 0.12);
}

.tp-icon-price {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 3px 8px rgba(245, 158, 11, 0.14);
}

.trust-pillar-item:hover .tp-icon-box {
    transform: scale(1.08) rotate(2deg);
}

/* Metin İçeriği ve Tipografi */
.tp-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.tp-content .tp-title {
    display: block;
    font-size: 14.5px;
    color: #0b3741;
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 1.3;
    font-family: var(--font-heading);
    margin-bottom: 2px;
}

.tp-content .tp-desc {
    display: block;
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    font-weight: 400;
}

/* 12. ÖNE ÇIKAN BÖLGELER (5 Yuvarlak Bölge Diski) */
.circular-regions-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fdf9f5 50%, #ffffff 100%);
    position: relative;
}

.circular-regions-track {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    margin-top: 36px;
}

.circular-region-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.circle-disk-frame {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.circle-disk-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.circular-region-item:hover .circle-disk-frame {
    transform: scale(1.06) translateY(-6px);
    border-color: var(--teal-primary);
    box-shadow: 0 16px 32px rgba(14, 116, 144, 0.25);
}

.circular-region-item:hover .circle-disk-frame img {
    transform: scale(1.12);
}

.circle-disk-name {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    transition: color 0.2s ease;
}

.circular-region-item:hover .circle-disk-name {
    color: var(--teal-primary);
}

/* 13. MİSAFİR YORUMLARI & ONAY MÜHRÜ */
.reviews-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
}

.seal-verified-reviews {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0fdf4;
    border: 2px dashed #16a34a;
    padding: 8px 18px;
    border-radius: 30px;
    color: #15803d;
}

.seal-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #16a34a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
}

.seal-text strong {
    display: block;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.2;
}

.seal-text span {
    font-size: 11px;
    color: #166534;
}

.reviews-custom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-quote-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.rq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.rq-stars {
    color: #f59e0b;
    font-size: 15px;
    letter-spacing: 2px;
}

.rq-verified-tag {
    font-size: 10.5px;
    font-weight: 700;
    background: #ecfdf5;
    color: #059669;
    padding: 3px 8px;
    border-radius: 10px;
}

.rq-villa-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--teal-primary);
    margin-bottom: 8px;
}

.rq-villa-title small {
    color: #64748b;
    font-weight: 400;
}

.rq-comment {
    font-size: 13px;
    color: #334155;
    font-style: italic;
    line-height: 1.55;
    margin-bottom: 16px;
    flex-grow: 1;
}

.rq-author strong {
    font-size: 13px;
    color: #0f172a;
    display: block;
}

.rq-author span {
    font-size: 11.5px;
    color: #64748b;
}

/* 14. VİLLA KİRALAMA REHBERİ (6 Kutu) */
.guide-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.guide-cat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px;
    transition: border-color 0.2s ease;
}

.guide-cat-card:hover {
    border-color: #cbd5e1;
}

.guide-cat-title a {
    font-size: 15.5px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
}

.guide-cat-title a:hover {
    color: var(--teal-primary);
}

.guide-cat-desc {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.55;
    margin-top: 8px;
}

/* 15. EVİNİZİ ONLİNE VİLLACIM İLE KİRALAYIN */
.villa-owner-banner-section {
    padding: 20px 0 50px 0;
}

.villa-owner-banner-box {
    position: relative;
    background: linear-gradient(rgba(8, 38, 48, 0.35), rgba(8, 38, 48, 0.45)),
        url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
    border-radius: 20px;
    padding: 60px 48px;
    overflow: hidden;
}

.owner-banner-card {
    background: #ffffff;
    max-width: 480px;
    padding: 34px;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.owner-banner-title {
    font-size: 24px;
    font-weight: 800;
    color: #082d38;
    margin-bottom: 12px;
}

.owner-banner-desc {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 22px;
}

.btn-owner-apply {
    display: inline-block;
    background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(14, 116, 144, 0.3);
    transition: all 0.2s ease;
}

.btn-owner-apply:hover {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(14, 116, 144, 0.4);
}

/* 16. FOOTER (Image 2 Birebir VillaSepeti Açık Renk Kurumsal Footer) */
.site-footer {
    background: #ffffff !important;
    color: #1e293b !important;
    border-top: 1px solid #eef2f6 !important;
    padding: 38px 0 24px 0 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* 1. Üst Satır: Logo + Yatay Linkler + App Store & Google Play Rozetleri */
.footer-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo-img {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
}

.site-header-logo-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.store-badge-link {
    display: inline-block;
    transition: opacity 0.15s ease;
    text-decoration: none;
}

.store-badge-link:hover {
    opacity: 0.86;
}

.store-badge-img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-nav-menu a {
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-nav-menu a:hover {
    color: #0084a9;
}

.footer-store-badges {
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-badge-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #000000;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 7px;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.store-badge-btn:hover {
    opacity: 0.88;
}

.store-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.store-badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.1;
}

.sb-label {
    font-size: 9.5px;
    color: #94a3b8;
}

.sb-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
}

/* 2. Orta Satır: İletişim, Çalışma Saatleri, TÜRSAB & Rozetler */
.footer-middle-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    padding: 24px 0 20px 0;
    border-bottom: 1px solid #f1f5f9;
}

.footer-info-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 170px;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-label {
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
}

.info-value {
    font-size: 13.5px;
    color: #475569;
    text-decoration: none;
    transition: color 0.15s ease;
}

.info-value:hover {
    color: #0084a9;
}

.footer-hours-col {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 210px;
}

.hours-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.hours-line {
    font-size: 13px;
    color: #475569;
}

.footer-trust-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
    max-width: 580px;
}

.agency-badge-text {
    font-size: 13px;
    color: #334155;
    font-weight: 500;
}

.trust-and-social-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-social-circles {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sc-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.15s ease;
}

.sc-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.sc-x {
    background: #000000;
}

.sc-fb {
    background: #1877F2;
}

.sc-ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.sc-in {
    background: #0A66C2;
}

.sc-yt {
    background: #FF0000;
}

.footer-badges-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.badge-item-wrap {
    display: inline-flex;
    align-items: center;
    transition: transform 0.15s ease;
}

.badge-item-wrap:hover {
    transform: translateY(-2px);
}

.badge-item-wrap img {
    height: 38px;
    width: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* 3. Banka & Kart Şeridi (Gerçek Görseller) */
.footer-bank-strip {
    padding: 22px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-logos-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
}

.bank-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 26px;
}

.bank-img {
    height: 22px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    transition: transform 0.15s ease;
}

.bank-img:hover {
    transform: scale(1.06);
}

.footer-partner-logo {
    display: flex;
    align-items: center;
}

.footer-partner-logo img {
    height: 32px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* 4. En Alt Telif & Partner Şeridi */
.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 20px;
    font-size: 12.5px;
    color: #64748b;
}

.footer-legal-copy {
    display: flex;
    align-items: center;
    gap: 8px;
}

.f-dot {
    color: #cbd5e1;
}

.cookie-settings-link {
    color: #64748b;
    text-decoration: none;
    transition: color 0.15s ease;
}

.cookie-settings-link:hover {
    color: #0084a9;
    text-decoration: underline;
}

/* Ev Sahipleri Sayfası (Evinizi Kiralayın) */
.host-hero-section {
    background: linear-gradient(135deg, #0084a9 0%, #005a75 100%);
    color: #ffffff;
    padding: 60px 0 70px 0;
}

.host-hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.host-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.host-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.host-desc {
    font-size: 15px;
    color: #e0f2fe;
    line-height: 1.6;
    margin-bottom: 28px;
}

.host-stats-row {
    display: flex;
    gap: 24px;
}

.host-stat-box {
    display: flex;
    flex-direction: column;
}

.host-stat-box strong {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
}

.host-stat-box span {
    font-size: 12px;
    color: #bae6fd;
}

.host-form-card {
    background: #ffffff;
    color: #1e293b;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.host-form-title {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.host-form-sub {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
}

.host-apply-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-item label {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.host-input {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13.5px;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.host-input:focus {
    outline: none;
    border-color: #0084a9;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 132, 169, 0.12);
}

.host-submit-btn {
    background: #0084a9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 13px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease;
    margin-top: 6px;
}

.host-submit-btn:hover {
    background: #006f8e;
}

.host-benefits-section {
    padding: 60px 0 70px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.benefit-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
}

/* 17. RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
    .villas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destinations-directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-villa-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-custom-grid {
        grid-template-columns: 1fr;
    }

    .guide-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spotlight-card {
        grid-template-columns: 1fr;
    }

    .spotlight-media {
        min-height: 280px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {

    .top-bar-left .top-bar-item:nth-child(n+3),
    .top-bar-right .topbar-search-form,
    .top-bar-right .top-bar-link {
        display: none !important;
    }

    .header-agency-text {
        display: none !important;
    }

    .header-mini-search {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block !important;
    }

    .header-user-link span {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .search-fields-row {
        grid-template-columns: 1fr !important;
    }

    .search-field {
        border-right: none !important;
        border-bottom: 1px solid #f1f5f9 !important;
        padding: 10px 6px !important;
    }

    .search-field:last-child {
        border-bottom: none !important;
    }

    .search-box-card {
        border-radius: 20px !important;
        padding: 16px !important;
    }

    .search-btn-row {
        width: 100% !important;
        padding-left: 0 !important;
        margin-top: 10px !important;
    }

    .search-submit-btn {
        width: 100% !important;
        justify-content: center !important;
        border-radius: 999px !important;
    }

    .footer-top-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
    }

    .footer-nav-menu {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .footer-middle-row {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .footer-trust-col {
        max-width: 100% !important;
    }

    .trust-and-social-wrap {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .bank-logos-wrap {
        justify-content: center !important;
        gap: 16px !important;
    }

    .footer-bottom-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .host-hero-container {
        grid-template-columns: 1fr !important;
    }

    .benefits-grid {
        grid-template-columns: 1fr !important;
    }

    .villas-grid {
        grid-template-columns: 1fr;
    }

    .destinations-directory-grid {
        grid-template-columns: 1fr;
    }

    .why-villa-grid {
        grid-template-columns: 1fr;
    }

    .trust-pillars-grid {
        grid-template-columns: 1fr;
    }

    .guide-categories-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .wave-promo-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 28px !important;
    }

    .circular-regions-track {
        gap: 16px;
    }

    .circle-disk-frame {
        width: 110px;
        height: 110px;
    }
}

/* Global Solid & Auth Buttons */
.btn-auth-submit {
    width: 100%;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.28) !important;
    transition: all 0.2s ease !important;
    text-decoration: none;
}

.btn-auth-submit:hover {
    background: linear-gradient(135deg, #0369a1 0%, #075985 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.38) !important;
}

.btn-auth-submit.accent {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.28) !important;
}

.btn-auth-submit.accent:hover {
    background: linear-gradient(135deg, #c2410c 0%, #9a3412 100%) !important;
    box-shadow: 0 6px 18px rgba(234, 88, 12, 0.38) !important;
}