/* ===================================================
   TURKBEDS CORPORATE HOUSING — Main Stylesheet
   Brand: Red (#E31E24), Black (#111111), White (#FFFFFF)
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

/* ─── CSS Variables ─────────────────────────────── */
:root {
    --red: #E31E24;
    --red-dark: #B71C1F;
    --red-light: #FF4A4F;
    --red-soft: #FFF0F0;
    --black: #111111;
    --black-90: #1A1A1A;
    --grey-900: #222222;
    --grey-800: #333333;
    --grey-700: #555555;
    --grey-500: #888888;
    --grey-300: #CCCCCC;
    --grey-200: #E5E5E5;
    --grey-100: #F5F5F5;
    --grey-50: #FAFAFA;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, .20);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --transition: all 0.25s cubic-bezier(.4, 0, .2, 1);
}

/* ─── Reset ─────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

input,
select,
textarea {
    font-family: inherit;
}

/* ─── Typography ─────────────────────────────────── */
.h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.h3 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
}

.h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

.body-lg {
    font-size: 1.125rem;
    line-height: 1.7;
}

.body-sm {
    font-size: 0.875rem;
    line-height: 1.5;
}

.caption {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ─── Layout Utilities ───────────────────────────── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 48px 0;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.grid {
    display: grid;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

/* ─── Color Utilities ────────────────────────────── */
.text-red {
    color: var(--red);
}

.text-grey {
    color: var(--grey-700);
}

.text-white {
    color: var(--white);
}

.bg-red {
    background: var(--red);
}

.bg-black {
    background: var(--black);
}

.bg-grey {
    background: var(--grey-100);
}

.bg-white {
    background: var(--white);
}

/* ─── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-xl {
    padding: 18px 44px;
    font-size: 1.0625rem;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(227, 30, 36, .35);
}

.btn-primary:hover {
    background: var(--red-dark);
    box-shadow: 0 4px 16px rgba(227, 30, 36, .45);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--black);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--grey-800);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.btn-outline-red {
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red);
}

.btn-outline-red:hover {
    background: var(--red);
    color: var(--white);
}

.btn-ghost {
    background: rgba(255, 255, 255, .12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .25);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .2);
}

.btn-white {
    background: var(--white);
    color: var(--black);
}

.btn-white:hover {
    background: var(--grey-100);
}

/* ─── Header / Navigation ────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 32px;
    max-width: 1440px;
    margin: 0 auto;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-symbol {
    width: 150px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-symbol svg {
    width: 100%;
    height: 100%;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--grey-500);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--grey-700);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--black);
    background: var(--grey-100);
}

.nav-link.active {
    color: var(--red);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-nav-link {
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--grey-200);
    color: var(--grey-800);
}

/* ─── Hero ───────────────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--black-90);
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    padding-top: 110px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1600');
    background-size: cover;
    background-position: center;
    opacity: 0.38;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, .92) 0%, rgba(17, 17, 17, .6) 60%, rgba(227, 30, 36, .12) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(227, 30, 36, .15);
    border: 1px solid rgba(227, 30, 36, .4);
    color: #FF7A7E;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--red);
}

.hero-desc {
    color: rgba(255, 255, 255, .72);
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-stat {}

.hero-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-stat-num span {
    color: var(--red);
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, .55);
    margin-top: 4px;
}

/* ─── Search Bar ─────────────────────────────────── */
.search-strip {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-xl);
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    z-index: 10;
    max-width: 860px;
}

.search-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px 16px;
    border-right: 1px solid var(--grey-200);
}

.search-field:last-of-type {
    border-right: none;
}

.search-field-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--black);
    margin-bottom: 4px;
}

.search-field select,
.search-field input {
    background: none;
    border: none;
    outline: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--grey-700);
    padding: 0;
    width: 100%;
}

.search-btn {
    flex-shrink: 0;
}

/* ─── Section Headers ────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 16px;
}

.section-desc {
    color: var(--grey-700);
    max-width: 560px;
    margin: 0 auto;
}

/* ─── Property Cards ─────────────────────────────── */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.property-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--grey-200);
    transition: var(--transition);
    position: relative;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.card-image-wrap {
    position: relative;
    overflow: hidden;
    padding-top: 62%;
    background: var(--grey-200);
}

