/* --- Değişkenler ve Genel Ayarlar --- */
:root {
    --primary-red: #E60000; /* Canlı Berat Turbo Kırmızısı */
    --dark-bg: #111111;     /* Koyu Siyah */
    --light-bg: #1a1a1a;    /* Açık Siyah (Griye dönük) */
    --text-white: #ffffff;
    --text-grey: #b3b3b3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Yardımcı Sınıflar */
.container { width: 90%; max-width: 1200px; margin: auto; }
.text-red { color: var(--primary-red); }
.text-center { text-align: center; }
.section-padding { padding: 80px 0; }
.bg-dark { background-color: var(--light-bg); }

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-red {
    background-color: var(--primary-red);
    color: white;
    border: 2px solid var(--primary-red);
}

.btn-red:hover {
    background-color: transparent;
    color: var(--primary-red);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    margin-left: 10px;
}

.btn-outline:hover {
    background-color: white;
    color: black;
}

/* --- Header --- */
header {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-red);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: white;
}

.logo span { color: var(--primary-red); }

header nav ul li { display: inline; margin-left: 30px; }
header nav ul li a { font-weight: 600; font-size: 14px; text-transform: uppercase; }
header nav ul li a:hover, header nav ul li a.active { color: var(--primary-red); }

/* --- Hero Bölümü --- */
.hero {
    height: 100vh; /* Tam ekran */
    background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Resmi %70 karart */
}

.hero-content {
    position: relative;
    width: 100%;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* --- Tanıtım Bölümü (2 Kolon) --- */
.row { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; }
.col-text { flex: 1; }
.col-img { flex: 1; }

.col-img img {
    width: 100%;
    border-radius: 5px;
    border-left: 5px solid var(--primary-red);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background: var(--primary-red);
    margin-top: 10px;
}

.col-text p { margin-bottom: 15px; color: var(--text-grey); }

/* --- Özellikler (Grid) --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    background: #0a0a0a;
    padding: 30px;
    border: 1px solid #333;
    transition: 0.3s;
    text-align: center;
}

.feature-box:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 40px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.feature-box h3 { margin-bottom: 15px; }
.feature-box p { color: var(--text-grey); font-size: 0.9rem; }

/* --- Süreç Adımları --- */
.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    text-align: center;
    flex: 1;
    background: #222;
    padding: 20px;
    border-radius: 5px;
    position: relative;
}

.step-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* --- Footer --- */
footer {
    background: #000;
    padding: 50px 0 20px;
    border-top: 3px solid var(--primary-red);
    padding-bottom: 80px; /* Mobilde sticky bar'ın altında kalmaması için */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo { font-size: 1.5rem; font-weight: bold; }
.footer-links ul li { display: block; margin: 10px 0; }
.footer-links ul li a { color: var(--text-grey); font-size: 14px; }
.footer-links ul li a:hover { color: var(--primary-red); padding-left: 5px; }

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    color: #666;
}

/* --- Mobil Uyumluluk --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .nav-container { flex-direction: column; }
    header nav ul { margin-top: 15px; text-align: center; }
    header nav ul li { margin: 0 10px; }
    .row { flex-direction: column; }
    .steps { flex-direction: column; }
    .footer-content { flex-direction: column; text-align: center; }
}

/* --- HAKKIMIZDA SAYFASI EKLEMELERİ --- */
.page-header {
    height: 300px;
    background: url('https://images.unsplash.com/photo-1562259920-47afc305f369?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 75px;
}

.page-header .content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    color: white;
    font-weight: 900;
}

.page-header p {
    color: #ddd;
    font-size: 1.2rem;
}

