/* ═══════════════════════════════════════════════
   Milano City – Ana Sayfa Stilleri
   ═══════════════════════════════════════════════ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold:      #c8972e;
    --gold-dark: #a87e2e;
    --gold-fade: rgba(200, 151, 46, 0.18);
    --dark:      #080c18;
    --dark-card: #0e1424;
    --text-dim:  rgba(255, 255, 255, 0.58);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    background: var(--dark);
    color: #fff;
    overflow-x: hidden;
}

/* ── Scrollbar ───────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ══════════════════════════════════════════════
   TOPBAR
══════════════════════════════════════════════ */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1001;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 52px;
    background: rgba(4, 6, 14, 0.96);
    border-bottom: 1px solid rgba(200, 151, 46, 0.10);
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

.topbar-contact a:hover { color: var(--gold); }

.topbar-contact svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.topbar-sep {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.14);
    flex-shrink: 0;
}

.topbar-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-soc {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s, transform 0.2s;
}

.topbar-soc svg {
    width: 17px;
    height: 17px;
}

.topbar-soc:hover {
    color: var(--gold);
    transform: translateY(-1px);
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 44px; left: 0; right: 0;
    z-index: 1000;
    height: 90px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 52px;
    background: rgba(8, 12, 24, 0.30);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(200, 151, 46, 0.14);
    transition: background 0.3s;
}

.navbar.scrolled {
    background: rgba(6, 9, 18, 0.97);
}

/* ── Logo (merkez sütun) ─────────────────────── */
.nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    height: 90px;
    overflow: hidden;
}

.nav-logo img {
    height: 300px;
    width: 100%;
    display: block;
    object-fit: contain;
}

.nav-logo-fallback {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    display: none;
}

.nav-logo-fallback span { color: var(--gold); }

/* ── Sol nav linkleri ────────────────────────── */
.nav-left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 36px;
    list-style: none;
    padding-right: 36px;
    height: 72px;
}

/* ── Sağ bölüm ───────────────────────────────── */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0;
    padding-left: 36px;
    height: 72px;
}

.nav-right-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    height: 72px;
}

/* ── Ortak link stilleri ─────────────────────── */
.nav-left a,
.nav-right-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.2px;
    transition: color 0.2s;
}

.nav-left a:hover,   .nav-left a.active,
.nav-right-links a:hover, .nav-right-links a.active {
    color: var(--gold);
}

/* ── Sosyal medya ikonları ───────────────────── */
.nav-socials {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-left: 22px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-soc {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.50);
    line-height: 0;
    transition: color 0.2s, transform 0.2s;
}

.nav-soc svg {
    width: 15px;
    height: 15px;
}

.nav-soc:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* ── Hamburger (mobil menü butonu) ───────────── */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    flex-shrink: 0;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobil menü paneli ────────────────────────── */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 90px; right: 0;
    width: min(320px, 82vw);
    height: calc(100vh - 90px);
    background: rgba(6, 9, 18, 0.98);
    border-left: 1px solid rgba(200, 151, 46, 0.18);
    padding: 28px 28px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 999;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.mobile-menu-links > li { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }

.mobile-menu-links a,
.mobile-menu-dropdown > span {
    display: block;
    padding: 16px 4px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
}

