/* List Gayrimenkul - Award Winning Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --accent: #C7A08B;
    --accent-dark: #A68370;
    --accent-light: #D9BBA8;
    --font: 'Inter', -apple-system, sans-serif;
}

[data-theme="light"] {
    --bg: #F8F7F4;
    --bg-alt: #FFFFFF;
    --bg-dark: #E8E6E1;
    --text: #1A1A1A;
    --text-light: #666666;
    --text-muted: #999999;
    --border: rgba(0,0,0,0.06);
    --glass: rgba(255,255,255,0.8);
}

[data-theme="dark"] {
    --bg: #0A0A0A;
    --bg-alt: #141414;
    --bg-dark: #1A1A1A;
    --text: #FFFFFF;
    --text-light: #AAAAAA;
    --text-muted: #555555;
    --border: rgba(255,255,255,0.06);
    --glass: rgba(10,10,10,0.8);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }

::selection { background: var(--accent); color: #fff; }

.container { max-width: 1600px; margin: 0 auto; padding: 0 60px; }

/* Progress Bar */
.progress-bar {
    position: fixed; top: 0; left: 0; width: 0; height: 2px;
    background: var(--accent);
    z-index: 9999;
}

/* Preloader */
.preloader {
    position: fixed; inset: 0;
    background: var(--bg);
    z-index: 10000;
    display: flex; align-items: center; justify-content: center;
}

.preloader-inner { text-align: center; position: relative; z-index: 2; }

.preloader-line {
    width: 100px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 0 auto 40px;
    animation: preloaderLine 2s ease-in-out infinite;
}

@keyframes preloaderLine {
    0%, 100% { transform: scaleX(0.3); opacity: 0.5; }
    50% { transform: scaleX(1); opacity: 1; }
}

.preloader-logo {
    display: flex; justify-content: center; align-items: center;
}

.preloader-avatar {
    width: 120px; height: 120px;
    object-fit: contain;
    animation: avatarPulse 2s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

.preloader-tagline {
    font-size: 0.75rem; letter-spacing: 1em;
    color: var(--accent); margin-top: 20px;
    opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
}

.preloader-counter {
    position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%);
    font-size: 1rem; font-weight: 300; color: var(--text-muted);
    letter-spacing: 0.2em;
}

.preloader-counter span { font-weight: 600; color: var(--accent); }

.preloader-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.preloader.hidden {
    opacity: 0; visibility: hidden;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Header */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 30px 60px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
    padding: 20px 60px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: #fff;
    transition: color 0.3s;
}

.header.scrolled .logo { color: var(--text); }

.logo-icon {
    width: 36px; height: 36px;
    fill: var(--accent);
}

.logo span {
    font-size: 1.25rem; font-weight: 700;
    letter-spacing: 0.2em;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav { display: flex; gap: 50px; }

.nav a {
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.9); text-decoration: none;
    position: relative; padding: 5px 0;
    transition: color 0.3s;
}

.nav a::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav a:hover::after { width: 100%; }
.header.scrolled .nav a { color: var(--text); }

.header-right { display: flex; align-items: center; gap: 20px; }

/* Language Switch */
.lang-switch {
    position: relative; cursor: pointer;
    padding: 8px 16px; border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
    color: #fff; transition: all 0.3s;
}

.header.scrolled .lang-switch { border-color: var(--border); color: var(--text); }

.lang-dropdown {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-alt); border: 1px solid var(--border);
    margin-top: 5px;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: all 0.3s;
}

.lang-switch:hover .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.lang-dropdown button {
    display: block; width: 100%; padding: 12px;
    background: none; border: none;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
    color: var(--text); cursor: pointer;
    transition: background 0.2s;
}

.lang-dropdown button:hover { background: var(--bg-dark); }

/* Theme Button */
.theme-btn {
    width: 44px; height: 44px;
    background: transparent; border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer; position: relative;
    transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}

.header.scrolled .theme-btn { border-color: var(--border); }

.theme-btn:hover { background: rgba(255,255,255,0.1); }
.header.scrolled .theme-btn:hover { background: var(--bg-dark); }

/* Sun Icon (Light Mode - click to go dark) */
.theme-btn .sun-icon,
.theme-btn .moon-icon {
    position: absolute;
    width: 22px; height: 22px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-btn .sun-icon {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
}

.theme-btn .moon-icon {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
}

/* Light mode: show sun, hide moon */
[data-theme="light"] .theme-btn .sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    stroke: var(--text);
}

[data-theme="light"] .theme-btn .moon-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

/* Dark mode: show moon, hide sun */
[data-theme="dark"] .theme-btn .sun-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

[data-theme="dark"] .theme-btn .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    stroke: #fff;
}

.header.scrolled [data-theme="light"] .theme-btn .sun-icon { stroke: var(--text); }
.header.scrolled [data-theme="dark"] .theme-btn .moon-icon { stroke: var(--text); }

