@font-face {
    font-family: 'SFCompact';
    src: url('fontlar/SF-Compact-Display-Medium.otf') format('truetype'); 
}
@font-face {
    font-family: 'ArialRounded';
    src: url(fontlar/Arial\ Rounded\ Bold.ttf);
}

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

.container{
    background: url(banner-img5.jpg);
    height: 100vh;
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat; 
    position: relative;
    padding-top: 70px;                                   /* 🛠️ BUG FIX: Yazıların yukarı kaçmasını engeller */
}

/* Telefon tarzı navbar aynen kalıyor */
.container .navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.35);               
    backdrop-filter: blur(30px) saturate(210%);          
    -webkit-backdrop-filter: blur(30px) saturate(210%);                 
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.4); 
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 4px 30px rgba(0, 0, 0, 0.03);
    display: flex;                  
    justify-content: space-between; 
    align-items: center;            
    padding: 0 20px;                
    z-index: 9999;
}

.logo img{
    margin-top: 5px;
}

.navbar ul{
    display: flex; 
    list-style: none;
    align-items: center;
}

ul li{
    margin-left: 12px; 
    font-size: 15px;
    font-family: 'SFCompact', sans-serif; 
}

li a{
    text-decoration: none;
    color: black;
    display: inline-block;  
    padding: 6px 14px;      
    border-radius: 4px;     
    transition: all 0.2s ease; 
}
   @media (max-width: 768px) {
    .container .navbar {
        height: auto !important;          /* Sabit 70px boyutu iptal, içeriğe göre uzayacak */
        flex-direction: column !important; /* Logo üstte, linkler altta olacak şekilde dikey hizala */
        padding: 12px 15px !important;    /* Mobilde daha kibar bir iç boşluk */
        gap: 10px !important;             /* Logo ile menü arasına şık bir mesafe */
    }

    .logo img {
        height: 35px !important;          /* Mobilde logo biraz küçülsün ki yer kalsın */
        margin-top: 0 !important;
    }

    .navbar ul {
        width: 100% !important;           /* Link sepeti tam genişlik kaplasın */
        justify-content: center !important;/* Linkleri mobilde tam ortala */
        flex-wrap: wrap !important;       /* Ekran çok daralırsa linkler alt satıra güvenle geçsin */
        gap: 6px !important;              /* Linklerin kendi arasındaki mesafeyi ayarla */
    }

    ul li {
        margin-left: 0 !important;        /* Eski sol boşluğu sıfırla, gap komutu yönetecek */
    }

    li a {
        font-size: 13px !important;       /* Mobilde fontu bir tık küçültelim */
        padding: 6px 10px !important;     /* Hover cam efektinin mobilde taşmaması için kibar padding */
    }
}

/* 💧 NAVBAR LIQUID GLASS HOVER VE SELECTION EFEKTİ */
.navbar ul li a.active,
.navbar ul li a:hover{
    background: rgba(89, 162, 255, 0.18);
    color: #0052cc;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(89, 162, 255, 0.35);
    box-shadow: 0 4px 12px rgba(89, 162, 255, 0.1);
    border-radius: 8px; 
}

/* ==========================================================================
   🔮 İŞTE TAM ORTADAKİ YAZI ALANINA EKLENEN BUZLU CAM (GLASSMORPHISM) KUTUSU
   ========================================================================== */
.container .orta{
    position: absolute;
    top: 55%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;                               
    max-width: 850px;                         
    text-align: center;

    /* 📌 SİHİRLİ BUZLU CAM AYARLARI */
    background: rgba(255, 255, 255, 0.12);               
    backdrop-filter: blur(18px);                         
    -webkit-backdrop-filter: blur(18px);                 
    border: 1px solid rgba(255, 255, 255, 0.25);         
    border-radius: 24px;                                 
    padding: 50px 40px;                                  
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);          
}

