/* ================================================================
   METROFIŞ GAYRİMENKUL — ANA STİL DOSYASI
   ================================================================ */

/* ---- CSS DEĞİŞKENLERİ ---- */
:root {
    --primary:        #0a2540;
    --primary-light:  #163860;
    --gold:           #c9a84c;
    --gold-light:     #e8c96a;
    --accent:         #e63946;
    --text-dark:      #1a202c;
    --text:           #4a5568;
    --text-light:     #718096;
    --bg:             #f7f8fa;
    --bg-dark:        #0d1b2a;
    --border:         #e2e8f0;
    --white:          #ffffff;
    --green:          #10b981;
    --shadow:         0 4px 24px rgba(10,37,64,0.10);
    --shadow-lg:      0 12px 48px rgba(10,37,64,0.16);
    --radius:         14px;
    --radius-sm:      8px;
    --transition:     all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    background: var(--white);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- YARDIMCI ---- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.highlight { color: var(--gold); }
.d-none-sm { display: inline; }

/* ---- BUTONLAR ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--primary); background: var(--bg); }
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }
.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ---- SECTION HEADER ---- */
.sec-header {
    text-align: center;
    margin-bottom: 56px;
}
.sec-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(201,168,76,0.12);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid rgba(201,168,76,0.25);
}
.sec-tag.light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
}
.sec-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}
.sec-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   NAVİGASYON
   ================================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 12px 0;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand-metro { font-size: 1.1rem; font-weight: 800; color: var(--white); letter-spacing: 1px; }
.brand-fis   { font-size: 1.1rem; font-weight: 800; color: var(--gold); letter-spacing: 1px; }
.navbar.scrolled .brand-metro { color: var(--primary); }
.brand-text small {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
}
.navbar.scrolled .brand-text small { color: var(--text-light); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}
.nav-links li a {
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.navbar.scrolled .nav-links li a { color: var(--text); }
.nav-links li a:hover {
    color: var(--gold);
    background: rgba(201,168,76,0.1);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.nav-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: var(--gold);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-phone:hover { background: var(--gold-light); }
.nav-phone span { display: inline; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
}
.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--primary); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?w=1920&q=80');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,37,64,0.88) 0%,
        rgba(10,37,64,0.70) 50%,
        rgba(10,37,64,0.82) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 60px;
    max-width: 900px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(201,168,76,0.18);
    border: 1px solid rgba(201,168,76,0.35);
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}
.hero-content h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 20px;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.78);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Arama Kutusu */
.search-box {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 820px;
    margin: 0 auto 40px;
}
.search-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
}
.stab {
    flex: 1;
    padding: 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}
.stab.active, .stab:hover {
    color: var(--primary);
    border-bottom-color: var(--gold);
    background: rgba(201,168,76,0.06);
}
.search-fields {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 16px;
    flex-wrap: wrap;
    gap: 12px;
}
.sf-group {
    flex: 1;
    min-width: 160px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    transition: var(--transition);
}
.sf-group:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.sf-group i { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }
.sf-group select {
    border: none;
    background: transparent;
    font-size: 0.88rem;
    color: var(--text);
    outline: none;
    width: 100%;
    cursor: pointer;
}
.btn-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-search:hover { background: var(--primary-light); }

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 16px 32px;
    max-width: 640px;
    margin: 0 auto;
}
.hstat {
    text-align: center;
    padding: 0 28px;
}
.hstat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.hstat span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    display: block;
}
.hstat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Animasyonlar */
.animate-fade-down { opacity: 0; transform: translateY(-20px); animation: fadeDown 0.7s ease forwards; }
.animate-fade-up   { opacity: 0; transform: translateY(20px);  animation: fadeUp   0.7s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
@keyframes fadeDown { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp   { to { opacity: 1; transform: translateY(0); } }

/* ================================================================
   METRO BAR
   ================================================================ */
.metro-bar {
    background: var(--primary);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 990;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.metro-bar-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}
.metro-bar-title {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}
.metro-lines-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.metro-lines-scroll::-webkit-scrollbar { display: none; }
.mline {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.12);
    white-space: nowrap;
    transition: var(--transition);
    cursor: pointer;
}
.mline::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--lc, #ccc);
    flex-shrink: 0;
}
.mline span {
    font-size: 0.72rem;
    background: rgba(255,255,255,0.1);
    padding: 1px 6px;
    border-radius: 50px;
}
.mline.active, .mline:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
}

/* ================================================================
   İLANLAR
   ================================================================ */
