/*
 * style.css — Serin Danışmanlık ve Hukuk Bürosu
 * Renk Paleti: Antik Altın / Derin Siyah / Krem
 * Yaklaşım: Mobile-First, Profesyonel, Emoji-Free
 */

/* ============================================================
   0. DESIGN TOKENS
   ============================================================ */
:root {
    /* Renkler — Logoya göre */
    --black:        #0A0A0A;
    --black-soft:   #141414;
    --black-mid:    #1E1E1E;
    --black-muted:  #2C2C2C;
    --black-border: #2E2E2E;

    --gold:         #B59449;
    --gold-light:   #D4C4A1;
    --gold-dark:    #8E7235;
    --gold-glow:    rgba(181, 148, 73, 0.18);

    --cream:        #F5F5F0;
    --cream-dark:   #EAE8E0;
    --cream-mid:    #D8D4C8;

    --text-on-dark: #F5F5F0;
    --text-muted:   #9A9488;
    --text-body:    #3A3830;

    /* Tipografi */
    --font-display: 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
    --font-body:    'Jost', 'Segoe UI', system-ui, sans-serif;

    /* Boyutlar */
    --radius:       3px;
    --radius-lg:    8px;
    --header-h:     72px;
    --container:    1140px;
    --section-py:   88px;

    /* Gölgeler */
    --shadow-sm:    0 1px 6px rgba(0,0,0,0.12);
    --shadow-md:    0 4px 20px rgba(0,0,0,0.18);
    --shadow-gold:  0 4px 24px rgba(181,148,73,0.22);

    --transition:   0.26s ease;
}

/* ============================================================
   1. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--cream);
    line-height: 1.75;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition);
}

ul { list-style: none; }
address { font-style: normal; }

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   2. UTILITIES
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Bölüm başlıkları */
.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    border-top: 1px solid var(--gold);
    padding-top: 9px;
    margin-bottom: 18px;
}

.section-tag--light { color: var(--gold-light); border-color: var(--gold-light); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.15;
    letter-spacing: 0.01em;
}

.section-title--light { color: var(--cream); }

.section-subtitle {
    margin-top: 16px;
    font-size: 0.97rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.section-subtitle--light { color: var(--gold-light); opacity: 0.85; }

/* Dekoratif çizgi */
.section-rule {
    display: block;
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto 0;
    opacity: 0.7;
}

/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 30px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--cream);
    opacity: 1;
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border-color: rgba(245,245,240,0.35);
}

.btn-outline:hover {
    background: rgba(245,245,240,0.08);
    border-color: var(--cream);
    opacity: 1;
}

.btn-outline--dark {
    color: var(--black);
    border-color: rgba(10,10,10,0.3);
}

.btn-outline--dark:hover {
    background: var(--black);
    color: var(--cream);
    border-color: var(--black);
    opacity: 1;
}

.btn-whatsapp {
    background: #25A244;
    color: var(--cream);
    border-color: #25A244;
}

.btn-whatsapp:hover {
    background: #1e8a38;
    border-color: #1e8a38;
    opacity: 1;
    transform: translateY(-1px);
}

/* ============================================================
   4. HEADER & NAVIGATION
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid var(--black-border);
    z-index: 1000;
    transition: box-shadow var(--transition), border-color var(--transition);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.site-header.scrolled {
    box-shadow: 0 2px 24px rgba(0,0,0,0.5);
    border-bottom-color: rgba(181,148,73,0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}

/* ── LOGO ALANI ── */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}

/*
 * LOGO RESMİ — Header
 * src="assets/images/logo.png" olarak güncelleyin
 * Önerilen: şeffaf arka plan (PNG), max 200px genişlik, 52px yükseklik
 */
.logo-img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

/* Logo fotoğrafı eklenene kadar görünen metin */
.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.1;
    letter-spacing: 0.04em;
}

.logo-sub {
    font-size: 0.6rem;
    color: var(--gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Desktop Nav */
.nav-list { display: none; align-items: center; gap: 38px; }

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--cream-dark);
    position: relative;
    padding-bottom: 4px;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active { color: var(--gold); opacity: 1; }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px; height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    flex-shrink: 0;
}