.container h2{
    color: #f1f5f9;                                      
    font-family: 'SFCompact', Arial, Helvetica, sans-serif;
    font-size: 16px;
    text-align: center;
    margin-bottom: 15px; 
    letter-spacing: 0.8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); 
}

.container h1{
    color: white;
    font-family: sans-serif;
    font-weight: bold;
    text-align: center;
    font-size: 42px; 
    line-height: 1.3;
    margin-bottom: 35px; 
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4); 
    font-family: 'ArialRounded', sans-serif;
}

.container .dugmeler {
    display: flex;
    justify-content: center;
    width: 100%;
}

.container .dugmeler .buton-link{
    background-color: darkblue;
    height: 50px;
    width: 150px;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    font-family: 'SFCompact', sans-serif;
    outline: none;              
    cursor: pointer;            
    border: 2px solid #001c41; 
    transition: all 0.1s ease;  

    text-decoration: none;      
    display: inline-flex;       
    align-items: center;        
    justify-content: center;    
}

.container .dugmeler .buton-link:hover {
    background-color: #0000b3;  
    transform: scale(1.04);     
    color: white;               
}

.container .dugmeler .buton-link:active {
    transform: scale(0.94);     
}

/* ==========================================================================
   🧱 RESİMLİ ALAN (ABOUT SECTION) - AYRILMIŞ SÜPER GLASSMOPHISM KONSEPTE
   ========================================================================== */
.about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-container {
    width: 100%;
    max-width: 1140px;
    display: flex;
    align-items: stretch; /* Sol resim paneliyle sağ tarafın toplam yüksekliğini eşitler */
    justify-content: space-between;
    gap: 50px;
}

