/* Anasayfa */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

.main-container {
    flex: 1 0 auto;
}

/* Üst Menü (Navbar) Alanı */
.navbar {
    background-color: #0b0b0b;
    padding: 15px 5%;
    border-bottom: 4px solid #ffcc00;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Sol Üst Logo Alanı */
.navbar .logo-container {
    flex: 1; 
    display: flex;
    justify-content: flex-start;
}
.navbar .logo-container img {
    max-height: 60px;
    width: auto;
    display: block;
}

/* Başlık Alanı */
.navbar .navbar-center-title {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Arial Black', Gadget, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    text-align: center;
    flex: 2; 
    margin: 0;
    padding: 0;
}

/* Sağ Üst Menü Linkleri */
.navbar .nav-links {
    display: flex;
    gap: 25px;
    flex: 1; 
    justify-content: flex-end;
    align-items: center;
}
.navbar .nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.navbar .nav-links a:hover {
    color: #ffcc00;
}

/* Çekici Çağır Butonu */
.navbar .nav-links a.highlight-btn {
    color: #ffcc00; 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
    border: 2px solid #ffcc00; 
    padding: 6px 14px;
    border-radius: 4px;
    background-color: rgba(255, 204, 0, 0.05); 
}
.navbar .nav-links a.highlight-btn:hover {
    background-color: #ffcc00; 
    color: #0b0b0b; 
    transform: scale(1.05); 
}

/* Hero Alanı Ana Yapısı */
.hero {
    background-color: #0b0b0b; 
    padding: 60px 4% 40px 4%; 
    min-height: 700px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-container {
    width: 100%;
    max-width: 1400px; 
    display: flex;
    flex-direction: column; 
    gap: 50px; 
}

/* Üst Satır: Yazılar ve Büyük Fotoğraflar */
.hero-main-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    gap: 50px;
    align-items: center;
    width: 100%;
}

/* Sol Taraf Yazı Paneli */
.hero-content {
    text-align: left;
    background-color: rgba(17, 17, 17, 0.85); 
    padding: 45px; 
    border-radius: 8px;
    border-left: 6px solid #ffcc00;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 520px; 
    box-sizing: border-box;
}
.hero-content h1 {
    font-size: 3rem; 
    color: #ffcc00;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.2;
}
.hero-content p {
    font-size: 1.25rem; 
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 35px;
    line-height: 1.7;
}

/* WhatsApp Konum Butonu */
.hero-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #25D366;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    width: fit-content;
}
.hero-whatsapp-btn i {
    font-size: 1.6rem;
}
.hero-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background-color: #20ba5a;
}

/* Fotoğraf Izgarası */
.hero-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 25px; 
    width: 100%;
}
.hero-img-box {
    width: 100%;
    height: 520px; 
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.6);
    border: 2px solid rgba(255, 204, 0, 0.25);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.hero-img-box:hover {
    transform: translateY(-5px);
    border-color: #ffcc00;
}
.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center center;
    image-rendering: -webkit-optimize-contrast;
}

/* Sayaç/İstatistik Şeridi */
.hero-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-top: 1px solid rgba(255, 204, 0, 0.15); 
    padding-top: 40px;
    box-sizing: border-box;
}

.stats-inner-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    width: 100%;
    max-width: 1100px; 
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 0 10px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 204, 0, 0.25);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffcc00;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
    font-family: 'Arial Black', Gadget, sans-serif;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 🚨 GÜNCELLEME: BOŞLUKLARI MİLİMETRİK OLARAK DARALTILMIŞ AKAN ŞERİT 🚨 */
.marquee-container {
    background-color: #ffcc00; 
    width: 100%;
    overflow: hidden; 
    white-space: nowrap; 
    padding: 14px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    z-index: 10;
}

.marquee-track {
    display: inline-flex;
    animation: marqueeAnimation 22s linear infinite; 
    gap: 0;
}

.marquee-text-block {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.marquee-item {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0b0b0b;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 20px;
    font-family: 'Arial Black', Gadget, sans-serif;
    display: inline-flex;
    align-items: center;
}

.marquee-item::before {
    content: '•';
    color: #0b0b0b;
    font-size: 1.5rem;
    margin-right: 20px; 
    display: inline-block;
}

@keyframes marqueeAnimation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* Hizmetler Bölümü */
.services-section {
    padding: 65px 5% 70px 5%;
    text-align: center;
}
.services-section h2 {
    font-size: 2.4rem;
    color: #111111;
    margin-bottom: 35px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.services-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ffcc00;
    margin: 12px auto 0 auto;
    border-radius: 2px;
}

/* 3 Adet Hizmet Kutusu */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 5px solid #ffcc00;
    text-align: left;
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-5px);
}
.card h3 {
    font-size: 1.4rem;
    color: #111111;
    margin-bottom: 15px;
    font-weight: 700;
}
.card p {
    font-size: 1rem;
    color: #555555;
}