/* Login Button */
.login-btn {
    display: flex; align-items: center; gap: 12px;
    background: var(--accent); border: none;
    padding: 14px 28px;
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: #fff; cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.login-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.login-btn:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* Menu Button */
.menu-btn {
    display: none; flex-direction: column; gap: 8px;
    background: none; border: none; padding: 10px; cursor: pointer;
}

.menu-btn span {
    width: 28px; height: 2px; background: #fff;
    transition: all 0.3s;
}

.header.scrolled .menu-btn span { background: var(--text); }

/* HERO */
.hero {
    height: 100vh; min-height: 900px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg video { width: 100%; height: 100%; object-fit: cover; }

.hero-noise {
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03; pointer-events: none;
}

.hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0.4) 100%
    );
}

.hero-content {
    position: relative; z-index: 10;
    width: 100%; max-width: 1600px;
    padding: 0 60px;
    display: flex; flex-direction: column;
    justify-content: space-between;
    height: 60vh;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 12px 24px; border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(255,255,255,0.9);
}

.badge-dot {
    width: 6px; height: 6px; background: var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title { margin: auto 0; }

.title-line {
    overflow: hidden;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700; line-height: 1;
    letter-spacing: -0.02em;
    color: #fff;
}

.title-line span {
    display: block;
    transform: translateY(100%);
    animation: titleReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.title-line:nth-child(1) span { animation-delay: 0.3s; }
.title-line:nth-child(2) span { animation-delay: 0.5s; }
.title-line:nth-child(3) span { animation-delay: 0.7s; }

.title-line.large {
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 800;
    color: var(--accent);
}

.title-line.outline span {
    -webkit-text-stroke: 1px rgba(255,255,255,0.5);
    color: transparent;
}

@keyframes titleReveal {
    to { transform: translateY(0); }
}

/* Hero Stats Bar - Above Search */
.hero-stats-bar {
    position: absolute;
    bottom: 140px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
    padding: 0;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 10;
}

.stat-divider {
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.15);
    align-self: stretch;
}

.hero-stats-bar .hero-stat {
    text-align: center;
    padding: 25px 50px;
}

.hero-stats-bar .stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.hero-stats-bar .stat-text {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}

.hero-scroll {
    position: absolute;
    right: 60px;
    bottom: 160px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-stat {
    display: flex; flex-direction: column; gap: 8px;
}

.stat-num {
    font-size: 2rem; font-weight: 700;
    color: #fff; letter-spacing: -0.02em;
}

.stat-text {
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.hero-scroll {
    display: flex; flex-direction: column; align-items: center; gap: 16px;
}

.scroll-text {
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px; height: 80px;
    background: rgba(255,255,255,0.15);
    position: relative; overflow: hidden;
}

.scroll-dot {
    width: 100%; height: 30%;
    background: var(--accent);
    position: absolute; top: -30%;
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% { top: -30%; }
    100% { top: 130%; }
}

/* Hero Search */
.hero-search {
    position: absolute; bottom: 60px; left: 60px; right: 60px;
    z-index: 20;
}

.search-inner {
    display: flex; align-items: center;
    background: var(--glass); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px;
}

.search-field {
    flex: 1; display: flex; align-items: center; gap: 16px;
    padding: 20px 30px;
}

.field-icon svg {
    width: 20px; height: 20px;
    fill: none; stroke: var(--accent); stroke-width: 1.5;
}

.field-content { flex: 1; }

.field-content label {
    display: block; font-size: 0.6rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 6px;
}

.field-content select {
    width: 100%;
    background: transparent;
    border: none;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    transition: all 0.3s ease;
}

.field-content select:hover {
    color: var(--accent);
}

.field-content select:focus {
    color: var(--accent);
}

/* Modern select dropdown styling */
.field-content select option {
    background: var(--bg);
    color: var(--text);
    padding: 12px 16px;
    font-size: 0.95rem;
    border: none;
}

.field-content select option:hover,
.field-content select option:focus,
.field-content select option:checked {
    background: var(--accent);
    color: white;
}

/* Custom dropdown wrapper */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    position: relative;
    cursor: pointer;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.3s ease;
}

.custom-select-trigger svg {
    width: 12px;
    height: 12px;
    stroke: var(--text-muted);
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease, stroke 0.3s ease;
}

.custom-select.open .custom-select-trigger svg {
    transform: rotate(180deg);
    stroke: var(--accent);
}

.custom-select-trigger:hover {
    color: var(--accent);
}

.custom-options {
    position: absolute;
    top: calc(100% + 20px);
    left: -30px;
    right: -30px;
    background: var(--bg);
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    max-height: 280px;
    overflow-y: auto;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    padding: 14px 24px;
    font-size: 0.95rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border);
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover {
    background: rgba(199, 160, 139, 0.1);
    color: var(--accent);
    padding-left: 30px;
}

.custom-option.selected {
    background: var(--accent);
    color: white;
}

/* Scrollbar for options */
.custom-options::-webkit-scrollbar {
    width: 4px;
}

.custom-options::-webkit-scrollbar-track {
    background: var(--bg-alt);
}

.custom-options::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 2px;
}

.search-divider { width: 1px; height: 50px; background: var(--border); }

.search-btn {
    display: flex; align-items: center; gap: 12px;
    background: var(--accent); border: none;
    padding: 24px 40px;
    font-family: var(--font); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #fff; cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-btn svg {
    width: 18px; height: 18px;
    fill: none; stroke: currentColor; stroke-width: 2;
}

.search-btn:hover { background: var(--accent-dark); }

/* Hero Lines */
.hero-lines {
    position: absolute; inset: 0; z-index: 1;
    pointer-events: none;
}

.h-line, .v-line {
    position: absolute; background: rgba(255,255,255,0.05);
}

.h-line { width: 100%; height: 1px; }
.v-line { width: 1px; height: 100%; }

.h-line-1 { top: 25%; }
.h-line-2 { top: 75%; }
.v-line-1 { left: 25%; }
.v-line-2 { left: 75%; }

/* Featured Section - 3 Column Grid */
.featured-section {
    padding: 120px 0;
    background: var(--bg);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-card {
    position: relative;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-10px);
}

.featured-media {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-card:hover .featured-media img {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
}

.featured-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    background: var(--accent);
}

.featured-tag.exclusive { background: #8B5CF6; }
.featured-tag.premium { background: #F59E0B; }
.featured-tag.rental { background: #10B981; }

/* Rental Section */
.rental-section {
    background: var(--bg-alt);
}

.featured-body {
    padding: 25px;
}

.featured-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.featured-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.featured-location svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
}

.featured-specs {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 15px;
}

.featured-specs .spec-item,
.featured-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    background: var(--bg-dark);
    padding: 8px 12px;
}

.featured-specs svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
    flex-shrink: 0;
}

.featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

.featured-price span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.featured-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.featured-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--text);
    stroke-width: 2;
}

