/* ============================================================
   EMLAK ALANYA — ANA STİL
   Renk Paleti: #0B1220 (koyu) | #D4AF37 (altın) | #fff
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: #1a1a1a;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Section Başlıkları ---- */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: inherit;
}

.section-sub {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 48px;
}

.section-dark .section-sub {
    color: #aab;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 18, 32, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: background 0.3s;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-img {
    height: 46px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
}
.main-nav ul {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.main-nav a:hover {
    color: #D4AF37;
    border-bottom-color: #D4AF37;
}

.btn-whatsapp-header {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #D4AF37;
    color: #0B1220;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 4px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
}

.btn-whatsapp-header:hover {
    background: #c49e2a;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   SLIDER
   ============================================================ */
.slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slider-no-image {
    background: #0B1220;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(11, 18, 32, 0.82) 0%,
        rgba(11, 18, 32, 0.55) 55%,
        rgba(11, 18, 32, 0.35) 100%
    );
    z-index: 1;
}

.slider-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.slider-left {
    flex: 1;
    max-width: 540px;
}

.slider-slogan {
    color: #D4AF37;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.slider-baslik {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.slider-alt {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin-bottom: 32px;
}

.btn-whatsapp-slider {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #D4AF37;
    color: #0B1220;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 4px;
    transition: background 0.2s, transform 0.15s;
}

.btn-whatsapp-slider:hover {
    background: #c49e2a;
    transform: translateY(-2px);
}

/* Slider Form Box */
.slider-right {
    width: 340px;
    flex-shrink: 0;
}

.slider-form-box {
    background: rgba(11, 18, 32, 0.88);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 8px;
    padding: 28px 24px;
}

.slider-form-box h3 {
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

/* Slider Navigasyon */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.4);
    color: #D4AF37;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-prev:hover,
.slider-next:hover {
    background: rgba(212,175,55,0.35);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.dot.active {
    background: #D4AF37;
    transform: scale(1.3);
}

/* ============================================================
   FORM GENEL (Request Form)
   ============================================================ */
.request-form-wrap {
    width: 100%;
}

.request-form .form-group {
    margin-bottom: 12px;
}

.request-form input,
.request-form textarea {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 4px;
    color: #fff;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
    color: rgba(255,255,255,0.45);
}

.request-form input:focus,
.request-form textarea:focus {
    border-color: #D4AF37;
}

.request-form textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #D4AF37;
    color: #0B1220;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, transform 0.15s;
    margin-top: 4px;
}

.btn-submit:hover {
    background: #c49e2a;
    transform: translateY(-1px);
}

.form-success {
    background: rgba(212,175,55,0.15);
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 14px;
    text-align: center;
}

.form-error {
    background: rgba(220,50,50,0.12);
    border: 1px solid rgba(220,50,50,0.4);
    color: #ff6b6b;
    padding: 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 14px;
    text-align: center;
}

/* ============================================================
   SECTION: KOYU (citizenship methods, process vb.)
   ============================================================ */
.section-dark {
    background: #0B1220;
    color: #fff;
    padding: 80px 0;
}

.section-dark .section-title {
    color: #fff;
}

/* Yöntem Kartları (3'lü) */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.method-card {
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    background: rgba(255,255,255,0.02);
    transition: border-color 0.25s, transform 0.2s;
}

.method-card:hover {
    border-color: #D4AF37;
    transform: translateY(-4px);
}

.method-icon {
    width: 64px;
    height: 64px;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: #D4AF37;
}

.method-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.method-card p {
    color: #aab;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================================
   SECTION: PROCESS (4'lü adım)
   ============================================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.process-card {
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    background: rgba(255,255,255,0.02);
    transition: border-color 0.25s;
}

.process-card:hover {
    border-color: #D4AF37;
}

.process-icon {
    width: 56px;
    height: 56px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: #D4AF37;
}

.process-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.process-card p {
    color: #aab;
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ============================================================
   SECTION: İLAN LİSTESİ (properties)
   ============================================================ */
.section-properties {
    background: #0B1220;
    padding: 80px 0;
    color: #fff;
}

/* Filtre Formu */
.filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    align-items: flex-end;
}

.filter-form select,
.filter-form input[type="text"],
.filter-form input[type="number"] {
    padding: 10px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 4px;
    color: #fff;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    min-width: 160px;
    transition: border-color 0.2s;
}

.filter-form select option {
    background: #0B1220;
    color: #fff;
}

.filter-form select:focus,
.filter-form input:focus {
    border-color: #D4AF37;
}

.filter-form button {
    padding: 10px 24px;
    background: #D4AF37;
    color: #0B1220;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: inherit;
    transition: background 0.2s;
}

.filter-form button:hover {
    background: #c49e2a;
}

/* İlan Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.property-card {
    background: #131C2E;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    border-color: #D4AF37;
    transform: translateY(-4px);
}

.property-img {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: #0d1625;
}

.property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.property-card:hover .property-img img {
    transform: scale(1.04);
}

.property-badge-featured {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #D4AF37;
    color: #0B1220;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.property-type-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(11,18,32,0.85);
    color: #D4AF37;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 3px;
    border: 1px solid rgba(212,175,55,0.4);
}

.property-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.property-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.property-location {
    color: #D4AF37;
    font-size: 0.85rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.property-meta-item {
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 4px;
    padding: 8px 10px;
    text-align: center;
}

.property-meta-item .meta-val {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #D4AF37;
}

.property-meta-item .meta-lbl {
    display: block;
    font-size: 0.75rem;
    color: #8899aa;
    margin-top: 2px;
}

.property-desc {
    color: #aab;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 14px;
    flex: 1;
}

.property-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.property-badge {
    font-size: 0.75rem;
    color: #D4AF37;
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 3px;
    padding: 2px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.property-badge::before {
    content: '✓';
    font-size: 0.7rem;
}

.btn-detail {
    display: block;
    text-align: center;
    background: #D4AF37;
    color: #0B1220;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 11px;
    border-radius: 4px;
    transition: background 0.2s;
    margin-top: auto;
}

.btn-detail:hover {
    background: #c49e2a;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 4px;
    color: #fff;
    font-size: 0.9rem;
    transition: background 0.2s, border-color 0.2s;
}

.pagination a:hover {
    background: rgba(212,175,55,0.15);
    border-color: #D4AF37;
}

.pagination .active {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #0B1220;
    font-weight: 700;
}

/* ============================================================
   SECTION: NEDEN BİZ (açık bg)
   ============================================================ */
.section-light {
    background: #fff;
    padding: 80px 0;
    color: #1a1a1a;
}

.section-light .section-title {
    color: #1a1a1a;
}

.section-light .section-sub {
    color: #666;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.why-card {
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px;
    padding: 32px 20px;
    text-align: center;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.why-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 4px 24px rgba(212,175,55,0.1);
}

.why-icon {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.2rem;
    color: #D4AF37;
}

.why-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.why-card p {
    color: #666;
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ============================================================
   SECTION: CTA (koyu, WhatsApp)
   ============================================================ */
.section-cta {
    background: #0B1220;
    padding: 64px 0;
    text-align: center;
    color: #fff;
}

.section-cta .section-title {
    color: #fff;
    margin-bottom: 8px;
}

.section-cta p {
    color: #aab;
    margin-bottom: 28px;
}

/* ============================================================
   SECTION: FOOTER HİZMETLER (açık)
   ============================================================ */
.section-services-footer {
    background: #fff;
    padding: 64px 0;
}

.services-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-card-2 {
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 8px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card-2:hover {
    border-color: #D4AF37;
    box-shadow: 0 2px 16px rgba(212,175,55,0.08);
}

.service-card-2 .s-icon {
    font-size: 1.8rem;
    color: #D4AF37;
    margin-bottom: 12px;
}

.service-card-2 h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.service-card-2 p {
    font-size: 0.88rem;
    color: #666;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #0B1220;
    color: #fff;
    padding: 56px 0 0;
    border-top: 1px solid rgba(212,175,55,0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 14px;
}

.footer-desc {
    color: #8899aa;
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: #D4AF37;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #8899aa;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #D4AF37;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #8899aa;
    font-size: 0.88rem;
}

.footer-contact i {
    color: #D4AF37;
    margin-top: 2px;
    width: 14px;
    flex-shrink: 0;
}

.footer-contact a {
    color: #8899aa;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #D4AF37;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
    text-align: center;
    color: #8899aa;
    font-size: 0.82rem;
}

/* ============================================================
   İLAN DETAY SAYFASI
   ============================================================ */
.detail-page {
    padding-top: 68px;
    background: #0B1220;
    min-height: 100vh;
    color: #fff;
}

.detail-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.detail-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    font-size: 0.9rem;
    margin-bottom: 28px;
    transition: opacity 0.2s;
}

.detail-back:hover {
    opacity: 0.75;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 36px;
    align-items: start;
    width: 100%;
}

/* Galeri */
.detail-gallery {
    border-radius: 8px;
    overflow: hidden;
}

.gallery-main {
    height: 420px;
    background: #131C2E;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery-thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    flex-shrink: 0;
}

.gallery-thumbs img.active,
.gallery-thumbs img:hover {
    border-color: #D4AF37;
}

/* İlan Detay Bilgileri */
.detail-info {
    background: #131C2E;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 8px;
    padding: 28px;
    position: sticky;
    top: 88px;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    overflow: hidden;
}

.detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.detail-location {
    color: #D4AF37;
    font-size: 0.9rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 20px;
}

.detail-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.spec-item {
    background: rgba(212,175,55,0.07);
    border: 1px solid rgba(212,175,55,0.18);
    border-radius: 4px;
    padding: 10px 12px;
}

.spec-item .spec-lbl {
    font-size: 0.75rem;
    color: #8899aa;
    margin-bottom: 3px;
}

.spec-item .spec-val {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.detail-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.detail-desc {
    color: #bbc;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.detail-form-wrap {
    background: #131C2E;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 8px;
    padding: 28px;
    margin-top: 28px;
}

.detail-form-wrap h3 {
    color: #D4AF37;
    font-size: 1.05rem;
    margin-bottom: 18px;
}

/* ============================================================
   NO RESULT
   ============================================================ */
.no-result {
    text-align: center;
    padding: 60px 20px;
    color: #8899aa;
}

.no-result i {
    font-size: 3rem;
    color: rgba(212,175,55,0.3);
    margin-bottom: 16px;
}

.no-result p {
    font-size: 1rem;
}

/* ============================================================
   İLAN DETAY — EK STİLLER
   ============================================================ */
.detail-desc-box {
    background: #131C2E;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 8px;
    padding: 28px;
    margin-top: 24px;
    margin-bottom: 0;
}

.detail-flags {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.detail-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    font-size: 0.88rem;
    font-weight: 500;
}

.detail-flag i {
    font-size: 0.9rem;
}

.btn-whatsapp-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #D4AF37;
    color: #0B1220;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px;
    border-radius: 4px;
    transition: background 0.2s;
    width: 100%;
}

.btn-whatsapp-detail:hover {
    background: #c49e2a;
}

.main-nav a.current {
    color: #D4AF37;
    border-bottom-color: #D4AF37;
}

/* ============================================================
   GALERİ SLİDER + LİGHTBOX
   ============================================================ */

/* Galeri Slider */
.gallery-slider {
    position: relative;
    width: 100%;
    height: 420px;
    background: #0d1625;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ok butonları */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(11,18,32,0.7);
    border: 1px solid rgba(212,175,55,0.4);
    color: #D4AF37;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.gallery-arrow:hover {
    background: rgba(212,175,55,0.25);
}

.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

/* Sayaç */
.gallery-counter {
    position: absolute;
    bottom: 12px;
    right: 14px;
    background: rgba(11,18,32,0.75);
    color: #fff;
    font-size: 0.78rem;
    padding: 3px 10px;
    border-radius: 12px;
    z-index: 3;
}

/* Zoom butonu */
.gallery-zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    background: rgba(11,18,32,0.7);
    border: 1px solid rgba(212,175,55,0.35);
    color: #D4AF37;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.gallery-zoom:hover {
    background: rgba(212,175,55,0.2);
}

/* Thumbnail şeridi */
.gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: #D4AF37 rgba(255,255,255,0.05);
}

.gallery-thumbs::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbs::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 2px;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.65;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: #D4AF37;
    opacity: 1;
}

/* ---- Lightbox ---- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 20, 0.94);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 60px 80px;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    transition: opacity 0.15s;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}

.lightbox-close:hover {
    background: rgba(220,38,38,0.5);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}

.lightbox-arrow:hover {
    background: rgba(212,175,55,0.3);
    border-color: #D4AF37;
    color: #D4AF37;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    z-index: 2;
}

/* Mobil lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        padding: 60px 12px 50px;
    }

    .lightbox-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .lightbox-prev { left: 6px; }
    .lightbox-next { right: 6px; }

    .gallery-slider {
        height: 260px;
    }

    .gallery-thumb {
        width: 64px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .gallery-slider {
        height: 220px;
    }
}

/* ============================================================
   KART SLİDER + KART LIGHTBOX
   ============================================================ */
.property-img {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: #0d1625;
}

.card-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
    width: 100%;
    height: 100%;
}

.card-slide.active {
    opacity: 1;
}

.card-slide img,
.card-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ok butonları */
.card-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(11,18,32,0.65);
    border: 1px solid rgba(212,175,55,0.35);
    color: #D4AF37;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, opacity 0.2s;
    opacity: 0;
}

.property-card:hover .card-arrow {
    opacity: 1;
}

.card-prev { left: 8px; }
.card-next { right: 8px; }

.card-arrow:hover {
    background: rgba(212,175,55,0.3);
}

/* Foto sayacı */
.card-foto-counter {
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(11,18,32,0.72);
    color: #fff;
    font-size: 0.72rem;
    padding: 2px 8px;
    border-radius: 10px;
    z-index: 4;
    pointer-events: none;
}

/* Zoom butonu */
.card-zoom {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 4;
    background: rgba(11,18,32,0.65);
    border: 1px solid rgba(212,175,55,0.35);
    color: #D4AF37;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, opacity 0.2s;
    opacity: 0;
}

.property-card:hover .card-zoom {
    opacity: 1;
}

.card-zoom:hover {
    background: rgba(212,175,55,0.25);
}

/* Mobilde her zaman görünsün */
@media (max-width: 768px) {
    .card-arrow,
    .card-zoom {
        opacity: 1;
    }
}