/*
Theme Name: SBC Global İnşaat
Theme URI: https://sbcglobal.com
Author: SBC Global
Author URI: https://sbcglobal.com
Description: SBC Global İnşaat için tam fonksiyonel WordPress teması - Elementor gerektirmez
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sbc-global
*/

:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4E4BA;
    --gold-dark: #B8941E;
    --black-primary: #0A0A0A;
    --black-secondary: #1A1A1A;
    --gray-dark: #2A2A2A;
    --gray-medium: #4A4A4A;
    --white: #FFFFFF;
    --white-soft: #F8F8F8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--white);
    color: var(--black-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeIn 0.8s ease-out 0.3s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-logo-link {
    display: block;
    line-height: 0;
}

.custom-logo {
    height: 80px;
    width: auto;
    max-width: 400px;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

nav ul li {
    animation: fadeIn 0.6s ease-out backwards;
}

nav ul li:nth-child(1) { animation-delay: 0.4s; }
nav ul li:nth-child(2) { animation-delay: 0.5s; }
nav ul li:nth-child(3) { animation-delay: 0.6s; }
nav ul li:nth-child(4) { animation-delay: 0.7s; }

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover {
    color: var(--gold-primary);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--black-primary) 0%, var(--black-secondary) 50%, var(--gray-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hero-content {
    max-width: 1400px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 5.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.7s backwards;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    color: var(--black-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    animation: fadeInUp 1s ease-out 0.9s backwards;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.hero-cta:hover::before {
    left: 100%;
}

/* Sections */
section {
    padding: 7rem 0;
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--black-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-bottom: 4rem;
    font-weight: 300;
}

/* About Section */
#hakkinda {
    background: linear-gradient(180deg, var(--white) 0%, var(--white-soft) 100%);
}

.about-content {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Services Section */
#hizmetler {
    background: var(--black-primary);
    color: var(--white);
    width: 100%;
}

#hizmetler .section-title,
#hizmetler .section-subtitle {
    color: var(--white);
}

#hizmetler .section-subtitle {
    color: var(--gold-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: linear-gradient(135deg, var(--black-secondary) 0%, var(--gray-dark) 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--gold-primary), transparent);
    opacity: 0.1;
    transition: height 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-primary);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gold-light);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white-soft);
}

/* Projects Section */
#projeler {
    background: var(--white-soft);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
}

.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
}

.project-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-info {
    padding: 2rem;
}

.project-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--black-primary);
}

.project-subtitle {
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin-bottom: 1rem;
}

.project-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-dark);
}

/* Project Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: 3% auto;
    max-width: 1200px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    animation: slideUp 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 2rem 3rem;
    background: linear-gradient(135deg, var(--black-primary), var(--gray-dark));
    color: var(--white);
    position: relative;
}

.modal-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold-light);
}

.modal-header p {
    color: var(--white-soft);
    font-size: 1.1rem;
}

.close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: var(--gold-primary);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close:hover {
    transform: rotate(90deg);
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 3rem;
}

.modal-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

/* Contact Section */
#iletisim {
    background: linear-gradient(135deg, var(--black-primary) 0%, var(--gray-dark) 100%);
    color: var(--white);
    width: 100%;
}

#iletisim .section-title,
#iletisim .section-subtitle {
    color: var(--white);
}

#iletisim .section-subtitle {
    color: var(--gold-light);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.contact-icon {
    font-size: 2.5rem;
    min-width: 50px;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--gold-light);
    font-family: 'Playfair Display', Georgia, serif;
}

.contact-details p {
    color: var(--white-soft);
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-details a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--gold-light);
    transform: translateX(5px);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    color: var(--black-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Footer */
footer {
    background: var(--black-primary);
    color: var(--white-soft);
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

footer p {
    font-size: 0.95rem;
}

.footer-gold {
    color: var(--gold-primary);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .about-content {
        max-width: 100%;
        padding: 0 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    nav ul {
        gap: 1.5rem;
    }

    nav a {
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% auto;
    }

    .modal-gallery {
        grid-template-columns: 1fr;
    }
    
    .close {
        right: 1.5rem;
        top: 1.5rem;
    }
    
    .custom-logo {
        height: 60px;
        max-width: 280px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black-primary);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    nav ul.active {
        display: flex;
    }
}
.instagram-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px;
    margin-top: 10px;

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;

    color: #fff;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);

    border-radius: 30px;
    text-decoration: none;

    transition: all 0.3s ease;
}

.instagram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ============================================================
   v2.0 - PROJE FİLTRE SEKMELERİ & BADGES
   ============================================================ */

.project-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 28px;
    border: 2px solid var(--gold-primary);
    background: transparent;
    color: var(--gold-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--gold-primary);
    color: var(--black-primary);
}

.project-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.badge-ongoing {
    background: rgba(230, 126, 34, 0.92);
    color: #fff;
}

.badge-done {
    background: rgba(46, 160, 67, 0.92);
    color: #fff;
}

.project-card {
    position: relative;
    cursor: pointer;
}

.project-detail-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    transition: gap 0.2s;
}