.featured-link:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.featured-link:hover svg {
    stroke: #fff;
}

/* Make entire card clickable */
.featured-link::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.featured-tag,
.featured-overlay {
    pointer-events: none;
}

/* Portfolio Section - 2 Per View Horizontal Scroll */
.portfolio-wrapper {
    height: 300vh; /* 3 pages * 100vh */
    position: relative;
    background: var(--bg-dark);
}

.portfolio-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: #0a0a0a;
}

.portfolio-header {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    z-index: 10;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.portfolio-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #fff;
}

.portfolio-track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.portfolio-slide {
    flex-shrink: 0;
    width: 50vw; /* 2 per view */
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.portfolio-slide-bg {
    position: absolute;
    inset: 0;
}

.portfolio-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-slide:hover .portfolio-slide-bg img {
    transform: scale(1.05);
}

.portfolio-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
}

.portfolio-slide-content {
    position: absolute;
    bottom: 100px;
    left: 60px;
    max-width: 600px;
    color: #fff;
    z-index: 5;
}

.portfolio-slide-num {
    display: block;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(255,255,255,0.15);
    line-height: 1;
    margin-bottom: 20px;
}

.portfolio-slide-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.portfolio-slide-tag.exclusive { background: #8B5CF6; }
.portfolio-slide-tag.premium { background: #F59E0B; }

.portfolio-slide-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
}

.portfolio-slide-location {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 25px;
}

.portfolio-slide-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.portfolio-slide-specs span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
}

.portfolio-slide-specs svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
    flex-shrink: 0;
}

.portfolio-slide-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
}

.portfolio-slide-link {
    position: absolute;
    bottom: 100px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 35px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s;
    z-index: 5;
}

.portfolio-slide-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s;
}

.portfolio-slide-link:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.portfolio-slide-link:hover svg {
    transform: translateX(5px);
}

/* Portfolio Progress */
.portfolio-progress {
    position: absolute;
    bottom: 40px;
    left: 60px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.portfolio-progress-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.2);
}

.portfolio-progress-fill {
    height: 100%;
    background: var(--accent);
    width: 20%;
    transition: width 0.3s ease;
}

.portfolio-progress-count {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.1em;
}

.portfolio-progress-count span {
    color: var(--accent);
    font-size: 1.25rem;
}

/* Cities Section */
.cities-section {
    padding: 120px 0 80px;
    background: var(--bg-alt);
}

.cities-section .section-header { margin-bottom: 50px; }

.cities-track {
    display: flex; gap: 20px;
    padding: 0 60px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.cities-track::-webkit-scrollbar { display: none; }

.city-card {
    flex-shrink: 0;
    width: 280px; height: 380px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
}

.city-media {
    position: absolute; inset: 0;
}

.city-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.city-card:hover .city-media img { transform: scale(1.1); }

.city-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
}

.city-content {
    position: absolute; bottom: 30px; left: 30px; right: 30px;
    color: #fff;
}

.city-content h3 {
    font-size: 1.75rem; font-weight: 600;
    margin-bottom: 8px;
}

.city-count {
    font-size: 0.8rem;
    opacity: 0.8;
    letter-spacing: 0.1em;
}

/* Properties Section */
.properties-section { padding: 150px 0 100px; }

.section-intro { margin-bottom: 80px; }
.section-intro .container { display: flex; justify-content: space-between; align-items: flex-end; }

.intro-label {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 20px;
}

.label-line { width: 40px; height: 1px; background: var(--accent); }

.intro-label span {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--accent);
}

.intro-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700; line-height: 1.1;
}