.mobile-menu-dropdown > span::after {
    content: ' \25BE';
    font-size: 10px;
    opacity: 0.65;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active { color: var(--gold); }

.mobile-menu-dropdown ul {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    padding-left: 14px;
    transition: max-height 0.3s ease;
}

.mobile-menu-dropdown.open ul { max-height: 200px; }

.mobile-menu-dropdown ul a { font-size: 12px; padding: 12px 4px; color: rgba(255, 255, 255, 0.6); }

body.menu-open { overflow: hidden; }

/* ── Dropdown ─────────────────────────────────── */
.nav-dropdown { position: relative; height: 72px; display: flex; align-items: center; }

.nav-dropdown > a::after {
    content: ' \25BE';
    font-size: 9px;
    opacity: 0.65;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(6, 9, 18, 0.98);
    border: 1px solid rgba(200, 151, 46, 0.22);
    border-top: 2px solid var(--gold);
    list-style: none;
    min-width: 190px;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
    display: block;
    padding: 11px 22px;
    font-size: 11px !important;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
}

.nav-dropdown-menu li a:hover {
    color: var(--gold);
    background: rgba(200,151,46,0.08);
}

/* ══════════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to right,
        rgba(6, 10, 22, 0.32) 0%,
        rgba(6, 10, 22, 0.14) 45%,
        rgba(6, 10, 22, 0) 100%
    );
}

.hero-content {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    left: 80px;
    padding-top: 108px;
    max-width: 580px;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-title {
    font-size: clamp(52px, 6vw, 82px);
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 0.95;
    margin-bottom: 14px;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.hero-sub {
    font-size: clamp(13px, 1.6vw, 19px);
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 380px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    display: inline-block;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    background: transparent;
    padding: 14px 40px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}

.hero-btn:hover {
    background: var(--gold);
    color: #fff;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 46px;
    height: 46px;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    user-select: none;
}

.hero-arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 151, 46, 0.1);
}

.hero-arrow.prev { left: 22px; }
.hero-arrow.next { right: 22px; }

.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.35);
}

/* ══════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════ */
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-card);
    border-top: 1px solid var(--gold-fade);
    border-bottom: 1px solid var(--gold-fade);
    padding: 0 60px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 44px;
    flex: 1;
    justify-content: center;
}

.stat-icon { color: var(--gold); }
.stat-icon svg { width: 38px; height: 38px; }

.stat-num {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
}

.stat-div {
    width: 1px;
    height: 52px;
    background: var(--gold-fade);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════ */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 52px;
    padding: 88px 80px;
    align-items: start;
}

.section-tag {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-title {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 22px;
}

.about-text {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.85;
    margin-bottom: 36px;
}

.btn-outline-light {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.75);
    background: none;
    padding: 11px 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Video Box */
.video-box {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #0a1525;
    cursor: pointer;
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(200, 151, 46, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 0 0 14px rgba(200, 151, 46, 0.15);
    z-index: 2;
    pointer-events: none;
}

.video-box:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--gold);
}

.play-btn svg {
    width: 24px;
    height: 24px;
    color: #fff;
    margin-left: 5px;
}

.play-btn.hidden { display: none; }

/* Features */
.features-title {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
}

.feature-item:last-child { border-bottom: none; }

.feature-icon {
    color: var(--gold);
    flex-shrink: 0;
    opacity: 0.9;
}

.feature-icon svg { width: 19px; height: 19px; }

/* ══════════════════════════════════════════════
   LIVING AREAS
══════════════════════════════════════════════ */
.living-section {
    padding: 0 80px 88px;
}

.living-section .section-tag {
    margin-bottom: 24px;
}

.living-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.living-card {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
}

.living-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.living-card:hover .living-img {
    transform: scale(1.07);
}

.living-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 55%);
}

.living-label {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #fff;
}

/* ══════════════════════════════════════════════
   YAŞAM ALANLARI MİNİ GALERİ
══════════════════════════════════════════════ */
.lg-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(6, 10, 22, 0.94);
    align-items: center;
    justify-content: center;
}

.lg-modal.open {
    display: flex;
}

.lg-modal-inner {
    position: relative;
    max-width: min(880px, 88vw);
    max-height: 84vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lg-modal-img {
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
    display: block;
    border-radius: 2px;
}

.lg-modal-title {
    margin-top: 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.lg-modal-count {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    letter-spacing: 1px;
}

.lg-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
}

.lg-arrow {
    background: none;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
    margin: 0 24px;
}

.lg-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

@media (max-width: 720px) {
    .lg-modal-inner { max-width: 92vw; }
    .lg-arrow { width: 38px; height: 38px; margin: 0 10px; font-size: 20px; }
    .lg-close { top: 14px; right: 16px; font-size: 28px; }
}

/* ══════════════════════════════════════════════
   SATIŞ OFİSİ
══════════════════════════════════════════════ */
.office-section {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: start;
    padding: 88px 80px;
    background: var(--dark-card);
    border-top: 1px solid var(--gold-fade);
    border-bottom: 1px solid var(--gold-fade);
}

.office-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #fff;
}

