/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
}

.text-orange {
    color: #ff9800;
}

/* Header Tasarımı */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #111;
}

.logo img {
    height: 100px;
    width: 100px;
}

.navbar {
    display: flex;
    gap: 40px;
}

.navbar a {
    font-size: 18px;
    text-decoration: none;
    color: #444;
    font-weight: 600;
    transition: color 0.3s;
}

.navbar a:hover, .navbar a.active {
    color: #ff9800;
}
.header-right-group{
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-icon {
    background: #ff9800;
    color: white;
    padding: 10px;
    border-radius: 50%;
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.phone-number {
    font-weight: bold;
    font-size: 1.1rem;
    color: #111;
}

.phone-text {
    font-size: 0.8rem;
    color: #777;
}
.hamburger-btn{
    display: none;
    font-size: 1.4rem;
    color: #333;
    cursor: pointer;
    background: #f1f1f1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.hamburger-btn:hover{
    background: #e2e2e2;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.mobile-menu.active {
    max-height: 300px;
}

.mobile-menu a {
    padding: 15px 25px;
    text-decoration: none;
    color: #444;
    font-weight: 600;
    border-bottom: 1px solid #f8f9fa;
}

.mobile-menu a:hover {
    color: #ff9800;
    background: #fff9f0;
}
/* Hero Alanı */
.hero {
    position: relative;
    padding: 225px 0 265px 0;
    color: #fff;
    text-align: left;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ddd;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-orange {
    background-color: #ff9800;
    color: #fff;
}

.btn-dark {
    background-color: #25D366;
    color: #fff;
}

/* Özellik Şeridi */
.hero-features {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
}

.features-grid {
    background: #fff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.feature-item {
    padding: 20px;
    text-align: center;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-right: 1px solid #eee;
}

.feature-item:last-child {
    border-right: none;
}

.feature-item i {
    color: #ff9800;
    font-size: 1.3rem;
}
/* ==========================================
   MOBİL VE TABLET UYUMLULUK KODLARI (RESPONSIVE)
   ========================================== */

/* 992 piksel altı ekranlar (Tabletler) */
@media (max-width: 992px) {
    .hero {
        padding: 150px 0 200px 0;
    }
    .hero-content h1 {
        font-size: 2.3rem;
    }
    .navbar {
        display: none; /* Mobilde üst menüyü gizler */
    }
}

/* 768 piksel altı ekranlar (Cep Telefonları) için Güncel Kodlar */
@media (max-width: 768px) {
    /* Header Alanı */
    .header-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        gap: 5px;
    }
    
    /* Logoyu ve yazıyı mobilde yan yana tutuyoruz */
    .logo {
        display: flex;
        align-items: center;
        font-size: 1rem;
        gap: 6px;
    }
    .logo img {
        height: 55px;
        width: 55px;
    }
    
    .header-phone {
        display: flex;
        align-items: center;
        gap: 6px;
        background: #fff9f0;
        padding: 6px 10px; 
        border-radius: 6px;
        border: 1px solid #ffe0b2;
    }
    .phone-icon{
        padding: 6px;
        font-size: 0.85rem;
    }
    .phone-number {
        font-size: 0.9rem;
    }
    .navbar {
        display: none !important;
    }
    .hamburger-btn {
        display: flex;
    }
    .mobile-menu {
        display: flex;
    }
    /* Hero Alanı */
    .hero {
        padding: 155px 0 225px 0;
        text-align: center;
    }
    .hero-content{
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.25;
        margin-bottom: 12px;
    }
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    .btn {
        width: auto;
        min-width: 240px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Özellik Şeridini 2'şerli Yan Yana Grid Yapıyoruz */
    .hero-features {
        position: relative;
        bottom: auto;
        margin-top: 20px;
        padding: 0 10px;
    }
    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important; /* Kesin olarak 2 sütun yapar */
        background: #eee;
        gap: 1px;
    }
    .feature-item {
        background: #fff;
        padding: 12px 6px;
        font-size: 0.75rem;
        justify-content: center;
        gap: 6px;
        border-right: none;
        border-bottom: 1PX solid #eee;
    }
    .feature-item i {
        font-size: 1rem;
    }
}
/* Hizmetler Bölümü */
.services-section {
    padding: 100px 0 60px 0;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-wrapper span {
    color: #ff9800;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 2rem;
}

.section-title-wrapper h2 {
    font-size: 2.5rem;
    color: #111;
    margin-top: 5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-icon {
    position: absolute;
    top: 275px;
    right: 25px;
    background: #ff9800;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.service-body {
    padding: 25px;
}

.service-body h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #111;
}

.service-body p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}
/* Neden Biz Bölümü */
.why-us-section {
    background: #fff;
    padding: 80px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.why-us-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}
.why-us-content .subtitle{
    color: orange;
    font-size: 1.6rem;
}
.why-us-content h2 {
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 15px;
}

.why-us-content > p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.why-item i {
    color: #ff9800;
    font-size: 1.2rem;
    background: #fff9f0;
    padding: 10px;
    border-radius: 6px;
}
.legal-dump-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff9f0;
    border: 1px solid #ffe0b2;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 25px;
}

.legal-dump-notice .notice-icon {
    background: #ff9800;
    color: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.legal-dump-notice .notice-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

.legal-dump-notice .notice-text strong {
    color: #d87d00;
    display: inline-block;
    margin-bottom: 2px;
}
.why-us-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
/* Harita ve Bölge Bölümü */
.map-section {
    padding: 80px 0;
}

.map-container-box {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    align-items: center;
}

.map-mockup {
    background: #f0f2f5;
    border: 3px dashed #ddd;
    border-radius: 10px;
    height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    gap: 10px;
}

.map-mockup img {
    width: 560px;
    height: 600px;
    font-size: 3rem;
    color: #ff9800;
}
.map-right .subtitle{
    color: orange;
    font-size: 1.3rem;
}
.map-right h2 {
    font-size: 2rem;
    color: #111;
    margin-bottom: 15px;
}

.map-right p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.districts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.district-tag {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.88rem;
    color: #444;
    font-weight: 500;
}

.district-tag.more {
    background: #fff9f0;
    border-color: #ffe0b2;
    color: #ff9800;
}
/* ==========================================
   HARİTA VE BÖLGE BÖLÜMÜ MOBİL DÜZENLEMESİ
   ========================================== */

@media (max-width: 768px) {
    .map-section {
        padding: 40px 0;
    }

    /* Masaüstündeki yan yana grid yapısını mobilde alt alta çeviriyoruz */
    .map-container-box {
        display: flex;
        flex-direction: column; /* Önce harita, sonra yazı ve ilçeler alt alta dizilir */
        padding: 20px 15px;
        gap: 25px;
    }

    /* Harita kutusunun mobilde yüksekliğini ve görsel taşmasını düzeltiyoruz */
    .map-mockup {
        height: 240px; /* Mobilde ideal harita yüksekliği */
        width: 100%;
        overflow: hidden;
        position: relative;
        background: #f0f2f5;
        border-radius: 8px;
    }

    /* Mobilde taşmaya sebep olan img ayarını sıfırlıyoruz (çünkü arkaplan resmi kullanıyoruz) */
    .map-mockup img {
        display: block; /* Eğer arka plan harita resmi kullandıysanız img'i gizleyebiliriz, doğrudan arkaplana oturur */
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Sağ taraftaki yazı ve alt başlık alanını mobilde ortalıyor veya düzgün hizalıyoruz */
    .map-right {
        text-align: left; /* Dilersen center yapıp ortalayabilirsin */
    }

    .map-right .subtitle {
        font-size: 1rem;
    }

    .map-right h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .map-right p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    /* İlçe etiketlerini mobilde daha kompakt ve düzenli hale getiriyoruz */
    .districts-grid {
        gap: 8px;
    }

    .district-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}
/* Turuncu Çağrı Bandı (CTA) */
.cta-banner {
    background: #ff9800;
    padding: 40px 0;
    color: #fff;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.cta-text p {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn-white {
    background: #fff;
    color: #ff9800;
}

.btn-white:hover {
    background: #f1f1f1;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
    /* (Mevcut mobil kodların burada kalmaya devam ediyor...) */

    /* --- TURUNCU ÇAĞRI ŞERİDİ (CTA) MOBİL DÜZENİ --- */
    .cta-banner {
        padding: 30px 15px; /* Mobilde üstten alttan boşluğu ideal yaptık */
        text-align: center;
    }

    .cta-container {
        display: flex;
        flex-direction: column; /* Yazılar üstte, butonlar altta alt alta dizilir */
        align-items: center;
        gap: 20px;
    }

    .cta-text h3 {
        font-size: 1.3rem; /* Telefondan taşmaması için başlığı küçülttük */
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .cta-text p {
        font-size: 0.85rem;
    }

    /* Butonları mobilde alt alta ve tam ortada topluyoruz */
    .cta-buttons {
        display: flex;
        flex-direction: column; /* Alt alta dizilim */
        width: 100%;
        max-width: 280px; /* Butonların aşırı yayılmasını engeller */
        gap: 10px;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    /* WhatsApp butonunu mobilde turuncu üstünde net okunması için tamamen yeşil veya beyaz yapabiliriz */
    .cta-buttons .btn-outline {
        background: #25D366; /* WhatsApp yeşili */
        border: 2px solid #25D366;
        color: #fff;
    }
}
/* Footer Alanı */
.footer {
    background: #111;
    color: #fff;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1fr 1.2fr;
    gap: 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid #222;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: #ff9800;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-col p {
    color: #aaa;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo span {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: linear-gradient(45deg, #fdf497 0%, #fd5949 25%, #d6249f 50%, #285AEB 100%);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    font-size: 0.92rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ff9800;
}

.footer-bottom {
    background: #0a0a0a;
    padding: 20px 0;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.88rem;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a {
    color: #888;
    text-decoration: none;
}

.bottom-links a:hover {
    color: #fff;
}

/* Responsive Uyumluluk */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-us-container, .map-container-box, .footer-grid {
        grid-template-columns: 1fr;
    }
    .navbar {
        display: none;
    }
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.1rem;
    }
    .features-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    .hero-features {
        position: relative;
        bottom: auto;
        margin-top: 40px;
    }
    .bottom-flex {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        font-size: 0.8rem;
    }
}
@media (max-width: 768px) {
    /* --- FOOTER (ALT BİLGİ) MOBİL DÜZENİ --- */
    .footer {
        padding-top: 40px;
    }

    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding-bottom: 30px;
        text-align: center; /* Mobilde her şeyi ortalıyoruz ki daha şık ve dengeli dursun */
    }

    /* Logoyu mobilde ortada gösteriyoruz */
    .footer-col .footer-logo {
        justify-content: center;
    }

    /* Sosyal medya ikonunu ortalayalım */
    .social-icons {
        justify-content: center;
    }

    /* Footer başlıklarının altındaki çizgileri veya boşlukları dengeliyoruz */
    .footer-col h4 {
        margin-bottom: 12px;
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .footer-col p, 
    .footer-col ul li a {
        font-size: 0.88rem;
    }

    .footer-col ul li {
        margin-bottom: 8px;
    }

    /* İletişim ikonları ile yazıları yan yana ve ortalı tutmak için */
    .footer-col p {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    .bottom-links {
        justify-content: center;
        gap: 15px;
    }
}