.title-accent { color: var(--accent); }

.intro-desc {
    max-width: 400px;
    font-size: 1rem; color: var(--text-light);
    line-height: 1.8;
}

/* Properties Track */
.properties-wrapper {
    overflow-x: auto;
    padding: 0 60px 40px;
    scrollbar-width: none;
}

.properties-wrapper::-webkit-scrollbar { display: none; }

.properties-track {
    display: flex; gap: 40px;
    width: max-content;
}

/* Property Card */
.property-card {
    width: 500px; flex-shrink: 0;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.property-card:hover { transform: translateY(-10px); }

.property-media {
    height: 350px; position: relative; overflow: hidden;
}

.property-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.property-card:hover .property-media img { transform: scale(1.1); }

.property-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

.property-tags {
    position: absolute; top: 20px; left: 20px;
    display: flex; gap: 8px;
}

.tag {
    padding: 8px 16px;
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: #fff;
}

.tag.featured { background: var(--accent); }
.tag.new { background: #2A9D8F; }
.tag.exclusive { background: #1A1A1A; }
.tag.premium { background: #8B5CF6; }

.property-quick {
    position: absolute; top: 20px; right: 20px;
    display: flex; flex-direction: column; gap: 8px;
    opacity: 0; transform: translateX(20px);
    transition: all 0.4s;
}

.property-card:hover .property-quick { opacity: 1; transform: translateX(0); }

.quick-btn {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.9); border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-btn svg {
    width: 18px; height: 18px;
    fill: none; stroke: var(--text); stroke-width: 1.5;
}

.quick-btn:hover { background: var(--accent); }
.quick-btn:hover svg { stroke: #fff; }

.property-content { padding: 30px; }

.property-location {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.75rem; font-weight: 500;
    color: var(--text-muted); margin-bottom: 12px;
}

.property-location svg {
    width: 14px; height: 14px;
    fill: none; stroke: var(--accent); stroke-width: 1.5;
}

.property-title {
    font-size: 1.5rem; font-weight: 600;
    margin-bottom: 20px; line-height: 1.3;
}

.property-specs {
    display: flex; gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.property-specs span {
    font-size: 0.85rem; color: var(--text-light);
}

.property-specs strong {
    font-weight: 600; color: var(--text);
}

.property-footer {
    display: flex; justify-content: space-between; align-items: center;
}

.property-price { }

.price-label {
    display: block; font-size: 0.6rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 4px;
}

.price-value {
    font-size: 1.5rem; font-weight: 700;
    color: var(--accent);
}

.property-link {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text); text-decoration: none;
    transition: color 0.3s;
}

.property-link svg {
    width: 16px; height: 16px;
    fill: none; stroke: currentColor; stroke-width: 2;
    transition: transform 0.3s;
}

.property-link:hover { color: var(--accent); }
.property-link:hover svg { transform: translateX(5px); }

.property-number {
    position: absolute; bottom: 30px; right: 30px;
    font-size: 6rem; font-weight: 800;
    color: var(--border); line-height: 1;
    opacity: 0.5;
}

/* Properties Nav */
.properties-nav {
    display: flex; align-items: center; gap: 30px;
    padding: 40px 60px 0;
}

.nav-progress {
    flex: 1; max-width: 400px;
    height: 2px; background: var(--border);
}

.nav-progress-fill {
    width: 25%; height: 100%;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-counter {
    font-size: 0.9rem; font-weight: 600;
    color: var(--text);
}

.nav-counter span:first-child { color: var(--accent); font-size: 1.5rem; }
.nav-divider { color: var(--text-muted); margin: 0 8px; }

/* Split Section */
.split-section {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.split-left { position: relative; }

.split-sticky {
    position: sticky; top: 0;
    height: 100vh;
}

.split-media { position: relative; width: 100%; height: 100%; }

.split-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0;
    transition: opacity 1s;
}

.split-img:first-child { opacity: 1; }

.split-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 0%, var(--bg) 100%);
    opacity: 0.3;
}

.split-floating-text {
    position: absolute; bottom: 60px; left: 60px;
    padding: 40px; background: var(--bg-alt);
    border: 1px solid var(--border);
}

.split-floating-text span {
    display: block; font-size: 5rem; font-weight: 800;
    color: var(--accent); line-height: 1;
}

.split-floating-text small {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text-muted);
}

.split-right { padding: 150px 80px; }

.split-content { max-width: 500px; }

.content-block { margin-bottom: 100px; }
.content-block:last-child { margin-bottom: 0; }

.block-label {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 30px;
}

.block-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; line-height: 1.2;
    margin-bottom: 30px;
}

.block-subtitle {
    font-size: 1.5rem; font-weight: 600;
    margin-bottom: 20px;
}

.block-text {
    font-size: 1rem; line-height: 2;
    color: var(--text-light);
}

.block-stats {
    display: flex; gap: 40px;
    margin-top: 40px; padding-top: 40px;
    border-top: 1px solid var(--border);
}

.mini-stat { }

.mini-num {
    display: block; font-size: 2.5rem; font-weight: 700;
    color: var(--accent); line-height: 1;
    margin-bottom: 8px;
}

.mini-label {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-muted);
}

/* Services List */
.services-list {
    list-style: none; margin-top: 30px;
}

.services-list li {
    display: flex; align-items: center; gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem; font-weight: 500;
    transition: all 0.3s;
}

.services-list li:hover { padding-left: 20px; }

.service-num {
    font-size: 0.7rem; font-weight: 600;
    color: var(--accent);
}

/* Reveal Section */
.reveal-section {
    padding: 200px 60px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-dark);
}