.office-desc {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 380px;
}

.office-contacts {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 38px;
}

.office-ci {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.office-ci-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-fade);
    border: 1px solid rgba(200, 151, 46, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.office-ci-icon svg { width: 17px; height: 17px; }

.office-ci-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.office-ci-val {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    line-height: 1.55;
    text-decoration: none;
}

a.office-ci-val:hover { color: var(--gold); }

/* Görsel grid: 2 üstte + 1 altta tam genişlik */
.office-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
}

.office-img-wrap {
    overflow: hidden;
    border-radius: 4px;
    background: #0e1424;
}

.office-img-top  { aspect-ratio: 4 / 3; }
.office-img-bottom {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 7;
}

.office-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.office-img-wrap:hover img { transform: scale(1.05); }

/* ══════════════════════════════════════════════
   BOTTOM: REFERENCE PROJECTS + CONTACT
══════════════════════════════════════════════ */
.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 80px 88px;
}

/* Reference Projects */
.ref-title {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.ref-track-wrap { overflow: hidden; }

.ref-track {
    display: flex;
    gap: 10px;
    transition: transform 0.45s ease;
}

.ref-card {
    flex: 0 0 calc(33.33% - 7px);
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}

.ref-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.ref-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.74) 0%, transparent 55%);
}

.ref-info {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
}

.ref-name {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.ref-loc {
    font-size: 10px;
    color: var(--text-dim);
    margin-top: 3px;
}

.ref-controls {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.ref-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: none;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: border-color 0.2s, color 0.2s;
}

.ref-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Partners (inside left column) */
.partners-inner {
    margin-top: 48px;
}

.partners-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.partners-grid {
    display: flex;
}

.partner-card {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
    cursor: default;
}

.partner-card:hover {
    border-color: var(--gold-fade);
}

.partner-name {
    font-size: 11.5px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.32);
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.4;
    transition: color 0.2s;
}

.partner-card:hover .partner-name {
    color: rgba(255, 255, 255, 0.55);
}

/* ══════════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════════ */
.contact-box {}

.contact-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-info-list { margin-bottom: 22px; }

.ci-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 9px;
}

.ci-item svg {
    width: 15px;
    height: 15px;
    color: var(--gold);
    flex-shrink: 0;
}