.card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card:hover .card-image {
    transform: scale(1.04);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--white);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}

.card-badge.featured {
    background: var(--red);
    color: var(--white);
}

.card-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.card-wishlist:hover {
    background: var(--white);
    transform: scale(1.1);
}

.card-wishlist svg {
    width: 16px;
    height: 16px;
}

.card-body {
    padding: 20px;
}

.card-type {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 6px;
}

.card-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8125rem;
    color: var(--grey-500);
    margin-bottom: 14px;
}

.card-location svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.card-specs {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--grey-100);
    border-bottom: 1px solid var(--grey-100);
    margin-bottom: 16px;
}

.card-spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--grey-700);
}

.card-spec svg {
    width: 14px;
    height: 14px;
    color: var(--grey-500);
}

.card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.card-price {}

.card-price-label {
    font-size: 0.7rem;
    color: var(--grey-500);
    font-weight: 500;
}

.card-price-value {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.card-price-unit {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--grey-500);
}

.card-cta-wrap {
    display: flex;
    gap: 8px;
}

/* ─── Filter Sidebar ─────────────────────────────── */
.listings-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

.filter-sidebar {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: 96px;
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.filter-title {
    font-size: 1rem;
    font-weight: 700;
}

.filter-reset {
    font-size: 0.8125rem;
    color: var(--red);
    font-weight: 600;
    cursor: pointer;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group-title {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--grey-700);
    margin-bottom: 12px;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    cursor: pointer;
}

.filter-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--red);
    cursor: pointer;
}

.filter-check span {
    font-size: 0.875rem;
    color: var(--grey-800);
}

.filter-check-count {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--grey-400);
    background: var(--grey-100);
    padding: 1px 7px;
    border-radius: 100px;
}

.filter-range {
    display: flex;
    gap: 8px;
}

.filter-range input {
    flex: 1;
    padding: 9px 12px;
    border: 1px solid var(--grey-300);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--black);
    outline: none;
    transition: var(--transition);
}

.filter-range input:focus {
    border-color: var(--red);
}

.filter-divider {
    height: 1px;
    background: var(--grey-100);
    margin: 8px 0 24px;
}

.filter-apply {
    width: 100%;
}

/* ─── Listings Toolbar ───────────────────────────── */
.listings-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.listings-count {
    font-size: 0.9375rem;
    color: var(--grey-700);
}

.listings-count strong {
    color: var(--black);
    font-weight: 700;
}

.listings-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.listings-sort select {
    padding: 8px 14px;
    border: 1px solid var(--grey-300);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--black);
    background: var(--white);
    outline: none;
    cursor: pointer;
}

.view-toggle {
    display: flex;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.view-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
    transition: var(--transition);
    color: var(--grey-500);
}

.view-btn.active {
    background: var(--black);
    color: var(--white);
}

.view-btn:hover:not(.active) {
    background: var(--grey-100);
}

/* ─── Property Detail ────────────────────────────── */
.property-hero {
    position: relative;
    background: var(--black);
    padding-top: 72px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 6px;
    max-height: 560px;
    overflow: hidden;
}

.gallery-main {
    grid-column: 1;
    grid-row: 1 / 3;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.gallery-side {
    overflow: hidden;
}

.gallery-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-more {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, .9);
    color: var(--black);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.gallery-more:hover {
    background: var(--white);
}

.property-content {
    padding: 48px 0 80px;
}

.property-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.property-main {}

.property-title {
    margin-bottom: 10px;
}

.property-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.property-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--grey-600);
}

.property-meta-item svg {
    width: 15px;
    height: 15px;
}

.property-meta-badge {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--red-soft);
    color: var(--red);
}

.property-section {
    margin-bottom: 36px;
}

.property-section-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--grey-200);
}

.property-desc {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--grey-700);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--grey-50);
    border-radius: var(--radius-md);
}

.spec-icon {
    width: 36px;
    height: 36px;
    background: var(--red-soft);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-icon svg {
    width: 16px;
    height: 16px;
    color: var(--red);
}

.spec-info {}

.spec-label {
    font-size: 0.7rem;
    color: var(--grey-500);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.spec-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--grey-200);
    border-radius: 100px;
    font-size: 0.8125rem;
    color: var(--grey-700);
    background: var(--grey-50);
}

