/* Değişkenler ve Temel Sıfırlama */
:root {
    --gold: #c5a880;
    --dark-bg: #000000;
    --top-bg: #0b0b0b;
    --text-light: #ffffff;
    --text-grey: #a0a0a0;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden; /* Taşmayı engeller */
    line-height: 1.6;
}

/* TOP BAR */
.top-bar {
    background-color: var(--top-bg);
    border-bottom: 1px solid #1a1a1a;
    padding: 10px 0;
}

.top-bar-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start; /* Dil kalktığı için sola hizaladık */
    align-items: center;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    color: var(--text-grey);
}

.info-group {
    display: flex;
    gap: clamp(15px, 3vw, 30px);
}

.info-group i {
    color: var(--gold);
}

/* NAVBAR GENEL */
.main-header {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO ALANI */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-main {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 800;
    letter-spacing: 2px;
}

.logo-main span {
    font-weight: 300;
}

.logo-divider {
    width: 1px;
    height: 30px;
    background-color: #333;
}

.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: var(--text-grey);
    line-height: 1.2;
}

/* MENÜ LİNKLERİ */
.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(15px, 2vw, 30px);
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--gold);
}

/* BUTONLAR */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-outline {
    border: 1px solid #333;
    color: var(--text-light);
    background: #111;
}

.btn-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-gold:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
}

/* MOBİL MENÜ BUTONU */
.menu-btn {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .nav-menu, .btn-outline {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .nav-menu.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-bg);
        padding: 40px;
        text-align: center;
        border-bottom: 1px solid #222;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .hide-mobile {
        display: none;
    }
}

/* HERO V2 - ÖZGÜNLEŞTİRİLMİŞ TASARIM */
.hero-v2 {
    position: relative;
    height: 90vh; /* Daha dinamik bir yükseklik */
    background: url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-v2-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-v2-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-v2-box {
    max-width: 650px;
}

.top-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.main-title {
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--gold); /* İçi boş, dışı çizgili şık yazı */
    display: block;
}

.sub-lead {
    color: #d1d1d1;
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 35px;
    font-weight: 300;
}

/* Butonlarda Değişim */
.action-row {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
}

.btn-primary-v2 {
    background: var(--gold);
    color: #000;
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px; /* Keskin köşeler daha modern durur */
    transition: 0.3s;
}

.btn-secondary-v2 {
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-primary-v2:hover { background: #b08d65; }
.btn-secondary-v2:hover { border-color: var(--gold); color: var(--gold); }

/* Sayılı Özellikler */
.quick-features {
    display: flex;
    gap: 50px;
}

.q-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.q-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(197, 168, 128, 0.2); /* Silik büyük rakamlar */
}

.q-content strong {
    display: block;
    font-size: 0.95rem;
    color: var(--gold);
}

.q-content p {
    font-size: 0.85rem;
    color: #888;
}

@media (max-width: 768px) {
    .action-row { flex-direction: column; }
    .quick-features { display: none; } /* Mobilde sadeleştirdik */
    .main-title { text-align: left; }
}

/* HİZMETLER SECTION - SİYAH ZEMİN */
.services {
    background-color: #000; /* Zemin simsiyah */
    padding: clamp(60px, 10vw, 100px) 0;
    overflow: hidden;
}

.services-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.sub-title {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 600;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-top: 10px;
    font-weight: 800;
}

.section-title span {
    color: var(--gold);
    font-weight: 300;
}

/* Grid Yapısı */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Kart Tasarımı */
.service-card {
    background: #0a0a0a; /* Siyah zemin üzerinde hafif belirgin koyu gri */
    border: 1px solid #1a1a1a;
    transition: var(--transition);
    position: relative;
    border-radius: 8px;
    overflow: hidden; /* Görselin taşmasını engeller */
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.card-img {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.service-card:hover .card-img img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.service-card:hover .card-overlay {
    opacity: 1;
}

.view-btn {
    padding: 12px 25px;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
}

.card-info {
    padding: 25px;
}

.card-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #fff;
}

.card-info p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.price {
    display: block;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Footer Link */
.services-footer {
    text-align: center;
    margin-top: 50px;
}

.all-services {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

.all-services i {
    margin-left: 10px;
    color: var(--gold);
}

.all-services:hover {
    color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .card-img { height: 280px; }
}

/* ABOUT SECTION - CLAMP VE OVERFLOW ODAKLI */
.about-section {
    background-color: #000;
    padding: clamp(50px, 8vw, 120px) 0;
    overflow: hidden; /* Taşma ihtimalini kökten kestik */
}

.about-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 80px);
    align-items: center;
}

/* Sol Taraf - Görsel ve Badge */
.about-image-side {
    position: relative;
    display: flex;
    justify-content: center;
}

.main-about-img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    filter: grayscale(0.3) contrast(1.1);
    border: 1px solid #222;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--gold);
    color: #000;
    padding: clamp(15px, 2vw, 25px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 5;
}

.exp-num {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
}

.exp-text {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Sağ Taraf - Yazılar */
.about-tag {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 4px;
    font-weight: 700;
}

.about-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.1;
    margin: 15px 0 25px;
}

.about-title span {
    color: var(--gold);
    font-weight: 300;
    font-style: italic;
}

.about-p {
    color: #bbb;
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    margin-bottom: 30px;
}

.stats-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
}

.stat-box strong {
    display: block;
    font-size: 1.8rem;
    color: var(--gold);
}

.stat-box span {
    font-size: 0.85rem;
    color: #777;
}

.btn-read-more {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 5px;
    transition: 0.3s;
}

.btn-read-more:hover {
    letter-spacing: 1px;
    color: var(--gold);
}

/* MOBİL AYARLAR */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image-side {
        margin-bottom: 50px;
    }

    .stats-grid {
        justify-content: center;
    }

    .experience-badge {
        right: 50%;
        transform: translateX(50%);
    }
}