/* 🔮 SOL PANEL: İNŞAAT RESİMLERİNİ KUŞATAN BUZLU CAM */
.about-images {
    flex: 1;
    display: flex;
    gap: 20px;
    height: 480px; 
    
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(25px) saturate(190%);
    -webkit-backdrop-filter: blur(25px) saturate(190%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 28px; 
    padding: 20px; 
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 16px; 
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-images img:hover {
    transform: scale(1.02);
}

.img-buyuk {
    flex: 1.1; 
}

.img-sag-grup {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

.img-ust, .img-alt {
    height: calc(50% - 10px) !important; 
}

/* 🚀 SAĞ TARAF ANA SÜTUN (YAZI VE TELEFONU ALT ALTA KUSURSUZ HİZALAYAN SÜTUN) */
.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;               /* İki bağımsız cam panel arasındaki şık boşluk */
    justify-content: table-row-group;
}

/* 🔮 SAĞ 1. CAM PANEL: SADECE METİNLER VE ÖZELLİKLER */
.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(25px) saturate(190%);
    -webkit-backdrop-filter: blur(25px) saturate(190%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 28px;
    padding: 35px 40px; 
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.about-content h2 {
    font-family: sans-serif;
    font-size: 36px;
    color: #0f172a; 
    font-weight: bold;
    line-height: 1.25;
    margin-bottom: 15px;
    text-align: left;
    text-shadow: none; 
}

.about-content h3 {
    font-family: 'SFCompact', sans-serif;
    font-size: 16px;
    color: #334155;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content p {
    font-family: sans-serif;
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Özellik Maddeleri */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.onay-ikon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.feature-text {
    font-family: sans-serif;
    font-size: 15px;
    color: #1e293b;
    font-weight: 500;
}

/* 🔮 SAĞ 2. CAM PANEL: YAZILARDAN TAMAMEN BAĞIMSIZ ULTRA TELEFON KAPSÜLÜ */
.about-phone {
    display: flex; 
    align-items: center;
    gap: 18px;
    padding: 14px 28px;
    align-self: flex-start; /* Kapsülün tam sağa uzamasını engeller, kibar bir buton gibi kalır */
    
    /* Üst panelle birebir uyumlu bağımsız cam yapısı */
    background: rgba(255, 255, 255, 0.42) !important;
    backdrop-filter: blur(25px) saturate(190%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(190%) !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    border-radius: 22px !important; 
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.phone-circle {
    background-color: darkblue; 
    width: 54px;
    height: 54px;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-circle img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.phone-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.phone-info span {
    font-family: sans-serif;
    font-size: 13px;
    color: #475569; 
}

.phone-info a {
    font-family: 'SFCompact', sans-serif;
    font-size: 22px;
    color: darkblue;
    font-weight: bold;
    text-decoration: none; 
    transition: color 0.2s ease;
}

.phone-info a:hover {
    color: #59a2ff; 
}

/* COPYRIGHT (FOOTER) STİLLERİ */
.site-footer {
    background-color: #0f172a; 
    width: 100%;
    padding: 20px 0;          
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer p {
    font-family: 'SFCompact', sans-serif;
    font-size: 14px;
    color: #94a3b8;           
    letter-spacing: 0.5px;
}
/* ==========================================================================
   🚨 ANA SAYFA MOBİL SAĞA KAYMA (OVERFLOW) DÜZELTMESİ
   ========================================================================== */

/* 1. Tüm sitenin sağa doğru taşmasını ve gereksiz kaymasını kökten engelle */
html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 2. Elemanların iç boşluklarının genişliği şişirmesini engelle */
*, *:before, *:after {
    box-sizing: inherit;
}

/* 3. Mobilde navbarın dışarı taşmasını engelle ve elemanları sıkıştır/sar */
@media (max-width: 768px) {
    .container, .navbar {
        max-width: 100% !important;
        width: 100% !important;
    }

    .navbar ul {
        display: flex !important;
        flex-wrap: wrap !important; /* Linkler sığmazsa aşağı kayıp kutuyu koruyacak */
        justify-content: center !important;
        gap: 5px !important; /* Linklerin birbirine yapışmaması için kibar bir boşluk */
        padding: 0 !important;
        margin: 0 !important;
    }

    .navbar ul li {
        margin: 0 !important; /* Eski devasa marginleri sıfırla */
    }

    .navbar ul li a {
        font-size: 12px !important; /* Mobilde yazıları biraz ufalt ki kutuya sığsınlar */
        padding: 6px 8px !important;
    }
}
/* ==========================================================================
   📸 HAKKIMIZDA (ABOUT) RESİMLERİ MOBİL PRES DÜZELTMESİ
   ========================================================================== */
@media (max-width: 768px) {
    /* 1. Ana hakkımızda alanını alt alta dikey düzene al */
    .about-container {
        flex-direction: column !important;
        gap: 25px !important;
    }

    /* 2. Resim kapsayıcısının sabit yüksekliğini iptal et ve dikey yap */
    .about-images {
        flex-direction: column !important;
        height: auto !important;          /* Kürdan efektini bitiren sihirli dokunuş */
        gap: 15px !important;
        padding: 15px !important;
    }

    /* 3. Büyük resmi üstte tam genişlik yap ve yüksekliğini eşitle */
    .img-buyuk {
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;     /* Resmin sünmesini, bozulmasını engeller */
    }

    /* 4. Sağdaki iki küçük resmin grubunu alt kata yatay şerit yap */
    .img-sag-grup {
        width: 100% !important;
        flex-direction: row !important;   /* Mobilde alt katta yan yana çok tatlı dururlar */
        gap: 15px !important;
        height: 110px !important;         /* Küçük resimlerin ideal mobil yüksekliği */
    }

    /* 5. Küçük resimlerin dikey yüzdelik hesaplarını mobilde iptal et */
    .img-ust, .img-alt {
        width: 50% !important;            /* Yan yana %50 %50 paylaşsınlar */
        height: 100% !important;
        object-fit: cover !important;
    }

    /* 6. Yazı alanını mobilde tam genişlik yap */
    .about-right {
        width: 100% !important;
    }

    .about-content {
        padding: 25px 20px !important;
    }

    .about-content h2 {
        font-size: 26px !important;
        text-align: center !important;
    }
}