.hamburger-line {
    display: block;
    width: 100%; height: 1.5px;
    background: var(--cream);
    border-radius: 1px;
    transition: all var(--transition);
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) { transform: translateY(8.25px) rotate(45deg); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active .hamburger-line:nth-child(3) { transform: translateY(-8.25px) rotate(-45deg); }

/* Mobile Nav Panel */
@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 80vw;
        max-width: 300px;
        height: 100vh;
        background: var(--black-soft);
        z-index: 1050;
        padding: calc(var(--header-h) + 32px) 32px 48px;
        transition: right var(--transition);
        border-left: 1px solid var(--black-border);
        box-shadow: -8px 0 40px rgba(0,0,0,0.5);
    }
    .main-nav.open { right: 0; }
    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .nav-list li { width: 100%; border-bottom: 1px solid var(--black-border); }
    .nav-link { display: block; padding: 18px 0; font-size: 0.85rem; }
}

@media (min-width: 768px) {
    .nav-list { display: flex; }
    .hamburger { display: none; }
    .main-nav { position: static; height: auto; width: auto; padding: 0; background: transparent; box-shadow: none; border: none; }
}

/* Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 900;
    backdrop-filter: blur(2px);
}
.nav-overlay.active { display: block; }

/* ============================================================
   5. HERO SECTION
   ============================================================ */
