/* === GENEL AYARLAR === */
:root {
    --primary-color: #004a99; /* Profesyonel Mavi */
    --secondary-color: #f4f7f6; /* Çok Açık Gri Arka Plan */
    --dark-color: #333;
    --light-color: #fff;
    --grey-text: #666;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth; /* Sayfa içi linklere yumuşak kaydırma */
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}

h2.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.content-section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #003366;
    border-color: #003366;
    transform: translateY(-2px);
}

/* === HEADER / NAVBAR === */
.navbar {
    background-color: var(--secondary-color); /* Rengi bir tık koyu yaptık */
    padding: 8px 0; /* Üst ve alt boşluğu daralttık */
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* LOGO VE YAZIYI TAM SOLA KAYDIRMAK İÇİN BU KURALI EKLEYİN */
    padding-left: 0; 
}

.logo {
    display: flex; /* Resmi ve yazıyı yan yana hizalar */
    align-items: center; /* Dikey olarak ortalar */
    text-decoration: none; /* Link alt çizgisini kaldırır */
    gap: 5px; /* Resim ile yazı arasına 10px boşluk koyar */
}
.logo img {
    height: 80px; 
    width: auto;
}
.logo span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem; /* Yazı boyutu */
    font-weight: 500; /* Yazı kalınlığı */
    color: var(--primary-color); /* Ana mavi renk */
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

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

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* === HERO BÖLÜMÜ === */
.hero {
    height: 90vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://firmarehberajansi.com/img/information_items_1991.jpg');
    
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    padding: 0 20px;background-size: contain;   /* Görselin tamamının görünmesini sağlar */
    background-repeat: no-repeat; /* EN ÖNEMLİSİ: Tekrar etmesini engeller *//* GÖRSELİN TÜM ALANI KAPLAMASI İÇİN BU AYAR ÇOK ÖNEMLİ: */
    background-size: cover;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* === HAKKIMIZDA BÖLÜMÜ === */
#about {
    background-color: var(--secondary-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.about-text ul {
    list-style: none;
    margin-top: 20px;
}

.about-text ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.about-text ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* === HİZMETLER BÖLÜMÜ === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light-color);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--grey-text);
}

/* === GALERİ BÖLÜMÜ === */
#gallery {
    background-color: var(--secondary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

/* === İLETİŞİM BÖLÜMÜ === */
.contact-content {
    display: flex;
    gap: 40px;
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form {
    flex: 2;
}

.contact-info {
    flex: 1;
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
}



.contact-info h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 15px;
    color: var(--grey-text);
}

.contact-info p i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.map-placeholder {
    height: 150px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--grey-text);
    margin-top: 20px;
}

/* === FOOTER === */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 30px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    color: #ccc;
}

.social-links a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 1.2rem;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* === ANİMASYONLAR === */
.fade-in {
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE (MOBİL) TASARIM === */
@media (max-width: 768px) {/* ==================================== */

    .nav-menu {
        position: fixed;
        top: 80px; /* Navbar yüksekliği kadar */
        right: 0;
        height: calc(100vh - 80px);
        width: 60%;
        background: var(--light-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .burger {
        display: block;
    }
    
    /* Hamburger Menü JS Sınıfı */
    .nav-active {
        transform: translateX(0%);
    }

    /* Hamburger ikon animasyonu */
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .toggle .line2 {
        opacity: 0;
    }
    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Diğer bölüm ayarları */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content, .contact-content {
        flex-direction: column;
    }
    
    /* 💡 MOBİL LOKASYON/HARİTA TAŞMA DÜZELTMESİ EKLENDİ */
    .contact-form,
    .contact-info {
        width: 100%; /* İçeriklerin taşma yerine tam genişlik kaplamasını sağlar */
        box-sizing: border-box;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    h2.section-title {
        font-size: 2rem;
    }
}@media (max-width: 768px) {
    /* ... (Mevcut Mobil Kurallarınız) ... */

    /* 💡 HARİTA TAŞMASI DÜZELTMESİ */
    .map-placeholder iframe {
        width: 100% !important; /* Genişliği kapsayıcının %100'üne ayarlar */
        max-width: 100% !important; /* Taşmayı engeller */
        height: 300px; /* Mobil için uygun bir yükseklik */
    }

    /* ... (Diğer Mobil Kurallarınız) ... */
}/* === YENİ İLETİŞİM BİLGİLERİ DÜZENLEMESİ === */

/* Detayların hizalanması */
.contact-info .detail-item {
    display: flex; /* İkon ve metni yan yana hizalar */
    align-items: flex-start; 
    margin-bottom: 15px;
}

/* Metin ve link stilleri */
.contact-info .detail-item p,
.contact-info .detail-item a {
    margin: 0; 
    color: var(--dark-color); /* Metin rengini daha okunaklı yapar */
    text-decoration: none; 
    transition: color 0.3s ease;
}

.contact-info .detail-item a:hover {
    color: var(--primary-color);
}

/* İkon stilleri */
.contact-info .detail-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 25px; 
    text-align: center;
    padding-top: 2px;
}

/* Instagram Kutusu Stili */
.social-link-box {
    margin-top: 30px; 
    margin-bottom: 30px;
    text-align: center;
}

/* Instagram Butonu Stili (Instagram'ın kendi renklerini kullanarak şık bir gradient) */
.instagram-btn {
    display: inline-block;
    /* Instagram Gradient renkleri */
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: var(--light-color);
    padding: 12px 30px;
    border-radius: 8px; /* Köşeleri yuvarlama */
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.instagram-btn i {
    margin-right: 10px;
}

/* Harita Taşıma ve Şekil Düzeltmesi (Daha önceki sorun için kesin çözüm) */
.map-container iframe {
    width: 100% !important; 
    max-width: 100% !important;
    height: 300px; /* Sabit yükseklik */
    border-radius: 8px; 
    margin-top: 20px;
}