/* ============================================================
   SINGLE PROJE SAYFASI
   ============================================================ */

.single-project-hero {
    position: relative;
    height: 480px;
    overflow: hidden;
    margin-top: 80px;
}

.single-project-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-project-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.15) 100%);
    display: flex;
    align-items: flex-end;
}

.single-project-hero-content {
    padding: 2.5rem 3rem;
    color: #fff;
    max-width: 900px;
}

.single-project-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.single-project-location {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin-top: 0.4rem;
}

.back-link {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: opacity 0.2s;
}
.back-link:hover { opacity: 0.75; }

/* Wrapper */
.single-project-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

/* Açıklama */
.single-project-desc {
    margin-bottom: 3rem;
}
.single-project-desc h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--black-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--gold-primary);
}
.project-content-text {
    color: var(--gray-medium);
    line-height: 1.8;
    font-size: 1rem;
}

/* Galeri Bölümü */
.single-project-galleries {
    margin-bottom: 3.5rem;
}
.single-project-galleries > h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--black-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--gold-primary);
}

/* Galeri Sekmeleri */
.gallery-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0;
}

.gallery-tab {
    padding: 10px 24px;
    border: none;
    background: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-medium);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.25s;
}

.gallery-tab.active {
    color: var(--gold-primary);
    border-bottom-color: var(--gold-primary);
}

.gallery-panel {
    display: none;
}
.gallery-panel.active {
    display: block;
}

.gallery-panel-label {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    font-style: italic;
}

/* Fotoğraf Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
}

.photo-grid-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.photo-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.photo-overlay span {
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
}
.photo-grid-item:hover .photo-grid-img { transform: scale(1.06); }
.photo-grid-item:hover .photo-overlay { background: rgba(0,0,0,0.35); }
.photo-grid-item:hover .photo-overlay span { opacity: 1; }

/* ============================================================
   ŞANTİYE ŞEFİ KARTI
   ============================================================ */

.site-manager-section {
    margin-bottom: 3.5rem;
}

.site-manager-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--black-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--gold-primary);
}

.site-manager-card {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 16px;
    padding: 2.2rem 2.5rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.manager-photo-wrap {
    flex-shrink: 0;
}

.manager-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-primary);
    box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}

.manager-photo-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: var(--gray-dark);
}

.manager-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.manager-title {
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.manager-desc {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.manager-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-primary);
    color: var(--black-primary);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
}
.manager-phone:hover { background: var(--gold-dark); }

/* Alt Navigasyon */
.single-project-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    gap: 1rem;
    flex-wrap: wrap;
}
.single-project-nav a {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: opacity 0.2s;
}
.single-project-nav a:hover { opacity: 0.7; }
.back-to-all {
    background: var(--black-primary);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.85rem !important;
}

/* ============================================================
   LİGHTBOX
   ============================================================ */

.sbc-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.sbc-lightbox.active {
    display: flex;
}
.sbc-lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
    cursor: default;
}
.lightbox-close {
    position: fixed;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    z-index: 100000;
    transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 0.6; }

/* ============================================================
   MOBİL UYUM
   ============================================================ */

@media (max-width: 768px) {
    .single-project-hero { height: 320px; }
    .single-project-hero-content { padding: 1.5rem; }
    .single-project-hero-content h1 { font-size: 1.7rem; }
    .single-project-wrapper { padding: 2rem 1.2rem 3rem; }
    .site-manager-card { flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; padding: 1.8rem; }
    .manager-photo, .manager-photo-placeholder { width: 110px; height: 110px; }
    .photo-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
    .single-project-nav { justify-content: center; }
    .project-filter-tabs { gap: 8px; }
    .filter-tab { padding: 8px 18px; font-size: 0.85rem; }
}