/* PHILOSOPHY SECTION - FULL SİYAH VE METİN ODAKLI */
.philosophy {
    background-color: #000;
    padding: clamp(60px, 10vw, 120px) 0;
    overflow: hidden; /* Taşma kesinlikle yasak */
}

.philo-container {
    width: 85%;
    max-width: 1100px;
    margin: 0 auto;
}

.philo-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 80px);
}

.philo-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.philo-header h2 span {
    color: var(--gold);
    font-weight: 300;
}

.philo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
}

.philo-text-block h3 {
    color: var(--gold);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 20px;
    font-weight: 600;
}

.philo-text-block p {
    color: #999;
    line-height: 1.8;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    text-align: justify;
}

.full-width {
    grid-column: 1 / -1;
    text-align: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 50px;
    margin-top: 20px;
}

/* --- ANIMASYON HAZIRLIKLARI --- */
/* Başlangıçta görünmez ve biraz kaymış durumda olacaklar */
.reveal-title, .reveal-left, .reveal-right, .reveal-bottom {
    opacity: 0;
    transition: all 1s ease-out;
}

.reveal-title { transform: translateY(-30px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-bottom { transform: translateY(50px); }

/* Aktif sınıfları (JS ile eklenecek) */
.active-reveal {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* RESPONSIVE */
@media (max-width: 850px) {
    .philo-content { grid-template-columns: 1fr; }
    .philo-text-block p { text-align: left; }
}

/* FOOTER - SİYAH VE GOLD ZARAFETİ */
.main-footer {
    background-color: #050505;
    border-top: 1px solid #111;
    padding-top: clamp(40px, 8vw, 80px);
    overflow: hidden; /* Taşma yok */
}

.footer-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(30px, 4vw, 50px);
    padding-bottom: 50px;
}

.footer-title {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-desc {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 20px;
    margin-bottom: 25px;
}

/* Sosyal Medya */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid #222;
}

.social-icons a:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-5px);
}

/* Link Listeleri */
.footer-links, .contact-list, .hours-list {
    list-style: none;
}

.footer-links li, .contact-list li, .hours-list li {
    margin-bottom: 15px;
    color: #888;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.contact-list i {
    color: var(--gold);
    margin-top: 4px;
}

.hours-list span {
    color: #fff;
    font-weight: 600;
}

/* Footer Alt Şerit */
.footer-bottom {
    background: #000;
    padding: 25px 0;
    border-top: 1px solid #111;
}

.bottom-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.bottom-container p {
    color: #555;
    font-size: 0.8rem;
}

.bottom-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.8rem;
    margin-left: 20px;
    transition: 0.3s;
}

.bottom-links a:hover {
    color: var(--gold);
}

/* MOBİL AYARLAR */
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .bottom-container {
        justify-content: center;
        text-align: center;
    }
    .contact-list li {
        justify-content: center;
    }
}

.page-banner {
    padding: clamp(40px, 6vw, 80px) 0;
    background: #050505;
    text-align: center;
    border-bottom: 1px solid #111;
}
.page-banner h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--gold);
    text-transform: uppercase;
}
.page-banner p, .page-banner a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* HİZMETLER V3 SAYFASI - FULL BLACK */
.services-page {
    background-color: #000;
    padding: clamp(60px, 10vw, 100px) 0;
    overflow: hidden; /* Taşma kesinlikle yasak */
}

.services-v3-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.services-v3-header {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 70px);
}

.v3-tag {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

.v3-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin: 15px 0;
}

.v3-title span {
    color: var(--gold);
    font-weight: 300;
}

.v3-desc {
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

/* Grid Sistemi */
.services-v3-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 30%, 400px), 1fr));
    gap: 30px;
}

/* Kart Tasarımı */
.service-v3-card {
    background: #080808;
    border: 1px solid #151515;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden; /* Resimlerin taşmasını önler */
    border-radius: 4px; /* Hafif modern köşe */
}