.sec-properties {
    padding: 100px 0;
    background: var(--bg);
}
.filter-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.fbtn {
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    border: 1.5px solid var(--border);
    background: var(--white);
    transition: var(--transition);
}
.fbtn.active, .fbtn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

/* Property Card */
.prop-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}
.prop-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.prop-card.hidden { display: none; }
.prop-img {
    position: relative;
    overflow: hidden;
    height: 230px;
}
.prop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.prop-card:hover .prop-img img { transform: scale(1.07); }
.prop-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.tag-gold   { background: var(--gold);    color: var(--primary); }
.tag-blue   { background: #1e88e5;        color: #fff; }
.tag-green  { background: var(--green);   color: #fff; }
.tag-orange { background: #fb8c00;        color: #fff; }
.tag-red    { background: var(--accent);  color: #fff; }
.tag-navy   { background: var(--primary); color: #fff; }
.tag-purple { background: #8e24aa;        color: #fff; }

.prop-fav {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.prop-fav:hover, .prop-fav.active { color: var(--accent); }

.prop-metro {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,37,64,0.85), transparent);
    padding: 20px 14px 10px;
    color: var(--white);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 5px;
}
.prop-metro i { color: var(--gold); }

.prop-body {
    padding: 20px;
}
.prop-location {
    font-size: 0.78rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
}
.prop-location i { color: var(--gold); font-size: 0.75rem; }
.prop-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.35;
}
.prop-specs {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.pspec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-light);
}
.pspec i { color: var(--primary); font-size: 0.78rem; }
.prop-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.prop-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
}
.prop-price small {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-light);
    display: block;
    margin-top: 1px;
}
.prop-detail-btn {
    padding: 8px 18px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.prop-detail-btn:hover { background: var(--gold); color: var(--primary); }
.sec-cta { text-align: center; margin-top: 20px; }

/* ================================================================
   HİZMETLER
   ================================================================ */
.sec-services {
    padding: 100px 0;
    background: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}
.srv-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
}
.srv-card:hover {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.srv-card.featured {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.srv-card.featured h3, .srv-card.featured p { color: var(--white); }
.srv-card.featured .srv-features li { color: rgba(255,255,255,0.75); }
.srv-card.featured .srv-features i { color: var(--gold); }
.srv-badge {
    position: absolute;
    top: -12px;
    left: 28px;
    background: var(--gold);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.srv-icon {
    width: 58px;
    height: 58px;
    background: rgba(201,168,76,0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.srv-card.featured .srv-icon { background: rgba(255,255,255,0.12); }
.srv-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.srv-card p  { font-size: 0.89rem; color: var(--text); line-height: 1.6; margin-bottom: 18px; }
.srv-features { margin-bottom: 20px; }
.srv-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    color: var(--text);
    padding: 4px 0;
}
.srv-features i { color: var(--green); font-size: 0.8rem; }
.srv-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    transition: var(--transition);
}
.srv-link:hover { gap: 10px; }

/* ================================================================
   HAKKIMIZDA
   ================================================================ */
.sec-about {
    padding: 100px 0;
    background: var(--bg);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-visuals { position: relative; }
.about-img-wrap { position: relative; }
.about-img-wrap > img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.about-img-float {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 260px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.about-img-float img { width: 100%; height: 170px; object-fit: cover; }
.about-badge-box {
    position: absolute;
    top: 32px;
    left: -20px;
    background: var(--gold);
    color: var(--primary);
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-badge-box strong { display: block; font-size: 2rem; font-weight: 800; }
.about-badge-box span   { font-size: 0.75rem; font-weight: 600; line-height: 1.3; }
.about-content .sec-tag { display: inline-block; margin-bottom: 14px; }
.about-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}
.about-lead { font-size: 1.05rem; font-weight: 500; color: var(--text-dark); margin-bottom: 16px; }
.about-content p { font-size: 0.95rem; color: var(--text); margin-bottom: 28px; }
.about-features { margin-bottom: 32px; display: flex; flex-direction: column; gap: 16px; }
.af-item { display: flex; align-items: flex-start; gap: 14px; }
.af-icon {
    width: 44px;
    height: 44px;
    background: rgba(201,168,76,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.af-text strong { font-size: 0.95rem; color: var(--text-dark); display: block; margin-bottom: 3px; }
.af-text p { font-size: 0.83rem; color: var(--text-light); margin: 0; }
.about-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ================================================================
   SAYAÇ
   ================================================================ */
.sec-stats {
    padding: 72px 0;
    background: var(--primary);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
.stat-card {
    text-align: center;
    padding: 28px 16px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.stat-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 12px; }
.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}
.stat-plus { font-size: 1.4rem; }
.stat-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.6); font-weight: 500; }

/* ================================================================
   HESAPLAYICI
   ================================================================ */
.sec-calc {
    padding: 100px 0;
    background: var(--white);
}
.calc-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: start;
}
.calc-inputs {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
}
.calc-inputs h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.calc-inputs h3 i { color: var(--gold); }
.calc-group { margin-bottom: 22px; }
.calc-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.calc-group label strong { color: var(--primary); }
.calc-group small { font-size: 0.75rem; color: var(--gold); display: block; margin-top: 5px; }
.calc-input-wrap {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}
.calc-input-wrap:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.calc-input-wrap input {
    flex: 1;
    border: none;
    padding: 11px 14px;
    font-size: 0.92rem;
    color: var(--text-dark);
    font-weight: 600;
    outline: none;
    background: transparent;
}
.calc-unit {
    padding: 0 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    background: var(--bg);
    border-left: 1px solid var(--border);
    height: 44px;
    display: flex;
    align-items: center;
}
.range-slider {
    width: 100%;
    height: 5px;
    accent-color: var(--gold);
    cursor: pointer;
    border-radius: 5px;
    margin-top: 4px;
}
.calc-btn { width: 100%; justify-content: center; margin-top: 8px; }

.calc-results {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 36px 32px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}
.res-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.res-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.res-sub { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; flex: 1; }
.res-item {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.08);
}
.res-item.highlight-res { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.3); }
.res-item.total-res {
    grid-column: 1/-1;
    background: rgba(201,168,76,0.18);
    border-color: var(--gold);
}
.res-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.55); display: block; margin-bottom: 6px; }
.res-val { font-size: 1rem; font-weight: 700; color: var(--white); }
.res-val.gold { color: var(--gold); font-size: 1.15rem; }
.res-val.green { color: #4ade80; }
.total-res .res-val { font-size: 1.25rem; color: var(--gold-light); }
.res-note {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    margin-top: 16px;
    line-height: 1.5;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.sec-testimonials {
    padding: 100px 0;
    background: var(--bg);
}
.testimonials-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.testimonials-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius);
}
.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.tcard {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
    transition: var(--transition);
}
.tcard:hover { box-shadow: var(--shadow-lg); border-color: var(--gold); }
.tcard-stars { font-size: 1rem; margin-bottom: 14px; color: var(--gold); }
.tcard p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.tcard p::before { content: '"'; font-size: 1.5rem; color: var(--gold); line-height: 0; vertical-align: -0.3em; margin-right: 2px; }
.tcard-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.tcard-author img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}
.tcard-author strong { font-size: 0.9rem; color: var(--text-dark); display: block; }
.tcard-author span   { font-size: 0.76rem; color: var(--text-light); }
.tslide-btn {
    width: 46px;
    height: 46px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--primary);
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
    transition: var(--transition);
    flex-shrink: 0;
}
.tslide-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.tdots {
    display: flex;
    gap: 8px;
    justify-content: center;
}
.tdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.tdot.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* ================================================================
   EKİP
   ================================================================ */