.reveal-text-wrapper { max-width: 1200px; }

.reveal-text {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 500; line-height: 1.6;
    text-align: center;
}

.reveal-text .word {
    display: inline-block;
    margin-right: 0.3em;
    color: var(--text-muted);
    transition: color 0.4s;
}

.reveal-text .word.active { color: var(--text); }
.reveal-text .word.accent { color: var(--accent); }

/* Projects Section - Horizontal Scroll */
.projects-section {
    padding: 150px 0;
    overflow: hidden;
}

.projects-header { margin-bottom: 60px; }

.projects-header .section-header {
    display: flex; justify-content: space-between; align-items: flex-end;
}

.projects-counter {
    display: flex; align-items: baseline; gap: 8px;
}

.counter-current {
    font-size: 3rem; font-weight: 700;
    color: var(--accent);
}

.counter-divider {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.counter-total {
    font-size: 1.5rem; font-weight: 500;
    color: var(--text-muted);
}

.section-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; line-height: 1.2;
}

/* Projects Horizontal Wrapper */
.projects-horizontal-wrapper {
    overflow: hidden;
    padding: 0 60px;
}

.projects-horizontal-track {
    display: flex; gap: 30px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card {
    flex-shrink: 0;
    width: 550px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.project-card-media {
    height: 350px;
    position: relative;
    overflow: hidden;
}

.project-card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-card-media img {
    transform: scale(1.1);
}

.project-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
}

.project-card-content {
    padding: 30px;
}

.project-card-tag {
    display: inline-block;
    padding: 8px 16px; margin-bottom: 16px;
    background: var(--accent);
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: #fff;
}

.project-card-title {
    font-size: 1.5rem; font-weight: 600;
    margin-bottom: 8px;
}

.project-card-location {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.project-card-meta {
    display: flex; gap: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.project-card-link {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text); text-decoration: none;
    transition: color 0.3s;
}

.project-card-link svg {
    width: 16px; height: 16px;
    fill: none; stroke: currentColor; stroke-width: 2;
    transition: transform 0.3s;
}

.project-card-link:hover { color: var(--accent); }
.project-card-link:hover svg { transform: translateX(5px); }

.project-card-number {
    position: absolute; bottom: 30px; right: 30px;
    font-size: 6rem; font-weight: 800;
    color: var(--border);
    line-height: 1;
    opacity: 0.5;
}

/* Projects Nav */
.projects-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 40px 60px 0;
}

.projects-nav .nav-progress {
    flex: 1; max-width: 400px;
}

.nav-arrows {
    display: flex; gap: 15px;
}

.nav-arrow {
    width: 50px; height: 50px;
    background: none;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-arrow svg {
    width: 18px; height: 18px;
    fill: none; stroke: var(--text); stroke-width: 2;
}

.nav-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.nav-arrow:hover svg { stroke: #fff; }

.section-link {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text); text-decoration: none;
    padding: 16px 32px; border: 1px solid var(--border);
    transition: all 0.4s;
}

.section-link svg {
    width: 16px; height: 16px;
    fill: none; stroke: currentColor; stroke-width: 2;
}

.section-link:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Testimonials */
.testimonials-section {
    padding: 150px 0;
    position: relative; overflow: hidden;
}

.testimonials-bg {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
}

.bg-text {
    font-size: 25vw; font-weight: 800;
    color: var(--border);
    letter-spacing: -0.05em;
}

.testimonials-wrapper {
    position: relative; z-index: 2;
    max-width: 900px; margin: 0 auto;
    text-align: center;
}

.testimonial-main { position: relative; min-height: 300px; }

.testimonial-item {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 0.6s;
}

.testimonial-item.active { opacity: 1; position: relative; }

.quote-icon {
    width: 50px; height: 50px;
    fill: var(--accent); opacity: 0.3;
    margin-bottom: 30px;
}

.testimonial-quote p {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400; line-height: 1.8;
    color: var(--text);
}

.testimonial-author {
    display: flex; align-items: center; justify-content: center;
    gap: 20px; margin-top: 40px;
}

.testimonial-author img {
    width: 60px; height: 60px; object-fit: cover;
}

.testimonial-author strong { display: block; font-weight: 600; }
.testimonial-author span { font-size: 0.85rem; color: var(--text-muted); }

.testimonial-nav {
    display: flex; align-items: center; justify-content: center;
    gap: 30px; margin-top: 60px;
}

.test-btn {
    width: 50px; height: 50px;
    background: none; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.test-btn svg {
    width: 18px; height: 18px;
    fill: none; stroke: var(--text); stroke-width: 2;
}

.test-btn:hover { background: var(--accent); border-color: var(--accent); }
.test-btn:hover svg { stroke: #fff; }

.test-counter {
    font-size: 0.9rem; font-weight: 600;
    color: var(--text-muted);
}

.test-counter span:first-child { color: var(--accent); font-size: 1.25rem; }

/* CTA Section */
.cta-section {
    height: 80vh; min-height: 600px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
}

.cta-bg { position: absolute; inset: 0; }
.cta-bg video { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); }

.cta-content {
    position: relative; z-index: 2;
    text-align: center; color: #fff;
    max-width: 700px; padding: 0 40px;
}

.cta-label {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-bottom: 30px;
}

.cta-label span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); }

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700; line-height: 1.2;
    margin-bottom: 20px;
}