.service-v3-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.v3-card-img {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.v3-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-v3-card:hover .v3-card-img img {
    transform: scale(1.1);
}

/* Kart Body ve Butonlar */
.v3-card-body {
    padding: 30px;
    text-align: center;
}

.v3-card-body h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.v3-card-body p {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    height: 50px; /* Metinlerin hizalı durması için sabit yükseklik */
}

.btn-service-v3 {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-service-v3:hover {
    background: var(--gold);
    color: #000;
}

/* Mobil Ayarlar */
@media (max-width: 480px) {
    .v3-card-img { height: 250px; }
    .services-v3-grid { grid-template-columns: 1fr; }
}

/* ABOUT PAGE - MODERN & MINIMALIST */
.bg-black { background-color: #000; color: #fff; }

.about-hero {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?q=80&w=1000');
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
}

.about-hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    text-transform: uppercase;
    font-weight: 800;
}

.about-hero-title span {
    color: var(--gold);
    font-weight: 300;
}

/* Story Grid Layout */
.story-section {
    padding: clamp(60px, 10vw, 120px) 0;
    overflow: hidden;
}

.story-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.story-image {
    position: relative;
    padding: 20px;
}

.story-image img {
    width: 100%;
    border-radius: 5px;
    z-index: 2;
    position: relative;
    filter: sepia(0.2) contrast(1.1);
}

.image-border-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 2px solid var(--gold);
    z-index: 1;
}

/* Content Area */
.story-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 25px;
}

.story-content h2 span { color: var(--gold); font-weight: 300; }

.p-lead {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
}

.story-content p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    text-align: justify;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
}

.value-item i { color: var(--gold); }

/* Deep Dive Section */
.expertise-deep-dive {
    background: #050505;
    padding: clamp(60px, 8vw, 100px) 0;
    border-top: 1px solid #111;
}

.deep-container { width: 80%; max-width: 900px; margin: 0 auto; }

.deep-box h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--gold);
    margin-bottom: 30px;
    text-align: center;
}

.deep-box p {
    color: #888;
    line-height: 2;
    margin-bottom: 25px;
    text-align: center;
}

/* MOBİL AYARLAR */
@media (max-width: 992px) {
    .story-grid { grid-template-columns: 1fr; text-align: center; }
    .story-content p { text-align: center; }
    .image-border-decoration { display: none; }
}

/* --- GALERİ GRİD AYARLARI --- */
.sube-images-lk {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 25vw, 400px), 1fr));
    gap: 20px;
    overflow: hidden; /* Kutudan taşmayı engeller */
}

.zoom-img-lk {
    width: 100%;
    height: clamp(200px, 30vh, 350px);
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 4px;
}

.zoom-img-lk:hover {
    transform: scale(1.05);
}

/* --- LIGHTBOX (HEDEFLEME SİSTEMİ) --- */
.lightbox {
    display: none; /* Varsayılan olarak gizli */
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

/* Tıklandığında ID eşleşirse görünür yap */
.lightbox:target {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border: 2px solid rgba(0, 0, 0, 0.95);
    box-shadow: 0 0 30px rgba(255,255,255,0.1);
    object-fit: contain;
}

/* Kapatma Butonu */
.close {
    position: absolute;
    top: clamp(20px, 5vw, 40px);
    right: clamp(20px, 5vw, 40px);
    color: rgba(0, 0, 0, 0.95);
    font-size: 50px;
    text-decoration: none;
    line-height: 1;
}

/* Genel Bölüm Ayarları */
.content-section {
    padding: 60px 0;
    background-color: #000; /* Siyah Arka Plan */
    display: flex;
    justify-content: center; /* Yatayda ortalar */
    align-items: center; /* Düşeyde ortalar */
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-text {
    text-align: center;
    margin-bottom: 40px;
}

.content-text h2 {
    color: #c5a059; /* Altın Rengi */
    font-size: clamp(24px, 5vw, 40px);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.content-text p {
    color: #888;
    font-size: clamp(14px, 1.5vw, 16px);
}

/* Galeri Grid Yapısı */
.sube-images-lk {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Responsive dizilim */
    gap: 20px;
}

.gallery-link {
    display: block;
    aspect-ratio: 1 / 1; /* Resimleri kare yapar */
    overflow: hidden;
    border: 1px solid #c5a059; /* Gold Çerçeve */
}

.zoom-img-lk {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zoom-img-lk:hover {
    transform: scale(1.1);
}

/* Lightbox (Tam Ekran) */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox:target {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    border: 2px solid #c5a059;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #c5a059;
    font-size: 50px;
    text-decoration: none;
    z-index: 10000;
}

.contact-section {
    padding: 100px 0;
    background-color: #0a0a0a;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.contact-card {
    background: #111;
    border: 1px solid #1f1f1f;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    position: relative;
    transition: 0.4s;
}

.contact-card:hover {
    border-color: #c5a059;
}

.top-label {
    color: #c5a059;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.contact-card h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
}

.info-item {
    margin-bottom: 25px;
    border-left: 2px solid #c5a059;
    padding-left: 15px;
}

.info-item .label { color: #c5a059; font-size: 13px; margin: 0; }
.info-item .text { color: #ccc; margin: 5px 0 0; }

/* Modern Form Alanları */
.input-group { margin-bottom: 20px; }

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 12px 5px;
    color: #7a7a7a;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus, 
.input-group select:focus {
    border-bottom-color: #c5a059;
}

.btn-whatsapp {
    width: 100%;
    background: #c5a059;
    color: #000;
    border: none;
    padding: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #fff;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .contact-card { padding: 30px; }
}