.feature-tag svg {
    width: 13px;
    height: 13px;
    color: var(--red);
}

/* ─── Booking Card (Sticky) ──────────────────────── */
.booking-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 96px;
}

.booking-price-row {
    margin-bottom: 24px;
}

.booking-price {
    font-size: 2rem;
    font-weight: 800;
}

.booking-price-unit {
    font-size: 0.875rem;
    color: var(--grey-500);
    font-weight: 400;
}

.booking-price-note {
    font-size: 0.8125rem;
    color: var(--grey-500);
    margin-top: 4px;
}

.booking-divider {
    height: 1px;
    background: var(--grey-200);
    margin: 20px 0;
}

.booking-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.875rem;
}

.booking-info-label {
    color: var(--grey-600);
}

.booking-info-value {
    font-weight: 600;
}

.booking-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.booking-contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.contact-whatsapp {
    background: #25D366;
    color: var(--white);
}

.contact-whatsapp:hover {
    background: #1EAF55;
}

.contact-email {
    background: var(--grey-100);
    color: var(--black);
}

.contact-email:hover {
    background: var(--grey-200);
}

.booking-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 16px;
    font-size: 0.8125rem;
    color: var(--grey-500);
    cursor: pointer;
}

.booking-share:hover {
    color: var(--black);
}

/* ─── Get An Offer Form ──────────────────────────── */
.offer-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

.offer-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.offer-modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    transform: translateY(20px);
    transition: transform 0.3s;
    position: relative;
}

.offer-modal-overlay.open .offer-modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--grey-100);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.modal-close:hover {
    background: var(--grey-200);
}

.modal-close svg {
    width: 16px;
    height: 16px;
}

.modal-header {
    margin-bottom: 28px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.modal-desc {
    font-size: 0.9rem;
    color: var(--grey-600);
}

.modal-prop-info {
    background: var(--grey-50);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    color: var(--grey-700);
    border-left: 3px solid var(--red);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--grey-800);
}

.form-label span {
    color: var(--red);
}

.form-input {
    padding: 11px 14px;
    border: 1.5px solid var(--grey-300);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--black);
    outline: none;
    transition: var(--transition);
    background: var(--white);
}

.form-input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, .1);
}

.form-input::placeholder {
    color: var(--grey-400);
}

.form-textarea {
    resize: vertical;
    min-height: 88px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.nights-auto {
    font-size: 0.8rem;
    color: var(--grey-500);
    font-style: italic;
    margin-top: 4px;
}

.form-submit {
    margin-top: 8px;
    width: 100%;
}

.form-note {
    font-size: 0.8rem;
    color: var(--grey-500);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

/* ─── B2B Catalog ────────────────────────────────── */
.catalog-hero {
    background: var(--black-90);
    color: var(--white);
    padding: 120px 0 64px;
}

.catalog-hero-content {
    max-width: 640px;
}

.catalog-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 48px 0;
}

.catalog-step {
    text-align: center;
    padding: 28px 20px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 auto 16px;
}

.step-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.875rem;
    color: var(--grey-600);
}

.code-form {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 560px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.code-input-wrap {
    display: flex;
    gap: 12px;
    margin: 24px 0;
}

.code-input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--grey-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    outline: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--black);
}

.code-input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, .1);
}

.code-error {
    color: var(--red);
    font-size: 0.875rem;
    font-weight: 500;
}

.code-success {
    color: #16A34A;
    font-size: 0.875rem;
    font-weight: 500;
}

.generated-link-wrap {
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    display: none;
}

.generated-link-wrap.visible {
    display: flex;
}

.generated-link {
    flex: 1;
    font-size: 0.875rem;
    color: var(--grey-700);
    word-break: break-all;
}

.copy-btn {
    flex-shrink: 0;
    padding: 8px 14px;
}

/* ─── Stats Section ──────────────────────────────── */
.stats-section {
    background: var(--black);
    color: var(--white);
    padding: 64px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, .6);
    margin-top: 6px;
}