.cta-title span { display: block; }

.cta-desc {
    font-size: 1.1rem; opacity: 0.8;
    margin-bottom: 40px;
}

.cta-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--accent); border: none;
    padding: 18px 36px;
    font-family: var(--font); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #fff; text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-3px); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 12px;
    background: transparent; border: 1px solid rgba(255,255,255,0.3);
    padding: 18px 36px;
    font-family: var(--font); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #fff; text-decoration: none;
    transition: all 0.4s;
}

.btn-outline svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

.cta-lines {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 100px;
    display: flex; justify-content: center; gap: 60px;
}

.cta-line {
    width: 1px; height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2));
}

/* Footer */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); }

.footer-top { padding: 100px 0 60px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: var(--text);
    margin-bottom: 20px;
}

.footer-logo .logo-icon { width: 30px; height: 30px; }
.footer-logo span { font-size: 1.25rem; font-weight: 700; letter-spacing: 0.2em; }
.footer-logo .logo-img { height: 35px; width: auto; }

.footer-brand p {
    font-size: 0.9rem; color: var(--text-light);
    line-height: 1.8; margin-bottom: 30px;
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
    width: 44px; height: 44px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}

.footer-social svg {
    width: 18px; height: 18px;
    fill: none; stroke: var(--text-light); stroke-width: 1.5;
}

.footer-social a:hover { background: var(--accent); border-color: var(--accent); }
.footer-social a:hover svg { stroke: #fff; }

.footer-nav h4, .footer-contact h4 {
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 30px;
}

.footer-nav a {
    display: block; font-size: 0.9rem;
    color: var(--text-light); text-decoration: none;
    padding: 10px 0;
    transition: color 0.3s;
}

.footer-nav a:hover { color: var(--accent); }

.footer-contact p {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.9rem; color: var(--text-light);
    margin-bottom: 16px; line-height: 1.6;
}

.footer-contact svg {
    width: 16px; height: 16px; flex-shrink: 0;
    fill: none; stroke: var(--accent); stroke-width: 1.5;
    margin-top: 3px;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid var(--border);
}

.footer-bottom .container {
    display: flex; justify-content: space-between; align-items: center;
}

.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }

/* Inner pages footer - simpler structure */
.footer-col {
    min-width: 0;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--accent);
}

.footer-col p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col .contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col .contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-col .contact-list i {
    color: var(--accent);
    width: 16px;
}

/* Footer logo text style */
.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text);
}

.footer-logo .logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--text-light);
    margin-left: 8px;
}

.footer-links { display: flex; gap: 30px; }

.footer-links a {
    font-size: 0.85rem; color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--accent); }

/* Modal */
.modal {
    position: fixed; inset: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all 0.4s;
}

.modal.active { opacity: 1; visibility: visible; }

.modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
}

.modal-box {
    position: relative; width: 100%; max-width: 450px;
    background: var(--bg-alt); padding: 60px;
    transform: translateY(30px);
    transition: transform 0.4s;
}

.modal.active .modal-box { transform: translateY(0); }

.modal-close {
    position: absolute; top: 20px; right: 20px;
    width: 44px; height: 44px;
    background: none; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close svg { width: 18px; height: 18px; stroke: var(--text); stroke-width: 2; }
.modal-close:hover { background: var(--accent); border-color: var(--accent); }
.modal-close:hover svg { stroke: #fff; }

.modal-header { text-align: center; margin-bottom: 40px; }

.modal-logo {
    width: 40px; height: 40px;
    fill: var(--accent);
    margin-bottom: 20px;
}

.modal-header h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 8px; }
.modal-header p { font-size: 0.9rem; color: var(--text-muted); }

/* Form Field */
.form-field {
    position: relative; margin-bottom: 30px;
}

.form-field input {
    width: 100%; padding: 20px 0 10px;
    background: none; border: none;
    font-family: var(--font); font-size: 1rem;
    color: var(--text); outline: none;
}

.form-field label {
    position: absolute; left: 0; top: 20px;
    font-size: 0.9rem; color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s;
}

.form-field input:focus ~ label,
.form-field input:valid ~ label {
    top: 0; font-size: 0.65rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--accent);
}

.field-line {
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 1px;
    background: var(--border);
}

.field-line::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.4s;
}

.form-field input:focus ~ .field-line::after { width: 100%; }

.form-options {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 30px;
}

.checkbox {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.85rem; color: var(--text-light);
    cursor: pointer;
}