.sec-team {
    padding: 100px 0;
    background: var(--white);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.team-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-img { position: relative; overflow: hidden; }
.team-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
    display: block;
}
.team-card:hover .team-img img { transform: scale(1.05); }
.team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,37,64,0.75);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    opacity: 0;
    transition: var(--transition);
}
.team-card:hover .team-overlay { opacity: 1; }
.team-socials { display: flex; gap: 10px; }
.team-socials a {
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
    transition: var(--transition);
}
.team-socials a:hover { background: var(--gold); }
.team-info { padding: 20px; }
.team-info h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.team-title { font-size: 0.8rem; color: var(--text-light); display: block; margin-bottom: 10px; }
.team-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.team-tags span {
    padding: 3px 10px;
    background: rgba(201,168,76,0.1);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid rgba(201,168,76,0.25);
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.sec-cta-banner {
    position: relative;
    padding: 88px 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1a4080 50%, #0d2a4a 100%);
}
.cta-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-text h2 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}
.cta-text p { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   İLETİŞİM
   ================================================================ */
.sec-contact {
    padding: 100px 0;
    background: var(--bg);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 52px;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.cinfo-item { display: flex; align-items: flex-start; gap: 14px; }
.cinfo-icon {
    width: 44px;
    height: 44px;
    background: rgba(201,168,76,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.cinfo-item strong { display: block; font-size: 0.88rem; color: var(--text-dark); font-weight: 700; margin-bottom: 3px; }
.cinfo-item p { font-size: 0.85rem; color: var(--text); line-height: 1.6; margin: 0; }
.cinfo-item a { color: var(--text); transition: var(--transition); }
.cinfo-item a:hover { color: var(--gold); }
.cinfo-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.csoc {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 0.95rem;
    transition: var(--transition);
}
.csoc:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.csoc.whatsapp:hover { background: #25D366; border-color: #25D366; }

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; }
.fg input, .fg select, .fg textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--bg);
    outline: none;
    transition: var(--transition);
    resize: vertical;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
    background: var(--white);
}
.form-success {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    color: var(--green);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    margin-top: 14px;
}
.form-success.show { display: flex; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background: var(--bg-dark); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-logo i {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}
.footer-logo span { font-size: 1.15rem; font-weight: 800; }
.footer-brand-col p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--primary); }
.footer-links-col h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { font-size: 0.84rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-links-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-newsletter-col h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.footer-newsletter-col p { font-size: 0.83rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; line-height: 1.6; }
.newsletter-form {
    display: flex;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.1);
}
.newsletter-form input {
    flex: 1;
    padding: 11px 14px;
    background: rgba(255,255,255,0.07);
    border: none;
    color: var(--white);
    font-size: 0.85rem;
    outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button {
    padding: 0 18px;
    background: var(--gold);
    color: var(--primary);
    font-size: 0.9rem;
    transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ================================================================
   MODAL
   ================================================================ */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}
.modal.open { display: block; }
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,37,64,0.75);
    cursor: pointer;
}
.modal-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: var(--radius);
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    background: var(--bg);
    border-radius: 50%;
    font-size: 0.85rem;
    color: var(--text);
    z-index: 1;
    transition: var(--transition);
}
.modal-close:hover { background: var(--accent); color: var(--white); }
.modal-content { padding: 36px; }
.modal-img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 24px; }
.modal-title { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.modal-loc { font-size: 0.85rem; color: var(--text-light); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.modal-metro { font-size: 0.85rem; color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.modal-specs { display: flex; gap: 16px; flex-wrap: wrap; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 18px; }
.modal-spec { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; min-width: 80px; padding: 12px 8px; background: var(--bg); border-radius: var(--radius-sm); }
.modal-spec i { color: var(--gold); font-size: 1rem; }
.modal-spec strong { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.modal-spec span { font-size: 0.72rem; color: var(--text-light); }
.modal-feats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.modal-feat { padding: 5px 12px; background: rgba(201,168,76,0.1); color: var(--gold); font-size: 0.78rem; font-weight: 600; border-radius: 50px; border: 1px solid rgba(201,168,76,0.25); }
.modal-price-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.modal-price-big { font-size: 1.8rem; font-weight: 800; color: var(--primary); }

/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9000;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37,211,102,0.4);
    animation: waPulse 2.5s ease infinite;
}
@keyframes waPulse {
    0%   { transform: scale(1);    opacity: 0.7; }
    70%  { transform: scale(1.65); opacity: 0; }
    100% { transform: scale(1.65); opacity: 0; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .calc-layout { grid-template-columns: 1fr; }
    .about-grid { gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-img-float { display: none; }
    .about-badge-box { left: 16px; }
    .contact-grid { grid-template-columns: 1fr; }
    .tcard { flex: 0 0 calc(50% - 12px); }
    .properties-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--primary); flex-direction: column; align-items: center; justify-content: center; gap: 8px; z-index: 9998; }
    .nav-links.open { display: flex; }
    .nav-links li a { font-size: 1.2rem; padding: 12px 24px; }
    .nav-toggle { display: flex; }
    .nav-phone span { display: none; }
    .nav-phone { padding: 9px; border-radius: 50%; width: 38px; height: 38px; justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid .stat-card:last-child { grid-column: 1/-1; }
    .hero-stats { flex-wrap: wrap; padding: 16px; gap: 12px; }
    .hstat-divider { display: none; }
    .hstat { min-width: calc(50% - 6px); }
    .search-fields { flex-direction: column; }
    .sf-group { min-width: 100%; }
    .tcard { flex: 0 0 100%; }
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .hero-content h1 { font-size: 2rem; }
    .d-none-sm { display: none; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .metro-bar-title { display: none; }
}

@media (max-width: 480px) {
    .properties-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .sec-header { margin-bottom: 36px; }
    .sec-properties, .sec-services, .sec-about, .sec-team, .sec-calc, .sec-contact, .sec-testimonials { padding: 64px 0; }
    .contact-form-wrap { padding: 24px; }
    .cta-banner { padding: 56px 0; }
    .res-grid { grid-template-columns: 1fr; }
    .modal-content { padding: 22px; }
}