/* ─── Why Turkbeds Section ───────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 20px;
}

.why-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--grey-200);
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--red-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon svg {
    width: 24px;
    height: 24px;
    color: var(--red);
}

.why-title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-desc {
    font-size: 0.875rem;
    color: var(--grey-600);
    line-height: 1.7;
}

/* ─── Tabs ───────────────────────────────────────── */
.tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid var(--grey-200);
    margin-bottom: 28px;
}

.tab-btn {
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--grey-500);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--red);
    border-bottom-color: var(--red);
}

.tab-btn:hover:not(.active) {
    color: var(--black);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* ─── Map Placeholder ────────────────────────────── */
.map-placeholder {
    width: 100%;
    height: 280px;
    background: var(--grey-100);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--grey-500);
}

.map-placeholder svg {
    width: 32px;
    height: 32px;
}

/* ─── Footer ─────────────────────────────────────── */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--red);
}

.social-btn svg {
    width: 16px;
    height: 16px;
}

.footer-col-title {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: 0.04em;
}

.footer-link {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, .5);
    padding: 4px 0;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, .35);
}

/* ─── Toast / Notifications ──────────────────────── */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: var(--black);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s;
    max-width: 340px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success {
    border-left: 3px solid #16A34A;
}

.toast.error {
    border-left: 3px solid var(--red);
}

.toast.info {
    border-left: 3px solid #2563EB;
}

/* ─── Loading Skeleton ───────────────────────────── */
.skeleton {
    background: linear-gradient(90deg, var(--grey-200) 25%, var(--grey-100) 50%, var(--grey-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: var(--radius-sm);
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-card {
    height: 340px;
    border-radius: var(--radius-lg);
    margin-bottom: 28px;
}

/* ─── Pagination ─────────────────────────────────── */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
}

.page-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--grey-200);
    color: var(--grey-700);
}

.page-btn:hover {
    background: var(--grey-100);
}

.page-btn.active {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.page-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* ─── Filter Mobile Toggle ───────────────────────── */
.mobile-filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--grey-300);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}

/* ─── No Results ─────────────────────────────────── */
.no-results {
    text-align: center;
    padding: 64px 24px;
}

.no-results svg {
    width: 56px;
    height: 56px;
    color: var(--grey-300);
    margin: 0 auto 16px;
}

.no-results h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.no-results p {
    font-size: 0.9rem;
    color: var(--grey-600);
}

/* ─── Breadcrumb ─────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .6);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, .35);
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1100px) {
    .listings-layout {
        grid-template-columns: 240px 1fr;
    }

    .property-layout {
        grid-template-columns: 1fr 340px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .section {
        padding: 56px 0;
    }

    .listings-layout {
        grid-template-columns: 1fr;
    }

    .filter-sidebar {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 1100;
        border-radius: 0;
        overflow-y: auto;
        top: 0;
    }

    .filter-sidebar.mobile-open {
        display: block;
    }

    .mobile-filter-toggle {
        display: flex;
    }

    .property-layout {
        grid-template-columns: 1fr;
    }

    .booking-card {
        position: static;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-steps {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-height: 320px;
    }

    .gallery-side {
        display: none;
    }

    .gallery-side:first-of-type {
        display: block;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .header-inner {
        padding: 0 16px;
    }

    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .search-strip {
        flex-direction: column;
        border-radius: var(--radius-lg);
    }

    .search-field {
        border-right: none;
        border-bottom: 1px solid var(--grey-200);
    }

    .hero-content {
        padding: 48px 0 64px;
    }

    .offer-modal {
        padding: 24px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Utility / Misc ─────────────────────────────── */
.divider {
    height: 1px;
    background: var(--grey-200);
}

.text-center {
    text-align: center;
}

.mt-auto {
    margin-top: auto;
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.rounded-full {
    border-radius: 9999px;
}

.w-full {
    width: 100%;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-8 {
    margin-bottom: 32px;
}

.mt-4 {
    margin-top: 16px;
}

.mt-8 {
    margin-top: 32px;
}

/* ─── Dropdown Menü (Açılır Menü) ────────────────── */
.nav-dropdown {
    display: flex;
    align-items: center;
    height: 100%;
    /* Header içindeki hizalamayı korumak için */
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    padding: 8px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--grey-200);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    z-index: 100;
    margin-top: 4px;
}

/* Üstüne gelince menünün açılması */
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--grey-700);
    transition: var(--transition);
}