.checkbox input { display: none; }

.checkbox span {
    width: 18px; height: 18px;
    border: 1px solid var(--border);
    position: relative;
}

.checkbox input:checked + span { background: var(--accent); border-color: var(--accent); }

.checkbox input:checked + span::after {
    content: ''; position: absolute;
    left: 5px; top: 2px;
    width: 5px; height: 9px;
    border: solid #fff; border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-options a {
    font-size: 0.85rem; color: var(--accent);
    text-decoration: none;
}

.btn-primary.full { width: 100%; justify-content: center; }

.modal-footer { text-align: center; margin-top: 30px; }

.modal-footer p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }

.modal-links { display: flex; justify-content: center; gap: 20px; }

.modal-links a {
    font-size: 0.85rem; font-weight: 600;
    color: var(--accent); text-decoration: none;
}

.modal-links span { color: var(--border); }

/* Responsive */
@media (max-width: 1400px) {
    .container { padding: 0 40px; }
    .header { padding: 25px 40px; }
    .hero-content { padding: 0 40px; }
    .hero-search { left: 40px; right: 40px; }
    .hero-stats-bar { left: 40px; }
    .hero-scroll { right: 40px; }
    .portfolio-header { left: 40px; }
    .portfolio-slide-content { left: 40px; }
    .portfolio-slide-link { right: 40px; }
    .portfolio-progress { left: 40px; right: 40px; }
    .cities-track { padding: 0 40px; }
    .reveal-section { padding: 150px 40px; }
}

