* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* HEADER */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.logo-area img {
    height: 90px;
}
.site-logo{
    height: 45px;
    width: auto;
    object-fit: contain;
}
.menu-toggle{
    display: none;
    cursor: pointer;
    font-size: 22px;
    color: #fff;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
nav ul li{
    text-align: center;
}
nav ul li a {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #d4af37;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.phone-link i {
    color: #d4af37;
}

.btn-gold {
    background-color: #d4af37;
    color: #111;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    background-color: #c19b2e;
}
/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('arka\ plan.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 5% 60px 5%;
    color: #fff;
}

.hero-content {
    max-width: 700px;
    margin-bottom: 40px;
}

.hero-subtitle {
    color: #d4af37;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 14px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero h1 span {
    color: #d4af37;
}

.hero p {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    font-size: 24px;
    color: #d4af37;
}

.feature-item h4 {
    font-size: 14px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    max-width: 400px;
}
.hero-buttons button{
    flex: 1;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    transition: transform 0.2s;
}
.hero-buttons button:hover {
    transform: translateY(-2px);
}
.btn-hero-call {
    background-color: #d4af37;
    color: #111;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-wa {
    background-color: #25d366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
/* ========================================= */
/* MOBİL UYUMLULUK DÜZENLEMELERİ (768px Altı) */
/* ========================================= */
@media screen and (max-width: 768px) {
    
    /* Header genel yerleşimi dikey yapılıyor */
    header {
        position: relative !important;
        display: flex;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 8px !important;
        flex-wrap: wrap;
        background: #111822 !important; /* Mobilde şık düz arka plan */
    }

    /* Logo ve yazı alanı ortalanıyor */
    .logo-area {
        order: 1 !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 4px !important;
    }
    .site-logo{
        height: 60px !important;
    }
    .logo-area span{
        font-size: 14px !important;
        line-height: 1.1 !important;
    }
    .logo-area span span{
        font-size: 12px !important;
    }
    .menu-toggle{
        display: block !important;
        padding: 2px !important;
        font-size: 25px !important;
    }
    /* Mobilde üst menüyü gizliyoruz (istersen açabilirsin ama genelde mobilde sade durur) */
    nav {
        display: none;
        order: 3 !important; 
        width: 100%;
        background: #1a2530;
        padding: 15px 0;
        border-radius: 8px;
        margin-top: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    nav.active{
        display: block !important;
    }
    nav ul{
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    nav ul li a{
        font-size: 16px;
        color: #fff;
    }
    /* Sağdaki telefonlar ve keşif butonunun kapsayıcısı */
    .header-right {
        order: 2 !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        margin-right: 0 !important;
        width: auto !important;
        border-top: none !important;
        padding-top: 0 !important;
    }

    /* Telefon numaralarının arka arkaya düzgün sıralanması */
    .header-right > div:not(.menu-toggle) {
        display: none !important;
    }

    .phone-link {
        font-size: 11px !important;
        
    }
    .phone-link strong{
        font-size: 10px !important;
    }

    /* Keşif butonu mobilde tam orantılı ve tıklanabilir oluyor */
    .header-right .btn-gold {
        padding: 5px 8px !important;
        font-size: 14px !important;
        white-space: nowrap;
        border-radius: 4px;
    }

    /* Hero (Ana Görsel) alanı mobilde yazıların taşmaması için ayarlanıyor */
    .hero {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('arka\ plan\ m.jpg') no-repeat center center/cover;
        height: auto;
        min-height: 100vh;
        padding: 30px 5% 40px 5%;
        justify-content: center;
    }

    .hero h1 {
        font-size: 28px !important; /* Başlık mobilde küçülür */
    }

    /* Hero içindeki 4'lü özellik kutuları mobilde alt alta (tek sütun) iner */
    .hero-features {
        grid-template-columns: 1fr !important;
        gap: 10px;
        padding: 15px;
        width: 50%;
    }

    /* Hero altındaki Hemen Ara ve WhatsApp butonları yan yana veya alt alta */
    .hero-buttons {
        flex-direction: column;
        width: 50%;
    }
}
/* MODAL (AÇILIR KÜÇÜK EKRAN) STİLLERİ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a2530;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    color: #fff;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 18px;
    cursor: pointer;
}

.modal-close:hover {
    color: #fff;
}

.modal-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #d4af37;
}

.modal-content p {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 20px;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-btn {
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.2s;
}

.modal-btn:hover {
    opacity: 0.9;
}

.modal-btn.call-btn {
    background-color: #d4af37;
    color: #111;
}

.modal-btn.wa-btn {
    background-color: #25d366;
    color: #fff;
}
/* SERVICES SECTION */
.services {
    padding: 80px 5%;
    background-color: #fff;
    text-align: center;
}

.section-tag {
    color: #d4af37;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 25px;
    font-weight: 700;
    color: #111;
    margin-bottom: 50px;
    margin-top: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.service-card {
    background: #fdfdfd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
    border: 1px solid #eee;
    transition: transform 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img-wrapper {
    position: relative;
    height: 180px;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background-color: #1a2530;
    color: #d4af37;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.service-content {
    padding: 30px 20px 20px 20px;
}

.service-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.service-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.btn-dark {
    background-color: #111;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

/* BEFORE / AFTER SECTION */
.before-after {
    padding: 80px 5%;
    background-color: #111822;
    color: #fff;
    text-align: center;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.ba-card {
    background: #1a2530;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
}

.ba-images {
    display: flex;
    height: 250px;
    position: relative;
}
.ba-img-box {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.ba-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-badge {
    position: absolute;
    top: 10px;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
}

.ba-badge.before {
    left: 10px;
    background: #d97706;
    color: #fff;
}

.ba-badge.after {
    right: 10px;
    background: #d4af37;
    color: #111;
}

.ba-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 10;
}

.ba-title {
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}
/* Video elemanlarının kutuya tam oturması için */
.ba-img-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tekli proje kutusunda slider çubuğunu gizlemek için */
.ba-images.single-project .ba-slider-handle {
    display: none;
}
/* FOOTER INFO BAR */
.footer-info {
    background: #fff;
    color: #111;
    padding: 40px 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid #ddd;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #d4af37;
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h5 {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.info-content p {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-features, .services-grid, .ba-grid, .footer-info {
        grid-template-columns: repeat(2, 1fr);
    }
    nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    .hero-features, .services-grid, .ba-grid {
        grid-template-columns: 1fr;
    }
    .footer-info{
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px 10px !important;
        padding: 20px 4% !important;
    }
    .info-box{
        gap: 10px !important;
    }
    .info-icon{
        width: 38px !important;
        height: 38px !important;
        font-size: 15px !important;
    }
    .info-content h5{
        font-size: 10px !important;
    }
    .info-content p, .info-content a{
        font-size: 11px !important;
        line-height: 1.2 !important;
    } 
    .hero-buttons {
        flex-direction: column;
    }
}
/* Tekli Video Gösterimi İçin Ayar */
.ba-images.single-video {
    display: block; /* Yan yana bölmeyi iptal eder, tek blok yapar */
    height: 250px;
}

.ba-images.single-video .ba-img-box {
    width: 100%;
    height: 100%;
}

.ba-images.single-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Fotoğrafa tıklanabilirlik işareti */
.ba-images img, .ba-images video {
    cursor: pointer;
    transition: transform 0.2s ease;
}
.ba-images img:hover {
    transform: scale(1.02);
}
.before-after-text{
    padding: 50px 5%;
    background-color: #111822;
    text-align: center;
}
/* Tam Ekran (Lightbox) Arka Planı */
#lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Tam Ekran Açılan Görsel/Video */
#lightbox-modal img, #lightbox-modal video {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

/* Kapatma Çarpısı */
#lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}
#lightbox-close:hover {
    color: #d4af37;
}