a,
a:visited,
a:hover,
a:active {
    text-decoration: none !important;
    color: inherit;
    transition: all 0.3s ease;
}

.category-nav>a,
.category-nav>a:visited {
    color: var(--text-dark) !important;
}

/* --- 1. TEMEL AYARLAR VE RENKLER --- */
:root {
    --text-dark: #111;
    --text-gray: #555;
    --bg-white: #ffffff;
    --bg-cream: #faf9f6;
    --gold-accent: #D4AF37;
    /* YENİ EKLENEN RENKLER (Tam sayfa kahverengi alanlar için) */
    --dark-brown: #2A1F1A;
    --darker-brown: #1C130F;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    position: relative;
    overflow-x: clip;
}

/* --- DEV FİLİGRAN (WATERMARK) --- */
body::before {
    content: 'TÜM REKLAM';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 16vw;
    font-weight: 700;
    color: #000;
    opacity: 0.02;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* --- 2. ÜST MENÜ (HEADER) --- */
.site-header {
    background-color: var(--bg-white);
    padding-top: 2rem;
    text-align: center;
}

.top-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 5%;
    margin-bottom: 2rem;
}

/* --- ÜST MENÜ SOL TARAF: HIZLI İLETİŞİM --- */
.header-quick-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}

.header-quick-contact a {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 10px 20px;
    background-color: #fff;
}

.header-quick-contact a:hover {
    color: var(--gold-accent);
    border-color: var(--gold-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
}

.header-quick-contact .icon {
    font-size: 1.2rem;
}

/* Orta Taraf: Başlık ve Slogan */
.logo-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-center h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #000;
    border: 1px solid #ccc;
    border-radius: 40px;
    padding: 10px 40px;
    transition: all 0.4s ease;
    background-color: #fff;
}

.logo-center h1:hover {
    transform: scale(1.15);
    color: var(--gold-accent);
    border-color: var(--gold-accent);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
}

.slogan {
    font-size: 0.9rem;
    color: var(--text-gray);
    letter-spacing: 1.5px;
    margin-top: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

/* Sağ Taraf: Sosyal Medya İkonları */
.header-social {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
    align-items: center;
}

.header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: #fff;
}

.header-social img {
    width: 28px;
    height: 28px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.header-social a:hover {
    border-color: var(--gold-accent);
    transform: scale(1.1);
}

.header-social a:hover img {
    opacity: 1;
}

/* --- HAREKETLİ ALTIN SARISI ÇİZGİLER (ANİMASYONLAR) --- */
@keyframes goldShine {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

@keyframes goldShineReverse {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.header-divider {
    border: none;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, #e0e0e0 0%, #e0e0e0 40%, var(--gold-accent) 50%, #e0e0e0 60%, #e0e0e0 100%);
    background-size: 200% auto;
    animation: goldShine 3s linear infinite;
}

/* --- 3. KATEGORİ MENÜSÜ (STICKY / YAPIŞKAN) --- */
.category-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #e0e0e0 0%, #e0e0e0 40%, var(--gold-accent) 50%, #e0e0e0 60%, #e0e0e0 100%);
    background-size: 200% auto;
    animation: goldShineReverse 3s linear infinite;
}

.category-nav>a,
.dropbtn {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 18px;
    border: 1px solid transparent;
    border-radius: 25px;
    cursor: pointer;
    background-color: var(--bg-white);
}

.category-nav>a:hover,
.dropdown:hover .dropbtn {
    border-color: var(--gold-accent);
    color: var(--gold-accent);
    transform: scale(1.05);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    border: 1px solid var(--gold-accent);
    border-radius: 8px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.05);
    z-index: 10;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.dropdown-content a {
    display: block;
    color: var(--text-gray);
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    border-radius: 0;
    background-color: transparent;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--gold-accent);
    color: #fff;
    transform: none;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* --- 4. BİZ KİMİZ BÖLÜMÜ --- */
.about-section {
    padding: 6rem 0;
    background-color: var(--bg-cream);
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.editorial-paragraph {
    border-left: 3px solid var(--gold-accent);
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
}

.editorial-paragraph p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.drop-cap {
    float: left;
    font-size: 4.5rem;
    line-height: 0.8;
    margin-right: 10px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-accent);
    font-weight: 700;
}

.about-features {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    white-space: nowrap;
}

.about-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #000;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.feature-icon {
    color: var(--gold-accent);
    margin-right: 8px;
    font-size: 1.2rem;
}

/* --- BİZ KİMİZ BÖLÜMÜ BÜYÜK LOGO --- */
.about-logo-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
}