.stats {
    background: var(--primary-red);
    color: white;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #000;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.section-padding .col-img img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* --- HİZMETLER SAYFASI ÖZEL --- */
.services-header {
    background-image: url('https://images.unsplash.com/photo-1487754180451-c456f719a1fc?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: #0f0f0f;
    padding: 30px;
    border: 1px solid #333;
    border-radius: 8px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(230, 0, 0, 0.2);
}

.service-card:hover .icon-box i {
    transform: scale(1.1) rotate(5deg);
}

.icon-box i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    transition: 0.3s;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-grey);
    font-size: 0.95rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.service-list li {
    margin-bottom: 10px;
    color: #ccc;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.service-list li i {
    color: var(--primary-red);
    margin-right: 10px;
    font-size: 0.8rem;
}

.cta-banner {
    background: var(--primary-red);
    padding: 60px 0;
    color: white;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 900;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.btn-white {
    background: white;
    color: var(--primary-red);
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    border: 2px solid white;
}

.btn-white:hover {
    background: #f0f0f0;
    color: #cc0000;
}

@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
}

/* --- İLETİŞİM SAYFASI ÖZEL --- */
.contact-header {
    background-image: url('https://images.unsplash.com/photo-1552857945-3127dd338a0c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form-box {
    flex: 1;
    min-width: 300px;
    background: #0f0f0f;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #333;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-right: 20px;
    margin-top: 5px;
    width: 30px;
    text-align: center;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
}

.info-item p {
    color: var(--text-grey);
    font-size: 0.95rem;
}

.info-item a:hover {
    color: var(--primary-red);
}

.contact-form-box h3 {
    margin-bottom: 20px;
    color: white;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 15px;
    background: #222;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: 0.3s;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: var(--primary-red);
    background: #1a1a1a;
}

.btn-block {
    display: block;
    width: 100%;
    cursor: pointer;
}

.map-section {
    margin-bottom: -10px;
    filter: grayscale(100%) invert(90%);
    transition: 0.3s;
}

.map-section:hover {
    filter: none;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
}

/* --- GOOGLE YORUMLARI VE STICKY BAR (YENİ EKLENEN) --- */

/* Google Yorumları */
.reviews {
    background-color: #050505;
    border-top: 1px solid #333;
}

.google-rating {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.google-rating i.fa-google {
    font-size: 1.5rem;
    color: #4285F4;
    margin-right: 10px;
    vertical-align: middle;
}

.google-rating .stars {
    color: #FFD700;
    display: inline-block;
    margin-left: 10px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.user-img {
    width: 40px;
    height: 40px;
    background: #555;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    margin-right: 15px;
}

.user-img.bg-red {
    background: var(--primary-red);
}

.review-card h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.stars-small {
    color: #FFD700;
    font-size: 0.8rem;
}

.review-card p {
    font-size: 0.9rem;
    color: #ccc;
    font-style: italic;
}

/* Mobil Sticky Bar */
.sticky-mobile-bar {
    display: none; /* Masaüstünde gizli */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
}

.bar-btn {
    flex: 1;
    text-align: center;
    padding: 15px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    border-top: 2px solid transparent;
}

.call-btn {
    background: #333;
}

.whatsapp-btn {
    background: #25D366; /* WhatsApp Yeşili */
}

/* --- GELİŞMİŞ MOBİL UYUMLULUK (RESPONSIVE) --- */

/* Hamburger Menü Butonu (Varsayılan olarak gizli) */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

/* Tablet ve Mobil Ekranlar (768px ve altı) */
@media (max-width: 768px) {
    
    /* Menü Butonunu Göster */
    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 25px;
    }

    /* Menü Yapısı */
    header nav ul {
        display: flex;
        flex-direction: column;
        position: fixed;
        left: -100%; /* Ekran dışına sakla */
        top: 70px; /* Header yüksekliği kadar aşağıda */
        background-color: #000;
        width: 100%;
        height: 100vh; /* Tüm ekranı kapla */
        text-align: center;
        transition: 0.3s ease;
        padding-top: 50px;
        border-top: 2px solid var(--primary-red);
    }

    header nav ul.active {
        left: 0; /* Ekrana getir */
    }

    header nav ul li {
        display: block;
        margin: 25px 0;
    }

    header nav ul li a {
        font-size: 1.2rem;
        font-weight: bold;
    }

    /* Hamburger Animasyonu (X şekline dönmesi) */
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Bölümü Düzenlemeleri */
    .hero h1 {
        font-size: 2rem; /* Başlığı küçült */
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }

    .btn-outline {
        margin-left: 0; /* Butonları alt alta al */
    }

    /* Genel Bölüm Boşluklarını Azalt */
    .section-padding {
        padding: 40px 0;
    }

    .row {
        flex-direction: column;
    }

    .col-img img {
        border-left: none;
        border-bottom: 5px solid var(--primary-red);
    }

    /* Footer Düzeni */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    /* İletişim Sayfası */
    .contact-wrapper {
        flex-direction: column;
    }

    /* Hizmet Kartları */
    .services-grid-detailed {
        grid-template-columns: 1fr; /* Tek sütun yap */
    }

    /* Google Yorumlar */
    .review-grid {
        grid-template-columns: 1fr;
    }
    
    /* Sticky Bar'ın altında içerik kalmasın diye body'e padding verilebilir */
    body {
        padding-bottom: 60px;
    }
}

/* --- CANLI INSTAGRAM BÖLÜMÜ --- */
.instagram-section {
    background-color: #000;
    padding: 60px 0;
    border-top: 1px solid #222;
}

.insta-subtitle {
    color: #999;
    margin-bottom: 20px;
    font-size: 1rem;
}

.insta-link {
    display: inline-block;
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.insta-link:hover {
    color: white;
}

/* Widget Kutusu */
.instagram-widget-box {
    width: 100%;
    min-height: 300px;
    background: #0a0a0a; /* Yüklenene kadar görünecek zemin */
}