/* Sabit Footer */
footer {
    flex-shrink: 0;
    background-color: #111111;
    color: #888888;
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
    border-top: 3px solid #ffcc00;
}

/* Sol Alttaki İletişim Butonları */
.sticky-communication-container {
    position: fixed;
    bottom: 95px; 
    left: 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 9999;
}

.communication-row {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.main-sticky-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.main-sticky-btn i {
    font-size: 26px;
}

.btn-color-whatsapp {
    background-color: #25D366;
}
.btn-color-phone {
    background-color: #e63946;
}

.info-balloon {
    background-color: rgba(11, 11, 11, 0.9);
    color: #ffffff;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    margin-left: -15px; 
    padding-left: 25px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    z-index: 1;
    border: 1px solid rgba(255, 204, 0, 0.3);
    transition: all 0.3s ease;
}

.communication-row:hover .main-sticky-btn {
    transform: scale(1.15) translateY(-3px);
}

.communication-row:hover .info-balloon {
    background-color: #0b0b0b;
    color: #ffcc00;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
}

/* Ekran Uyumluluk Düzenlemeleri (Responsive) */
@media (max-width: 1200px) {
    .hero-main-row {
        grid-template-columns: 1fr; 
        max-width: 800px;
        gap: 40px;
        margin: 0 auto;
    }
    .hero-content {
        min-height: auto;
        padding: 35px;
    }
    .hero-img-box {
        height: 480px;
    }
}
@media (max-width: 992px) {
    .navbar .navbar-center-title {
        display: none; 
    }
    .stats-inner-container {
        grid-template-columns: 1fr 1fr; 
        gap: 30px;
    }
    .stat-item:nth-child(2)::after {
        display: none; 
    }
}
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .navbar .logo-container, .navbar .nav-links {
        justify-content: center;
        flex: none;
    }
    .hero {
        padding: 40px 20px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-images-grid {
        grid-template-columns: 1fr; 
    }
    .hero-img-box {
        height: 400px;
    }
    .stats-inner-container {
        grid-template-columns: 1fr; 
        gap: 25px;
    }
    .stat-item::after {
        display: none !important; 
    }
    .stat-number {
        font-size: 2.8rem;
    }
    .marquee-item {
        font-size: 1rem;
        padding: 0 12px;
    }
    .marquee-item::before {
        margin-right: 12px;
    }
    .sticky-communication-container {
        bottom: 110px; 
    }
    .info-balloon {
        font-size: 0.8rem;
        padding: 6px 12px;
        padding-left: 22px;
    }
    }
    /* =========================================
                İLETİŞİM SAYFASI 
========================================= */

.page-header { background-color: #111111; padding: 50px 5%; text-align: center; color: #ffffff; }
.contact-section { padding: 80px 5%; display: flex; justify-content: center; }
.contact-container { width: 100%; max-width: 1200px; display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
.contact-left h2 { font-size: 2.5rem; color: #111111; margin-bottom: 20px; }

/* Form Elemanları */
.form-input { width: 100%; padding: 14px 18px; background-color: #f4f4f4; border: 1px solid transparent; border-radius: 4px; margin-bottom: 20px; box-sizing: border-box; }
.form-textarea { height: 150px; resize: none; }
.submit-btn { background-color: #ffcc00; color: #111111; border: none; padding: 16px; width: 100%; font-weight: 700; cursor: pointer; border-radius: 4px; text-transform: uppercase; }

/* Sağ Bilgi Paneli */
.contact-right { border-left: 1px solid #eee; padding-left: 40px; }
.info-block { margin-bottom: 30px; }
.info-block h3 { font-size: 0.9rem; text-transform: uppercase; color: #111111; letter-spacing: 1.5px; margin-bottom: 15px; }
.info-content { display: flex; align-items: center; gap: 12px; color: #444444; text-decoration: none; font-size: 1.1rem; }
.info-content i { color: #ffcc00; width: 20px; }

/* Sosyal Medya İkonları */
.social-icons { display: flex; gap: 15px; }
.social-link { width: 40px; height: 40px; border-radius: 50%; background-color: #f4f4f4; display: flex; align-items: center; justify-content: center; color: #555555; text-decoration: none; transition: 0.3s; }
.social-link:hover { background-color: #ffcc00; color: #ffffff; }

/* İletişim Sayfası Mobil Uyumluluk */
@media (max-width: 992px) {
    .contact-container { grid-template-columns: 1fr; }
    .contact-right { border-left: none; padding-left: 0; border-top: 1px solid #eee; padding-top: 30px; }
}