.section-hero {
    min-height: 100vh;
    padding-top: var(--header-h);
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* İnce altın ızgara dokusu */
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(181,148,73,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(181,148,73,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Radyal ışık */
.hero-bg-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(181,148,73,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    padding-top: 64px;
    padding-bottom: 96px;
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(181,148,73,0.35);
    color: var(--gold-light);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 2px;
    margin-bottom: 36px;
}

.hero-badge::before,
.hero-badge::after {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.hero-title {
    font-family: var(--font-display);
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 22px;
}

.hero-title-name {
    display: block;
    font-size: clamp(2.4rem, 7vw, 4.4rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.hero-title-divider {
    display: block;
    width: 56px;
    height: 1px;
    background: rgba(181,148,73,0.5);
    margin: 18px auto;
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.1rem, 3vw, 1.7rem);
    font-weight: 400;
    color: var(--cream-dark);
    letter-spacing: 0.08em;
    opacity: 0.85;
}

.hero-office {
    font-size: clamp(0.82rem, 2vw, 0.95rem);
    color: var(--gold-light);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.7;
}

.hero-baro {
    font-size: 0.78rem;
    color: rgba(212,196,161,0.6);
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.hero-desc {
    max-width: 580px;
    margin: 0 auto 42px;
    color: rgba(245,245,240,0.6);
    font-size: 1rem;
    line-height: 1.85;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll göstergesi */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll span {
    display: block;
    width: 22px;
    height: 36px;
    border: 1px solid rgba(181,148,73,0.35);
    border-radius: 11px;
    position: relative;
}

.hero-scroll span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 7px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    80% { transform: translateX(-50%) translateY(12px); opacity: 0.15; }
}

/* ============================================================
   6. ABOUT SECTION
   ============================================================ */
.section-about {
    padding: var(--section-py) 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    gap: 56px;
}

.about-lead {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--black);
    line-height: 1.65;
    margin-bottom: 22px;
    padding-left: 20px;
    border-left: 2px solid var(--gold);
}

.about-text p {
    margin-bottom: 16px;
    color: var(--text-body);
    font-size: 0.97rem;
}

.about-edu {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--cream-mid);
}

.about-sub-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 14px;
    letter-spacing: 0.03em;
}

.edu-list { display: flex; flex-direction: column; gap: 12px; }

.edu-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.edu-marker {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 8px;
}

.edu-list strong {
    display: block;
    color: var(--black);
    font-weight: 600;
    font-size: 0.92rem;
}

.edu-list span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Cards */
.about-cards { display: grid; gap: 20px; }

.about-card {
    background: var(--cream);
    border: 1px solid var(--cream-mid);
    border-top: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: box-shadow var(--transition), transform var(--transition);
}

.about-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.about-card-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.about-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; }

@media (min-width: 768px) { .about-cards { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   7. PRACTICE AREAS
   ============================================================ */
.section-practice {
    padding: var(--section-py) 0;
    background: var(--black);
}

.practice-grid {
    display: grid;
    gap: 1px;
    background: var(--black-border);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

@media (min-width: 600px)  { .practice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .practice-grid { grid-template-columns: repeat(4, 1fr); } }

.practice-card {
    background: var(--black-soft);
    padding: 32px 26px;
    transition: background var(--transition);
    position: relative;
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.practice-card:hover { background: var(--black-mid); }
.practice-card:hover::before { transform: scaleX(1); }

.practice-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(181,148,73,0.15);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.practice-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 10px;
    line-height: 1.3;
}

.practice-desc {
    font-size: 0.85rem;
    color: rgba(245,245,240,0.5);
    line-height: 1.75;
}

.practice-note {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(245,245,240,0.25);
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--black-border);
    letter-spacing: 0.04em;
}

/* ============================================================
   8. GALLERY SECTION
   ============================================================ */
.section-gallery {
    padding: var(--section-py) 0;
    background: var(--black-soft);
}

.section-gallery .section-title { color: var(--cream); }

/* Masonry-style grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 540px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item--large { grid-column: span 2; }
}

@media (min-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
    .gallery-item--large { grid-column: span 1; grid-row: span 2; }
}

.gallery-item { border-radius: var(--radius-lg); overflow: hidden; }

.gallery-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--black-mid);
    cursor: pointer;
}

.gallery-item--large .gallery-img-wrap {
    height: 220px;
}

@media (min-width: 900px) {
    .gallery-item--large .gallery-img-wrap { height: 100%; min-height: 450px; }
    .gallery-img-wrap { height: 100%; }
}

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

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

/* Placeholder — logo yokken */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--black-mid);
    border: 1px dashed var(--black-border);
    gap: 10px;
    padding: 16px;
}

.gallery-placeholder-icon {
    display: block;
    width: 36px;
    height: 36px;
    border: 1px solid var(--black-border);
    border-radius: 50%;
    position: relative;
    opacity: 0.4;
}

.gallery-placeholder-icon::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.5;
}

.gallery-placeholder p {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
}

.gallery-placeholder small {
    font-size: 0.68rem;
    color: var(--black-border);
    font-family: monospace;
    background: rgba(255,255,255,0.04);
    padding: 2px 6px;
    border-radius: 2px;
}

/* Hover overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-img-wrap:hover .gallery-overlay { opacity: 1; }

.gallery-zoom-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(181,148,73,0.6);
    border-radius: 50%;
    position: relative;
    transform: scale(0.85);
    transition: transform var(--transition);
}

.gallery-zoom-icon::before {
    content: '';
    position: absolute;
    inset: 9px;
    border: 1px solid var(--gold);
    border-radius: 50%;
}

.gallery-zoom-icon::after {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 7px;
    height: 1px;
    background: var(--gold);
    transform: rotate(45deg);
    transform-origin: right center;
}

.gallery-img-wrap:hover .gallery-zoom-icon { transform: scale(1); }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px 60px;
}

.lightbox.active { display: flex; }

.lightbox-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1999;
}

.lightbox-backdrop.active { display: block; }

.lightbox-content {
    position: relative;
    max-width: 88vw;
    max-height: 88vh;
    z-index: 2001;
}

.lightbox-content img {
    max-width: 88vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 24px 64px rgba(0,0,0,0.7);
    display: block;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(10,10,10,0.6);
    border: 1px solid var(--black-border);
    color: var(--cream);
    cursor: pointer;
    border-radius: 2px;
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    z-index: 2002;
    transition: background var(--transition), border-color var(--transition);
    font-family: var(--font-body);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.lightbox-close { top: 16px; right: 16px; font-size: 0.85rem; letter-spacing: 0.05em; }
.lightbox-prev  { left: 14px;  top: 50%; transform: translateY(-50%); font-size: 1.2rem; }
.lightbox-next  { right: 14px; top: 50%; transform: translateY(-50%); font-size: 1.2rem; }

@media (max-width: 480px) {
    .lightbox { padding: 20px; }
    .lightbox-prev { left: 6px; }
    .lightbox-next { right: 6px; }
}

/* ============================================================
   9. CONTACT SECTION
   ============================================================ */
.section-contact {
    padding: var(--section-py) 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    gap: 48px;
}

@media (min-width: 960px) {
    .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-detail {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-icon-wrap {
    width: 38px;
    height: 38px;
    border: 1px solid var(--cream-mid);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-detail h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.contact-detail p,
.contact-detail address {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.65;
}

.contact-detail a { color: var(--text-body); }
.contact-detail a:hover { color: var(--gold-dark); opacity: 1; }

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 8px;
}

.contact-btn {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 140px;
}

/* Map */
.map-wrapper {
    height: 340px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--cream-mid);
    box-shadow: var(--shadow-sm);
}

.map-wrapper iframe { width: 100%; height: 100%; }

.map-note {
    margin-top: 10px;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

.map-note a { color: var(--gold-dark); }
.map-note a:hover { opacity: 0.75; }

@media (min-width: 768px) { .map-wrapper { height: 420px; } }

/* ============================================================
   10. FOOTER
   ============================================================ */
.site-footer {
    background: var(--black);
    color: rgba(245,245,240,0.65);
    padding-top: 64px;
    border-top: 1px solid var(--black-border);
}

.footer-inner { padding-bottom: 0; }

.footer-grid {
    display: grid;
    gap: 44px;
    padding-bottom: 52px;
    border-bottom: 1px solid var(--black-border);
}

@media (min-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/*
 * FOOTER LOGO ALANI
 * src="assets/images/logo-light.png" olarak güncelleyin
 * Beyaz/açık renk PNG önerilir — max 180px genişlik
 */
.footer-logo-img {
    height: 46px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    margin-bottom: 16px;
}

/* Logo gelene kadar gösterilen metin grubu */
.footer-logo-text {
    margin-bottom: 16px;
}

.footer-logo-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.04em;
    display: block;
    line-height: 1.2;
}

.footer-logo-sub {
    font-size: 0.62rem;
    color: var(--gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 18px;
    color: rgba(245,245,240,0.5);
}

.footer-baro {
    display: inline-block;
    font-size: 0.75rem;
    color: rgba(181,148,73,0.7);
    padding: 7px 14px;
    border: 1px solid rgba(181,148,73,0.2);
    border-radius: var(--radius);
    letter-spacing: 0.06em;
}

.footer-heading {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.footer-links li { margin-bottom: 9px; }

.footer-links a {
    font-size: 0.875rem;
    color: rgba(245,245,240,0.5);
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold-light); opacity: 1; }

.footer-address p {
    font-size: 0.875rem;
    margin-bottom: 7px;
    color: rgba(245,245,240,0.5);
}

.footer-address a { color: rgba(245,245,240,0.5); }
.footer-address a:hover { color: var(--gold-light); opacity: 1; }

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-legal {
    font-size: 0.74rem;
    color: rgba(245,245,240,0.25);
    line-height: 1.65;
}

.footer-copy {
    font-size: 0.74rem;
    color: rgba(245,245,240,0.25);
}

.footer-sep { margin: 0 8px; opacity: 0.4; }

/* ============================================================
   11. FLOATING ACTION BUTTONS
   ============================================================ */
.fab-container {
    position: fixed;
    bottom: 28px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 800;
}

.fab {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 18px 11px 14px;
    border-radius: 2px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream);
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    transition: transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.4);
    opacity: 1;
}

.fab-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.fab-call { background: var(--gold); color: var(--black); }
.fab-call:hover { background: var(--gold-dark); color: var(--cream); }

.fab-whatsapp { background: #25A244; }
.fab-whatsapp:hover { background: #1e8a38; }

@media (max-width: 380px) {
    .fab { padding: 13px; border-radius: 50%; }
    .fab-label { display: none; }
}

/* ============================================================
   12. FOCUS / ACCESSIBILITY
   ============================================================ */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ============================================================
   13. RESPONSIVE — Genel
   ============================================================ */
@media (max-width: 480px) {
    :root { --section-py: 60px; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta .btn { width: 100%; max-width: 300px; justify-content: center; }
    .contact-buttons { flex-direction: column; }
    .contact-btn { width: 100%; }
}

@media (min-width: 768px) { :root { --section-py: 100px; } }

/* ============================================================
   14. PRINT
   ============================================================ */
@media print {
    .site-header, .fab-container, .hero-scroll, .lightbox { display: none; }
    body { font-size: 12pt; color: #000; background: #fff; }
    a { color: #000; text-decoration: underline; }
}
/* WhatsApp ve İletişim Butonları Hizalama Düzeltmesi */
.contact-btn, .btn-primary, .fab {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    vertical-align: middle;
}

.contact-btn svg, .fab svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin: 0; /* Varsa dış boşlukları sıfırla */
}

/* SOLDAKİ VİDEONUN TAVANINI YOK ET, ALT KISMA ODAKLA */
.gallery-item--large .gallery-media {
    object-fit: cover !important;
    object-position: center bottom !important; /* Videoyu en alt sınırına kadar çeker */
    width: 100% !important;
    height: 100% !important;
}
/* MOBİL İÇİN ÖZEL AYAR: Kamerayı biraz yukarı çek */
@media (max-width: 767px) {
    .gallery-item--large .gallery-media {
        object-position: center 40% !important; /* 80%'den 40%'a çektik, böylece kamera yukarı kaydı */
    }
}