.about-large-logo {
    max-height: 400px;
    width: auto;
    border-radius: 25px;
    border: 2px solid transparent;
    padding: 15px;
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-large-logo:hover {
    transform: scale(1.03);
    border-color: var(--gold-accent);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

/* --- BİZ KİMİZ BÖLÜMÜ / İSTATİSTİKLER --- */
.about-stats {
    grid-column: 1 / span 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: center;
    border-top: none;
    padding-top: 2rem;
    margin-top: 1rem;
}

.stat-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 35px;
    min-width: 220px;
    border-radius: 15px;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(90deg, #e0e0e0 0%, #e0e0e0 40%, var(--gold-accent) 50%, #e0e0e0 60%, #e0e0e0 100%);
    background-size: 200% auto;
    animation: goldShine 3s linear infinite;
    z-index: -2;
}

.stat-box::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 13px;
    background-color: var(--bg-cream);
    z-index: -1;
}

.stat-box>span {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    font-weight: 600;
}

/* =========================================
   YENİ EKLENEN BÖLÜMLER (SİYAH İKONLAR, TAM EKRAN KAHVERENGİ, UZUN ÇERÇEVELER)
========================================= */

/* --- HİZMETLERİMİZ --- */
.services-section {
    padding: 6rem 0;
    margin-bottom: 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #111;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* --- HİZMETLERİMİZ KART GÜNCELLEMESİ --- */
.service-card {
    background: var(--bg-cream);
    padding: 2.5rem;
    border-radius: 20px;

    /* GÜNCELLEME: Çerçeve rengi ARTIK HER ZAMAN ALTIN SARISI */
    border: 1px solid var(--gold-accent);

    /* Büyüme efekti için yumuşak geçiş */
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    /* GÜNCELLEME: Üzerine gelince belirgin şekilde BÜYÜR */
    transform: scale(1.06);

    /* Etrafına altın sarısı, havalı bir gölge vurur */
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.service-card .icon-box {
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
    border: 1px solid #eaeaea;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* İkonların KESİNLİKLE SİYAH olmasını sağlayan kod */
.service-card .icon-box svg {
    width: 30px;
    height: 30px;
    stroke: #000000;
    transition: all 0.3s ease;
}

.service-card:hover .icon-box svg {
    stroke: var(--gold-accent);
    /* Üzerine gelince altın olur */
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #111;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* --- PORTFOLYO GÜNCELLEMESİ (ASİMETRİK VE UZUN) --- */
.portfolio-section {
    background-color: var(--dark-brown);
    width: 100%;
    color: var(--white);
    /* GÜNCELLEME: Bölümün uzunluğu ciddi şekilde artırıldı */
    padding: 10rem 0 14rem 0;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    color: var(--gold-accent);
}

.portfolio-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--bg-cream);
}

.portfolio-header p {
    color: #E0DCD8;
    max-width: 500px;
    font-size: 1.05rem;
}

.btn-outline {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid var(--gold-accent) !important;
    border-radius: 30px;
    color: var(--gold-accent) !important;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;

    /* GÜNCELLEME: BUTONU YUKARI TAŞIYAN SİHİRLİ KODLAR */
    position: relative;
    top: -70px;
    /* Eksi değer butonu yukarı çeker. İstersen -30px, -40px yaparak daha da yukarı alabilirsin. */
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

.portfolio-gallery {
    display: grid;
    /* GÜNCELLEME: 3 Sütunlu Izgara */
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    /* Fotoğraflar arası boşluk */
    margin-top: 6rem;
    align-items: start;
    /* Resimleri üste hizalar */
}

/* Tüm resimlerin ortak ayarı (Ezilmeyi önler) */
.gallery-item img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    /* Resmi sündürmeden kırpar */
    transition: all 0.5s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* 1. Fotoğraf (Sol): En Uzun ve Aşağıda */
.gallery-item:nth-child(1) img {
    height: 700px;
    transform: translateY(100px);
    /* Aşağı kaydırıldı */
}

/* 2. Fotoğraf (Sağ): Orta Boy ve Hafif Yukarıda */
.gallery-item:nth-child(2) img {
    height: 600px;
    transform: translateY(0);
    /* Normal yerinde */
}

/* 3. Fotoğraf (Orta - GÜNCELLEME): En Kısa ve En Yukarda */
.gallery-item:nth-child(3) img {
    height: 500px;
    /* Diğerlerinden kısa */
    /* GÜNCELLEME: En yukarda durması için ciddi şekilde yukarı kaydırıldı */
    transform: translateY(-80px);

    /* 1. ve 2.'nin sağına ve soluna hizalamak için genişletildi */
    width: calc(100% + 1rem);
    margin-left: -0.5rem;
    /* Sağa ve sola eşit taşırarak hizalar */
}

/* Hover Efektleri (Değişmedi) */
.gallery-item img:hover {
    transform: scale(1.03) !important;
    /* Scale Translate'i ezmemesi için */
    border-color: var(--gold-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* --- REFERANSLAR GÜNCELLEMESİ (KAYAN LOGOLAR / MARQUEE) --- */
.testimonials-section {
    padding: 6rem 0;
    /* GÜNCELLEME: Arka plan şeffaf, arkadaki sabit TÜM REKLAM yazısı gözüküyor */
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
    /* Logoların yazının üstünde durmasını sağlar */
}

/* Kayan Alanın Dış Kutusu */
.brands-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 2rem 0;

    /* Sağ ve sol kenarlara çok elit bir "silinerek kaybolma" (fade) efekti verir */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* Hareket Eden Şerit */
.brands-track {
    display: inline-flex;
    align-items: center;
    gap: 6rem;
    /* Logolar arası boşluk */
    padding-right: 6rem;
    /* Döngü payı */

    /* İŞTE SİHİR BURADA: 20 Saniyede soldan sağa doğru akar ve sonsuza kadar tekrarlar */
    animation: scrollLeftToRight 20s linear infinite;
}

/* İstersen fareyle üzerine gelince kayma dursun diye bu kodu kullanabilirsin */
.brands-marquee:hover .brands-track {
    animation-play-state: paused;
}

/* Logoların Tasarımı (GÜNCELLEME: SİYAH VE SOLGUNLUK KALDIRILDI) */
.brands-track img {
    height: 60px;
    /* Logoların yüksekliği */
    width: auto;
    object-fit: contain;

    /* GÜNCELLEME: Siyahlaştırma ve soluklaştırma filtreleri kaldırıldı, logolar tam renkli */
    transition: all 0.4s ease;
}

/* Logoların Üzerine Gelince (Hover) Sadece Büyürler (Rengi zaten orijinal) */
.brands-track img:hover {
    transform: scale(1.1);
    /* Hafif büyür */
}

/* SOLDAN SAĞA KAYMA ANİMASYONU KODU (Değişmedi) */
@keyframes scrollLeftToRight {
    0% {
        transform: translateX(-50%);
    }

    /* Şeridin ortasından (kopyalardan) başlar */
    100% {
        transform: translateX(0);
    }

    /* Sağa doğru akar */
}

/* --- İLETİŞİM VE FOOTER (TAM GENİŞLİK KAHVERENGİ) --- */
.site-footer {
    background-color: var(--dark-brown);
    /* GÜNCELLEME: Tüm alanı kahverengi yapar */
    width: 100%;
    color: #fff;
    padding: 8rem 0 0 0;
    /* Bölümü aşağıya uzatır */
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
    align-items: center;
}

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold-accent);
}

.footer-desc {
    color: #E0DCD8;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 20px 25px;
    background-color: var(--darker-brown);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.contact-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(15px);
}

.contact-item .icon {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.contact-item:hover .icon {
    transform: scale(1.2);
}

.contact-item .text {
    display: flex;
    flex-direction: column;
}

.contact-item .text strong {
    color: var(--gold-accent);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-item .text span {
    color: #fff;
    font-size: 1.05rem;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--gold-accent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    background-color: var(--darker-brown);
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 900px) {
    /* Genel Boşluk Düzeltmeleri */
    .services-section, .testimonials-section {
        padding: 3rem 0;
    }
    .full-portfolio-section {
        padding: 2rem 0 4rem 0;
    }
    .portfolio-section {
        padding: 4rem 0 6rem 0;
    }
    .site-footer {
        padding: 4rem 0 0 0;
    }

    /* Üst Alan Düzeltmeleri */
    .top-bar {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    .header-quick-contact {
        align-items: center;
    }
    .logo-center h1 {
        font-size: 1.8rem;
        padding: 5px 15px;
    }
    .slogan {
        font-size: 0.8rem;
    }
    .header-social {
        justify-content: center;
    }

    /* Navigasyon (Menü) Düzeltmeleri */
    .category-nav {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1rem;
        justify-content: center;
    }
    .category-nav > a, .dropbtn {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    .dropdown-content {
        min-width: 150px;
    }
    
    /* Yaptığımız İşler menüsüne tıklayınca site kaymasın, sadece menü açılsın */
    .dropdown > a.dropbtn {
        pointer-events: none;
    }
    .dropdown {
        cursor: pointer;
    }

    /* BİZ KİMİZ (Ekrana Tam Sığdırma) */
    .about-section {
        padding: 2rem 0;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    .editorial-paragraph {
        margin-bottom: 10px;
    }
    .editorial-paragraph p {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    .drop-cap {
        font-size: 2.5rem;
    }
    .about-features {
        flex-wrap: wrap;
        margin-bottom: 5px;
        gap: 10px;
        justify-content: center;
    }
    .about-features li {
        font-size: 0.8rem;
    }
    .about-logo-wrapper {
        justify-content: center;
        margin: 5px 0;
    }
    .about-large-logo {
        max-height: 120px;
        border-radius: 10px;
    }
    .about-stats {
        padding-top: 10px;
        gap: 10px;
    }
    .stat-box {
        padding: 10px 15px;
        min-width: auto;
        flex: 1;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-text {
        font-size: 0.65rem;
    }

    /* Hizmetler Düzeltmeleri */
    .section-header h2 {
        font-size: 2.2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Ana Sayfa Portfolyo Düzeltmeleri */
    .portfolio-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    .portfolio-header h2 {
        font-size: 2.2rem;
    }
    .btn-outline {
        position: static;
        margin-top: 1rem;
    }
    .portfolio-gallery {
        grid-template-columns: 1fr;
        margin-top: 2rem;
        gap: 1.5rem;
    }
    .gallery-item:nth-child(n) img {
        height: 250px;
        width: 100%;
        transform: none !important;
        margin: 0;
    }

    /* ALT SAYFALAR: Kategoriler Sekmesinde Fotolar TEK SATIR (Yan Yana Scroll) */
    .masonry-gallery {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 1rem;
        margin-top: 2rem;
        scroll-snap-type: x mandatory;
        
        /* Grid kapalı */
        grid-template-columns: none;
    }
    .gallery-box {
        min-width: 85vw; /* Fotoların yanına diğerinin azıcık görünmesi için 85% */
        height: 350px;
        scroll-snap-align: center;
        flex: 0 0 auto;
    }

    /* Fotoğraflar Üzerindeki Yazılar Görünmesin Sadece Başlıklar Görünsün */
    .project-card-content {
        opacity: 1 !important;
        transform: translateY(0) !important;
        padding: 1.5rem;
        background: linear-gradient(0deg, rgba(28, 19, 15, 0.95) 0%, rgba(28, 19, 15, 0) 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
    }
    .project-card-content p {
        display: none !important; /* YAZILARI GİZLE */
    }
    .project-card-content h3 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 0;
    }

    /* Referanslar Düzeltmeleri */
    .brands-track {
        gap: 3rem;
        padding-right: 3rem;
    }
    .brands-track img {
        height: 40px;
    }

    /* Footer & İletişim Düzeltmeleri */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    .footer-title {
        font-size: 2rem;
        text-align: center;
    }
    .footer-desc {
        text-align: center;
    }
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 15px;
    }
    .contact-item:hover {
        transform: translateY(-5px);
    }
    .map-wrapper {
        height: 300px;
    }

    body::before {
        font-size: 20vw;
    }
}

/* =========================================
   ALT SAYFALAR İÇİN LÜKS PROJE KARTLARI (GÜNCELLENDİ)
========================================= */
.full-portfolio-section {
    padding: 10rem 0;
    /* Bölümü biraz uzattık */
    background-color: transparent;
    /* Arka plan yine şeffaf (filigran görünür) */
}

/* 4-5 Fotoğraf İçin Jilet Gibi 2'li Izgara */
.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Jilet gibi 2'li sütun */
    gap: 3rem;
    /* Kartlar arası boşluk */
    margin-top: 6rem;
}

/* GÜNCELLEME: Her Projenin Lüks Kart Tasarımı */
.gallery-box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 600px;
    /* Tüm fotoğraflar aynı boyda jilet gibi durur */
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Ufak, kurumsal çerçeve */
    transition: all 0.5s ease;
}

/* Hover'da Çerçeve Altın Sarısı Olur ve Hafif Büyür */
.gallery-box:hover {
    transform: translateY(-10px);
    /* Hafif yukarı kalkma */
    border-color: var(--gold-accent);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    /* Altın sarısı elit gölge */
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-box:hover img {
    transform: scale(1.05);
    /* Hover olunca resim içinde hafif büyür */
}

/* GÜNCELLEME: RESMİN ÜZERİNE BİNEN ELİT AÇIKLAMA PANELLERİ */
.project-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    /* GÜNCELLEME: Lüks, hafif şeffaf kahverengi bir zemin */
    background: linear-gradient(0deg, rgba(28, 19, 15, 0.95) 0%, rgba(28, 19, 15, 0.7) 100%);
    padding: 3rem;

    /* GÜNCELLEME: Yazılar hover olunca elit bir şekilde süzülerek belirir */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
    /* Hafif bir gecikme premium hissi verir */
}

.gallery-box:hover .project-card-content {
    opacity: 1;
    transform: translateY(0);
}

.project-card-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--gold-accent);
    /* Başlıklar ALTIN SARISI */
    margin-bottom: 10px;
    line-height: 1.2;
}

.project-card-content p {
    color: #f0f0f0;
    /* Açıklamalar Beyaz/Krem tonlarında */
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}