.dropdown-item:hover {
    color: var(--black);
    background: var(--grey-50);
}

:root {
    --brand-red: #c92a2a;
    /* Logonuzdaki ve butonlardaki kırmızı tonu */
    --dark-bg: #1a1a1a;
    --black-bg: #111111;
}


.text-brand {
    color: var(--brand-red) !important;
}

.bg-brand {
    background-color: var(--brand-red) !important;
}

.btn-brand {
    background-color: var(--brand-red);
    color: white;
    border: none;
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-brand:hover {
    background-color: #a62222;
    color: white;
}

.btn-outline-light-custom {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.btn-outline-light-custom:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-link {
    font-weight: 500;
    color: #555;
    margin: 0 10px;
}

.nav-link.active,
.nav-link:hover {
    color: var(--brand-red);
}

/* Hero Section */
.hero-section {
    /* Temsili arka plan görseli kullanılmıştır */
    background: linear-gradient(rgba(30, 30, 30, 0.7), rgba(30, 30, 30, 0.0)), url('../img/banner.png') center/cover no-repeat;
    padding: 120px 0 160px;
    color: white;
    position: relative;
}

.hero-badge {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #ddd;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Search Bar */
.search-container {
    background: white;
    border-radius: 12px;
    padding: 15px 20px;
    margin-top: 50px;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-container label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 2px;
    display: block;
}

.search-container select {
    border: none;
    padding: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    background: transparent;
    cursor: pointer;
}

.search-container select:focus {
    box-shadow: none;
    outline: none;
}

.search-divider {
    border-right: 1px solid #eee;
}

/* Stats Strip */
.stats-strip {
    background-color: #222;
    color: white;
    padding: 30px 0;
    border-bottom: 1px solid #333;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.85rem;
    color: #aaa;
}

/* Marquee */
.marquee-container {
    background-color: #1a1a1a;
    color: #888;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.85rem;
    border-bottom: 1px solid #333;
}

.marquee-content {
    display: inline-block;
    animation: marquee 40s linear infinite;
}

.marquee-content span {
    margin: 0 20px;
}

.marquee-content span::before {
    content: "•";
    color: var(--brand-red);
    margin-right: 10px;
}

.il-marquee-container {
    background-color: #1a1a1a;
    color: #888;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.85rem;
    border-bottom: 1px solid #333;
}

.il-marquee-content {
    display: inline-block;
    animation: marquee 40s linear infinite;
}

.il-marquee-content span {
    margin: 0 20px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-40%);
    }
}

/* General Section Titles */
.section-subtitle {
    color: var(--brand-red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

/* Advantage Cards */
.advantage-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.advantage-icon {
    color: var(--brand-red);
    font-size: 1.5rem;
    background: #fff5f5;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

.advantage-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Footer CTA & Footer */
.footer-cta {
    background-color: var(--dark-bg);
    color: white;
    padding: 80px 0;
}

footer {
    background-color: var(--black-bg);
    color: #999;
    padding: 60px 0 20px;
    font-size: 0.85rem;
}

footer h5 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    margin-right: 10px;
}

.social-icons a:hover {
    background-color: var(--brand-red);
}

.bottom-bar {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Modal Form Focus Stili */
.modal-body .form-control:focus,
.modal-body .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(201, 42, 42, 0.25);
    background-color: #fff !important;
}



.text-brand {
    color: var(--brand-red) !important;
}

.bg-brand {
    background-color: var(--brand-red) !important;
}

/* Buton Stilleri */
.btn-brand {
    background-color: var(--brand-red);
    color: white;
    border: none;
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-brand:hover {
    background-color: #a62222;
    color: white;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.nav-link {
    font-weight: 500;
    color: #555;
    margin: 0 10px;
}

.nav-link.active,
.nav-link:hover {
    color: var(--brand-red);
}

/* Page Header */
.page-header {
    background-color: var(--black-bg);
    color: white;
    padding: 60px 0;
}

.breadcrumb-item a {
    color: #888;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #555;
}

/* Sidebar Filters */
.filter-sidebar {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.filter-group-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.form-check-label {
    font-size: 0.85rem;
    color: #555;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(201, 42, 42, 0.25);
}

/* Top Toolbar */
.toolbar {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 20px;
}

.search-input-wrapper {
    position: relative;
    width: 250px;
}

.search-input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.search-input-wrapper input {
    padding-left: 40px;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Property Card (Ana sayfadaki ile aynı kaliteli yapı) */
.property-card {
    border-radius: 16px !important;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    background: #fff;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

.amenity-item {
    font-size: 0.8rem;
    color: #555;
    display: flex;
    align-items: center;
}

.amenity-item i {
    width: 20px;
    color: var(--brand-red);
}

/* Footer */
footer {
    background-color: var(--black-bg);
    color: #999;
    padding: 60px 0 20px;
    font-size: 0.85rem;
}

footer h5 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    margin-right: 10px;
}

.social-icons a:hover {
    background-color: var(--brand-red);
}

.bottom-bar {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.property-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
}

.property-img-wrapper img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-gallery-card:hover .property-img-wrapper img {
    transform: scale(1.06);
}

.cursor-pointer {
    cursor: pointer;
}

#propertiesGalleryCarousel .carousel-control-prev,
#propertiesGalleryCarousel .carousel-control-next {
    opacity: 0.5;
    transition: opacity 0.3s;
}

#propertiesGalleryCarousel .carousel-control-prev:hover,
#propertiesGalleryCarousel .carousel-control-next:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    #propertiesGalleryCarousel .carousel-control-prev {
        left: 0 !important;
    }

    #propertiesGalleryCarousel .carousel-control-next {
        right: 0 !important;
    }
}

/* --- Property Detail Page Specific CSS --- */

/* Modern Grid Fotoğraf Galerisi (Airbnb Stili) */
.property-detail-gallery {
    height: 450px;
}

.property-detail-gallery img {
    cursor: pointer;
    transition: filter 0.3s ease;
}

.property-detail-gallery img:hover {
    filter: brightness(0.85);
    /* Üzerine gelince resim hafif kararır */
}

/* Özel köşeli yuvarlatmalar */
.rounded-start-4 {
    border-top-left-radius: 16px !important;
    border-bottom-left-radius: 16px !important;
}

.rounded-end-top-4 {
    border-top-right-radius: 16px !important;
}

.rounded-end-bottom-4 {
    border-bottom-right-radius: 16px !important;
}

/* Mobilde galeri yüksekliğini otomatik yap (sıkışmasın) */
@media (max-width: 768px) {
    .property-detail-gallery {
        height: auto;
    }

    .rounded-start-4 {
        border-radius: 16px !important;
    }

    /* Mobilde tam yuvarlak olsun */
}

/* Olanaklar Listesi (Amenities) */
.detail-amenity-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #333;
}

.detail-amenity-item i {
    width: 35px;
    font-size: 1rem;
    color: #666;
    /* Detay sayfasında göz yormaması için ikonlar gri */
}

/* Sağ Taraf Sticky (Sabit) Rezervasyon Kutusu */
.sticky-booking-card {
    top: 100px;
    /* Navbar'ın hemen altında durur */
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* Kutu içi Check-in/out Form tasarımı */
.booking-inputs {
    border: 1px solid #b0b0b0;
    border-radius: 8px;
    overflow: hidden;
    /* Kenarlardan taşmayı engeller */
}

.booking-inputs input[type="date"]:focus,
.booking-inputs select:focus {
    outline: none;
    background-color: transparent !important;
}


.text-brand {
    color: var(--brand-red) !important;
}

.bg-brand {
    background-color: var(--brand-red) !important;
}

/* Buton Stilleri */
.btn-brand {
    background-color: var(--brand-red);
    color: white;
    border: none;
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-brand:hover {
    background-color: #a62222;
    color: white;
}

.btn-outline-light-custom {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-link {
    font-weight: 500;
    color: #555;
    margin: 0 10px;
}

.nav-link.active,
.nav-link:hover {
    color: var(--brand-red);
}

/* Ortak Başlıklar */
.section-subtitle {
    color: var(--brand-red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* About Hero Section */
.about-hero {
    background-color: var(--dark-bg);
    padding: 120px 0 100px;
    color: white;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Stats Strip */
.stats-strip {
    background-color: var(--black-bg);
    padding: 60px 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-red);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #aaa;
}

/* Detay Kartları (The Details That Make the Difference) */
.details-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.detail-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.detail-icon-box {
    background: #fff0f0;
    color: var(--brand-red);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.detail-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.detail-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Footer & CTA */
.footer-cta {
    background-color: var(--dark-bg);
    color: white;
    padding: 100px 0;
}

footer {
    background-color: var(--black-bg);
    color: #999;
    padding: 60px 0 20px;
    font-size: 0.85rem;
}

footer h5 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    margin-right: 10px;
}

.social-icons a:hover {
    background-color: var(--brand-red);
}

.bottom-bar {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Comprehensive Facilities Accordion Styles --- */
.custom-accordion .accordion-item {
    background-color: transparent;
}

.custom-accordion .accordion-button {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    transition: color 0.3s ease;
}

/* Akordeon açıldığında başlığın ve ikonun markanın kırmızı rengine dönmesi */
.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--brand-red) !important;
    background-color: transparent;
    box-shadow: none;
}

/* Sağdaki açılır-kapanır okun rengi */
.custom-accordion .accordion-button::after {
    filter: grayscale(100%);
    opacity: 0.6;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: none;
    opacity: 1;
}

/* Detay listesi ince ayarları (Alt Çizgili) */
.detail-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.detail-list li:last-child {
    border-bottom: none;
}

/* Tikli/Çarpılı Hizmet Listesi Ayarları */
.facility-check-list {
    font-size: 0.95rem;
    color: #444;
}

.facility-check-list i.fa-circle-check {
    font-size: 1.1rem;
    vertical-align: middle;
}

.facility-check-list i.fa-circle-xmark {
    font-size: 1.1rem;
    vertical-align: middle;
}

/* --- Login Modal Tabs (Sekme Özelleştirmesi) --- */
.modal-tabs {
    background-color: #f8f9fa;
    padding: 5px;
    border-radius: 12px;
}

.modal-tabs .nav-link {
    color: #666;
    transition: all 0.3s ease;
}

.modal-tabs .nav-link:hover {
    color: var(--brand-red);
}

.modal-tabs .nav-link.active {
    background-color: #ffffff !important;
    color: var(--brand-red) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}


/* --- Dashboard Genel Standart Stilleri --- */
body {
    background-color: #f8f9fa;
    font-family: 'Inter', sans-serif;
}

.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
    overflow-x: clip;
}

/* Sidebar (Sol Menü) Standart Özelleştirmeleri */
.sidebar-menu {
    width: 280px;
    z-index: 1040;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    margin: 4px 15px;
    transition: 0.2s;
    border: none;
    background: transparent;
    width: calc(100% - 30px);
    text-align: left;
}

.sidebar-link i.main-icon {
    width: 25px;
    font-size: 1.1rem;
}

.sidebar-link:hover {
    background-color: #f1f3f5;
    color: #111;
}

.sidebar-link.active {
    background-color: #fff0f0;
    color: var(--brand-red);
    font-weight: 600;
}

.sidebar-submenu-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #aaa;
    margin: 24px 20px 8px;
    letter-spacing: 1px;
}

.sidebar-link.sub-link {
    padding-left: 45px;
    font-size: 0.9rem;
}

/* --- Settings Form Özel Stilleri --- */
.settings-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(201, 42, 42, 0.1);
    border-color: #c92a2a;
}

@media (max-width: 991px) {
    .settings-card {
        padding: 20px;
    }
}

.location-section-title { font-size: 1.25rem; font-weight: 700; color: #111; display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; }
.location-subheading { color: #c92a2a; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px; border-bottom: 2px solid #c92a2a; padding-bottom: 8px; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 15px; text-transform: uppercase; }
.location-list-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed #e0e0e0; font-size: 0.9rem; }
.location-list-item:last-child { border-bottom: none; }
.location-name { color: #444; }
.location-time { color: #888; font-size: 0.8rem; }