/* Form messages */
.form-mesaj {
    display: none;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 12.5px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.form-mesaj.basari {
    background: #054235;
    color: #6ee7b7;
    border: 1px solid #065f46;
}

.form-mesaj.hata {
    background: #7f1d1d;
    color: #fca5a5;
    border: 1px solid #991b1b;
}

/* Form inputs */
.dark-form {
    display: flex;
    flex-direction: column;
}

.df-row {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}

.df-row input { flex: 1; }

.dark-form input,
.dark-form textarea {
    width: 100%;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    padding: 10px 14px;
    color: #fff;
    font-size: 12.5px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 10px;
}

.dark-form input::placeholder,
.dark-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.dark-form input:focus,
.dark-form textarea:focus {
    border-color: var(--gold);
}

.dark-form textarea {
    resize: vertical;
    min-height: 76px;
}

.kvkk-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.kvkk-row input[type="checkbox"] {
    width: 15px;
    height: 15px;
    min-width: 15px;
    margin-top: 2px;
    accent-color: var(--gold);
    cursor: pointer;
}

.kvkk-row label {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.55;
    cursor: pointer;
}

.kvkk-row label a {
    color: var(--gold);
    text-decoration: underline;
}

.btn-gold {
    width: 100%;
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 13px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

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

.btn-gold:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Map placeholder */
.map-box {
    margin-top: 16px;
    height: 148px;
    background: #111827;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.35);
}

.map-pin svg {
    width: 30px;
    height: 30px;
    color: var(--gold);
}

.map-pin span {
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
    background: #050810;
    border-top: 1px solid var(--gold-fade);
    padding: 30px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    height: 150px;
    display: block;
}

.footer-logo-fallback {
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    display: none;
}

.footer-logo-fallback span { color: var(--gold); }

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
    letter-spacing: 0.5px;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-phone:hover { color: #fff; }
.footer-phone svg { width: 16px; height: 16px; }

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .topbar { padding: 0 32px; }
    .navbar { padding: 0 32px; }
    .nav-left, .nav-right-links { gap: 22px; }
    .nav-left { padding-right: 24px; }
    .nav-right { padding-left: 24px; }
    .nav-socials { margin-left: 14px; padding-left: 14px; gap: 10px; }

    .hero-content { left: 48px; }

    .stats-bar { padding: 0 24px; }
    .stat-item { padding: 24px 24px; gap: 14px; }
    .stat-num { font-size: 26px; }

    .about-section,
    .living-section,
    .office-section,
    .bottom-grid,
    .footer { padding-left: 48px; padding-right: 48px; }

    .office-section { grid-template-columns: 1fr; gap: 44px; padding-top: 64px; padding-bottom: 64px; }
}

@media (max-width: 960px) {
    .topbar { display: none; }
    .navbar { top: 0; }
    .nav-left, .nav-right-links { display: none; }
    .nav-right { padding-left: 0; justify-content: flex-end; }
    .nav-socials { margin-left: 0; border-left: none; }
    .nav-burger { display: flex; }

    .ref-card { flex: 0 0 100%; }

    .about-section {
        grid-template-columns: 1fr;
        padding-top: 64px;
        padding-bottom: 64px;
        gap: 36px;
    }

    .video-box { aspect-ratio: 16 / 9; }

    .living-grid { grid-template-columns: repeat(3, 1fr); }
    .living-card:nth-child(n+4) { display: none; }

    .bottom-grid { grid-template-columns: 1fr; gap: 48px; }

    .partners-grid { flex-wrap: wrap; }
    .partner-card { flex: 0 0 50%; }
}

@media (max-width: 640px) {
    .navbar { padding: 0 20px; }

    .hero-content { left: 24px; padding-right: 24px; }
    .hero-title { font-size: 42px; }

    .stats-bar { flex-direction: column; padding: 0; }
    .stat-item { width: 100%; border-bottom: 1px solid var(--gold-fade); padding: 20px 32px; }
    .stat-div { display: none; }

    .about-section,
    .living-section,
    .office-section,
    .bottom-grid,
    .footer { padding-left: 24px; padding-right: 24px; }

    .living-grid { grid-template-columns: repeat(2, 1fr); }
    .living-card:nth-child(n+4) { display: flex; }
    .living-card:nth-child(5) { display: none; }

    .df-row { flex-direction: column; }

    .footer { flex-direction: column; gap: 16px; text-align: center; }
}

/* ══════════════════════════════════════════════
   FLOATING SIDE BUTTONS
══════════════════════════════════════════════ */
.float-side {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fs-btn {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 11px;
    border-radius: 0 12px 12px 0;
    color: #fff;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: -4px 0 18px rgba(0, 0, 0, 0.35);
    transition: padding 0.3s ease, filter 0.2s ease;
    cursor: pointer;
}

.fs-btn:hover {
    padding-bottom: 28px;
    filter: brightness(1.12);
}

.fs-icon {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    transform: rotate(180deg);
}

.fs-call  { background: #c0392b; }
.fs-wa    { background: #25D366; }

@media (max-width: 640px) {
    .fs-btn { font-size: 9px; padding: 14px 9px; gap: 7px; }
    .fs-icon { width: 14px; height: 14px; }
}