@media (max-width: 1200px) {
    .nav { gap: 30px; }
    .split-section { grid-template-columns: 1fr; }
    .split-left { height: 60vh; }
    .split-sticky { height: 60vh; }
    .split-right { padding: 100px 60px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-card { width: calc(100vw - 80px); max-width: 900px; }
    .portfolio-header .container { flex-direction: column; align-items: flex-start; gap: 30px; }
}

@media (max-width: 1024px) {
    .nav { display: none; }
    .menu-btn { display: flex; }
    .header-right { gap: 15px; }
    .login-btn span { display: none; }
    .login-btn { padding: 14px; }
    .hero-title .title-line { font-size: clamp(2.5rem, 7vw, 5rem); }
    .title-line.large { font-size: clamp(3rem, 10vw, 8rem); }
    .search-inner { flex-wrap: wrap; }
    .search-field { flex: 1 1 200px; }
    .search-divider { display: none; }
    .search-btn { width: 100%; justify-content: center; margin-top: 10px; }
    .city-card { width: 240px; height: 320px; }
    /* Featured Tablet */
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-card:last-child { grid-column: span 2; }
    /* Portfolio Tablet - 2 per view becomes 1 per view */
    .portfolio-wrapper { height: 600vh; /* 6 pages */ }
    .portfolio-slide { width: 100vw; }
    .portfolio-header { left: 20px; }
    .portfolio-slide-content { left: 30px; right: 30px; bottom: 100px; }
    .portfolio-slide-num { font-size: 5rem; }
    .portfolio-progress { left: 30px; right: 30px; bottom: 30px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .header { padding: 20px; }
    .hero-content { padding: 0 20px; height: 50vh; }
    .hero-search { left: 20px; right: 20px; bottom: 30px; }
    .hero-stats-bar {
        left: 20px; right: 20px;
        bottom: 120px;
        flex-wrap: wrap;
    }
    .hero-stats-bar .hero-stat {
        padding: 15px 20px;
        flex: 1;
        min-width: 80px;
    }
    .hero-stats-bar .stat-num { font-size: 1.25rem; margin-bottom: 5px; }
    .hero-stats-bar .stat-text { font-size: 0.55rem; letter-spacing: 0.1em; }
    .hero-scroll { display: none; }
    .stat-divider { display: none; }
    /* Featured Mobile */
    .featured-section { padding: 80px 0; }
    .featured-grid { grid-template-columns: 1fr; }
    .featured-card:last-child { grid-column: span 1; }
    .featured-media { height: 220px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .cities-section { padding: 80px 0 60px; }
    .cities-track { padding: 0 20px; }
    .city-card { width: 200px; height: 280px; }
    /* Portfolio Mobile */
    .portfolio-header { left: 15px; }
    .portfolio-slide-content { left: 20px; right: 20px; bottom: 80px; max-width: none; }
    .portfolio-slide-num { font-size: 3rem; margin-bottom: 10px; }
    .portfolio-slide-title { font-size: 1.5rem; }
    .portfolio-slide-specs { flex-wrap: wrap; gap: 12px; margin-bottom: 15px; padding-bottom: 15px; }
    .portfolio-slide-price { font-size: 1.25rem; }
    .portfolio-slide-link { bottom: auto; top: 20px; right: 20px; width: 50px; height: 50px; }
    .portfolio-progress { left: 20px; right: 20px; bottom: 20px; }
    .split-right { padding: 60px 20px; }
    .reveal-section { padding: 100px 20px; }
    .testimonials-section { padding: 100px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom .container { flex-direction: column; gap: 20px; text-align: center; }
    .modal-box { padding: 40px 30px; margin: 20px; }
}

/* Animations on scroll */
[data-reveal] {
    opacity: 0; transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ============================================
   INNER PAGES HEADER (Satilik, Kiralik, Ilan etc.)
   ============================================ */

/* Inner page header */
.header-inner {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 !important;
    background: var(--bg) !important;
    border-bottom: 1px solid var(--border);
    display: block !important;
}

/* Inner page header wrapper */
.header-inner .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.header-inner .nav {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    background: transparent !important;
    padding: 0 !important;
}

.header-inner .logo {
    display: flex;
    align-items: center;
}

.header-inner .logo-img {
    height: 40px;
    width: auto;
}

/* Nav Menu - List Style */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

/* Nav Contact */
.nav-contact {
    display: flex;
    align-items: center;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-phone:hover {
    color: var(--accent);
}

.nav-phone i {
    color: var(--accent);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

/* Responsive Inner Header */
@media (max-width: 1024px) {
    .header .container {
        padding: 0 30px;
    }
    .nav-menu {
        gap: 25px;
    }
    .nav-contact {
        display: none;
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 0 20px;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: var(--bg);
        padding: 40px 20px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s;
        z-index: 999;
    }
    .nav-menu.active {
        transform: translateX(0);
    }
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }
    .nav-menu a {
        display: block;
        padding: 20px 0;
        font-size: 1.1rem;
    }
    .mobile-menu-btn {
        display: flex;
    }
}

/* ============================================
   LISTING PAGES (Satilik, Kiralik)
   ============================================ */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 140px 0 60px;
    text-align: center;
    color: #fff;
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
}
.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

/* Listing Section */
.listing-section {
    padding: 60px 0;
    background: var(--bg);
}

.listing-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Filters Sidebar */
.listing-filters {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-form {
    background: var(--bg-alt);
    padding: 25px;
    border: 1px solid var(--border);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.filter-select,
.filter-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.filter-btn {
    width: 100%;
    padding: 14px 20px;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s;
}

.filter-btn:hover {
    background: var(--accent-dark);
}

.filter-clear {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
}

.filter-clear:hover {
    color: var(--accent);
}

/* Listing Results */
.listing-results {
    min-height: 400px;
}

.listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.listing-count {
    font-size: 0.95rem;
    color: var(--text-light);
}

.listing-count strong {
    color: var(--text);
}

.listing-sort select {
    padding: 10px 15px;
    border: 1px solid var(--border);
    background: var(--bg-alt);
    color: var(--text);
    font-size: 0.9rem;
    cursor: pointer;
}

/* Property Grid - Listing Pages */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

/* Property Card - Grid Version */
.property-grid .property-card {
    width: 100%;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.property-grid .property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Property Image - Clickable */
.property-grid .property-image {
    display: block;
    position: relative;
    height: 240px;
    overflow: hidden;
    cursor: pointer;
}

.property-grid .property-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
    transition: opacity 0.3s;
}

.property-grid .property-card:hover .property-image::after {
    opacity: 0.5;
}

.property-grid .property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.property-grid .property-card:hover .property-image img {
    transform: scale(1.08);
}

.property-grid .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    color: var(--text-muted);
    font-size: 3rem;
}

/* Property Badge */
.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: none;
    z-index: 2;
}

.property-badge.sale {
    background: var(--accent);
    color: #fff;
}

.property-badge.rent {
    background: #1a1a1a;
    color: #fff;
}

.property-featured {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f39c12;
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 2;
}

/* Property Content */
.property-grid .property-content {
    padding: 20px;
}

.property-grid .property-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.property-grid .property-location i {
    color: var(--accent);
    font-size: 0.8rem;
}

.property-grid .property-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.property-grid .property-title a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.property-grid .property-title a:hover {
    color: var(--accent);
}

/* Make entire card clickable */
.property-grid .property-card {
    cursor: pointer;
    position: relative;
}

/* Stretch first link to cover entire card */
.property-grid .property-card .property-image {
    position: relative;
}

.property-grid .property-card .property-title a::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.property-grid .property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 15px;
}

.property-grid .property-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.property-grid .property-features i {
    color: var(--accent);
    font-size: 0.85rem;
}

.property-grid .property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-grid .property-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

.property-grid .property-price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-light);
}

.property-grid .property-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.property-grid .property-link:hover {
    color: var(--accent);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 40px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
}

.no-results i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text);
}

.no-results p {
    color: var(--text-light);
}

/* Responsive Listing Pages */
@media (max-width: 1024px) {
    .listing-layout {
        grid-template-columns: 1fr;
    }
    .listing-filters {
        position: static;
        order: -1;
    }
    .filter-form {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .filter-group {
        margin-bottom: 0;
    }
    .filter-btn {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 50px;
    }
    .page-hero h1 {
        font-size: 2rem;
    }
    .filter-form {
        grid-template-columns: 1fr 1fr;
    }
    .filter-btn {
        grid-column: span 2;
    }
    .property-grid {
        grid-template-columns: 1fr;
    }
    .listing-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .filter-form {
        grid-template-columns: 1fr;
    }
    .filter-btn {
        grid-column: span 1;
    }
}
