html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Genel Ayarlar */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* 'ları buradan kaldır, sitenin kendi ayarları çalışsın */

:root {
    --ana-kirmizi: #d32f2f;
    --koyu-gri: #212121;
    --acik-gri: #f5f5f5;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex ; /* Buraya  ekledik */
    justify-content: space-between ;
    align-items: center ;
}

.vurgu-kirmizi {
    color: #e53935 ;
}

.logo img {
    height: 70px;
    object-fit: contain;
}

nav a {
    text-decoration: none;
    color: #ffffff ; /* Yazıları beyaz yaptık */
    margin-left: 20px;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: var(--ana-kirmizi);
}

.nav-call-btn {
    background-color: var(--ana-kirmizi);
    color: #fff ;
    padding: 10px 20px;
    border-radius: 5px;
}

.nav-call-btn:hover {
    background-color: #b71c1c;
}

/* Giriş Alanı (Hero) */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/arka-plan.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 10px;
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-call {
    background-color: var(--ana-kirmizi);
    color: #fff;
}

.btn-call:hover {
    background-color: #b71c1c;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
}

/* Sabit WhatsApp Butonu */
.whatsapp-fixed {
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
}

/* Mobil Uyum (Responsive) */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 15px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    nav a {
        margin-left: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
    }
}

/* Hizmetlerimiz Alanı Tasarımı */
.services {
    padding: 60px 0;
    background-color: var(--acik-gri);
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--koyu-gri);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: var(--ana-kirmizi);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: #666;
    margin-top: 20px;
    margin-bottom: 40px;
}

.services-container {
    display: flex;
    flex-wrap: wrap; /* Sığmayan kutuyu alta atar */
    justify-content: center; /* Ortalar */
    gap: 20px; /* Kutular arası boşluk */
}

.service-box {
    width: 300px; /* Hepsinin genişliğini eşitler */
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-box i {
    font-size: 3rem;
    color: var(--ana-kirmizi);
    margin-bottom: 20px;
}

.service-box h3 {
    margin-bottom: 15px;
    color: var(--koyu-gri);
}

.service-box p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* İletişim Alanı Tasarımı */
.contact {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.info-item {
    flex: 1;
    min-width: 220px;
    background-color: var(--acik-gri);
    padding: 30px 20px;
    border-radius: 8px;
    transition: 0.3s;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 2.2rem;
    color: var(--ana-kirmizi);
    margin-bottom: 15px;
}

.info-item h3 {
    color: var(--koyu-gri);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-item p a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: 0.3s;
}

.info-item p a:hover {
    color: var(--ana-kirmizi);
}

/* Footer Tasarımı */
footer {
    background-color: var(--koyu-gri);
    color: #bbb;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 3px solid var(--ana-kirmizi);
}

.footer-content p {
    margin: 5px 0;
}

/* İletişim için Mobil Uyum */
@media (max-width: 600px) {
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
}

/* Gelişmiş Hover ve Parlama Efektleri */
.service-box {
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-box:hover i {
    transform: scale(1.1);
    transition: 0.3s ease;
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-call-btn:hover {
    background-color: #fff ;
    color: var(--ana-kirmizi) ;
    border: 1px solid var(--ana-kirmizi);
}

/* Yazı Vurgu Rengi */
.vurgu {
    color: var(--ana-kirmizi);
}

/* Hizmet Kutuları İçin Gelişmiş Efektler */
.service-box {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.15);
    /* Hafif kırmızımsı kurumsal gölge */
    border-color: var(--ana-kirmizi);
}

.service-box i {
    transition: transform 0.3s ease;
}

.service-box:hover i {
    transform: scale(1.15);
    /* Fareyle gelince ikon hafifçe büyür */
}

/* Buton Parlama Geçişi */
.btn {
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
    /* Hafifçe parlar */
}

/* Hakkımızda Bölümü Tasarımı */
.about {
    padding: 100px 0;
    background-color: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Başlığı, çizgiyi ve her şeyi yatayda ortalar */
    text-align: center;
    /* Paragrafları ortalar */
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--koyu-gri);
    margin: 20px 0;
    line-height: 1.3;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
    max-width: 800px;
    /* Yazının çok genişleyip göz yormasını engeller */
}

.about-stats {
    display: flex;
    gap: 60px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    justify-content: center;
    /* Sayıları tam ortalar */
    width: 100%;
    max-width: 400px;
}

.stat-item h3 {
    color: var(--ana-kirmizi);
    font-size: 2.2rem;
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-item p {
    font-weight: 600;
    color: var(--koyu-gri);
    margin-bottom: 0;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.image-frame {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--ana-kirmizi);
    border-radius: 10px;
    z-index: 1;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-image {
        margin-top: 40px;
    }
}

/* Adventure Moto Esintili Bütçe Bölümü - Kurumsal Kırmızı Revizesi */
.budget-solutions {
    padding: 60px 20px;
    background-color: #fff;
}

.container-budget {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.sub-title {
    color: var(--ana-kirmizi);
    /* Turuncu yerine kurumsal kırmızı */
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.budget-solutions h2 {
    font-size: 2.2rem;
    color: var(--koyu-gri);
    font-weight: 800;
    margin-bottom: 15px;
}

.accent-line {
    width: 60px;
    height: 4px;
    background-color: var(--ana-kirmizi);
    /* Çizgi kırmızı oldu */
    margin-bottom: 30px;
    border-radius: 2px;
}

.budget-desc {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Küçük İkonlu Liste */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #f5f5f5;
}

.feature-icon i {
    color: var(--ana-kirmizi);
    /* İkonlar kırmızı oldu */
    font-size: 1.3rem;
}

.feature-info h4 {
    font-size: 1.1rem;
    color: var(--koyu-gri);
    margin-bottom: 3px;
    font-weight: 700;
}

.feature-info p {
    color: #777;
    font-size: 0.95rem;
    margin: 0;
}

/* Yuvarlatılmış Büyük Butonlar */
.budget-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
}

.btn-budget {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-dark-pro {
    background-color: var(--koyu-gri);
    color: #fff;
}

.btn-dark-pro:hover {
    background-color: var(--ana-kirmizi);
    /* Üzerine gelince kırmızı parlama */
    transform: translateY(-2px);
}

.btn-whatsapp-pro {
    background-color: #fff;
    color: #128c7e;
    border: 2px solid #128c7e;
}

.btn-whatsapp-pro:hover {
    background-color: #128c7e;
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================================
   FAYDALI BİLGİLER MODERN KART TASARIMI
========================================== */
.useful-blog {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.useful-blog .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.useful-blog .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.useful-blog .section-title h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.useful-blog .title-line {
    width: 60px;
    height: 3px;
    background-color: #fe1c03;
    /* Logonun kırmızı tonu */
    margin: 10px auto 0;
}

/* Yan yana hizalama ve boşluklar */
.useful-blog .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Beyaz kutu, yuvarlatılmış köşeler ve gölge (Resimdeki Stil) */
.useful-blog .blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.useful-blog .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Fotoğraf Alanı Sabitleme */
.useful-blog .blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.useful-blog .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Resmi ezmeden kutuya tam sığdırır */
}

/* Yazı Alanı İç Boşlukları */
.useful-blog .blog-content {
    padding: 25px;
}

.useful-blog .blog-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.useful-blog .blog-content p {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ==========================================
   FAYDALI BİLGİLER KIRMIZI TEMA DÜZENLEMESİ
========================================== */

/* Başlıktaki vurgu rengini kırmızı yapıyoruz */
.useful-blog .section-title h2 .vurgu {
    color: #d32f2f ;
    /* Kurumsal kırmızı */
}

/* Başlığın altındaki çizgi rengi */
.useful-blog .title-line {
    width: 60px;
    height: 3px;
    background-color: #d32f2f ;
    /* Kırmızı çizgi */
    margin: 10px auto 0 auto ;
}

/* Devamını Oku butonunu ve ok işaretini kırmızı yapıyoruz */
.useful-blog .read-more {
    display: inline-flex;
    align-items: center;
    color: #d32f2f ;
    /* Yazı rengi kırmızı */
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

/* Üzerine gelindiğinde kırmızı tonunun biraz daha koyulaşması için */
.useful-blog .read-more:hover {
    color: #b71c1c ;
}

.useful-blog .read-more i {
    margin-left: 8px;
    color: #d32f2f ;
    /* Ok işareti kırmızı */
    transition: transform 0.2s ease;
}

.useful-blog .read-more:hover i {
    transform: translateX(5px);
    color: #b71c1c ;
}

/* Başlığı yana fırlatan flex düzenini bu bölüm için kırıyoruz */
.useful-blog .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: block ;
    /* Flex'i iptal edip elemanları alt alta dizer */
    width: 100%;
}

/* Başlığı tam genişlik yapıp en üstte ortalıyoruz */
.useful-blog .section-title {
    width: 100%;
    text-align: center ;
    margin-bottom: 40px;
    clear: both;
}

.useful-blog .section-title h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    display: block;
    text-align: center;
}

/* Altındaki kırmızı çizgi tam ortaya gelsin */
.useful-blog .title-line {
    width: 60px;
    height: 3px;
    background-color: #e74c3c;
    margin: 10px auto 0 auto ;
    /* Sağından solundan otomatik boşlukla ortalar */
}

/* ==========================================
   BİZE ULAŞIN MODERN KOYU GRİ & KIRMIZI KONSEPT
========================================== */
.modern-contact {
    padding: 60px 0;
    background-color: #f4f6f7;
    width: 100%;
    display: block ;
}

.container-contact {
    max-width: 500px;
    /* Telefondaki gibi derli toplu durması için */
    margin: 0 auto;
    padding: 0 20px;
}

/* Koyu Gri Kart */
.contact-dark-card {
    background-color: #1e2229;
    /* Fotoğraftaki orijinal koyu gri */
    border-radius: 24px;
    /* Yuvarlatılmış modern köşeler */
    padding: 40px 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 25px;
}

.contact-dark-card h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.contact-dark-card .vurgu-kirmizi {
    color: var(--ana-kirmizi);
    /* Turuncu yerine asil kırmızı */
}

/* Başlık Altındaki Çizgi */
.contact-line {
    width: 50px;
    height: 4px;
    background-color: var(--ana-kirmizi);
    margin-bottom: 25px;
    border-radius: 2px;
}

.contact-desc {
    color: #a0a5b0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* İletişim Satırları */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Yuvarlak İkon Alanı (İçi Kırmızı Detaylı) */
.method-icon {
    width: 55px;
    height: 55px;
    background-color: rgba(211, 47, 47, 0.15);
    /* Hafif şeffaf kırmızı arka plan */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    color: var(--ana-kirmizi);
    /* İkonlar kırmızı parlasın */
    font-size: 1.3rem;
}

.method-text span {
    display: block;
    color: #707580;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.method-text a,
.method-text p {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    margin: 0;
}

.method-text a:hover {
    color: var(--ana-kirmizi);
}

/* Google Harita Alanı Tasarımı */
.contact-map-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Haritalar'da Aç Butonu */
.map-overlay-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.map-overlay-btn a {
    background-color: #ffffff;
    color: #333333;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s;
}

.map-overlay-btn a:hover {
    background-color: #f5f5f5;
}

/* ==========================================
   SIKÇA SORULAN SORULAR (FAQ) KIRMIZI TASARIM
========================================== */
.faq-section {
    padding: 60px 20px;
    background-color: #fcfcfc;
    font-family: 'Poppins', sans-serif;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title h2 {
    font-size: 2rem;
    color: #222;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-title h2 .vurgu-kirmizi {
    color: #d32f2f;
    /* Tam istediğin kurumsal kırmızı */
}

.faq-title-line {
    width: 60px;
    height: 3px;
    background-color: #d32f2f;
    /* Kırmızı alt çizgi */
    margin: 12px auto;
}

.faq-title p {
    color: #666;
    font-size: 1rem;
}

.faq-wrapper {
    display: block;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #d32f2f;
    /* Sol taraftaki şık kırmızı şerit */
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.faq-question span {
    padding-right: 15px;
}

.faq-question i {
    color: #d32f2f;
    /* Ok işareti kırmızı */
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

/* Soru alanına tıklanıp açıldığında veya üzerine gelindiğinde */
.faq-item.active .faq-question,
.faq-question:hover {
    color: #d32f2f;
    /* Yazı kırmızıya döner */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    /* Ok yukarı döner */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================
   10'LU SSS (FAQ) KIRMIZI TASARIM KODLARI
========================================== */
.faq-section {
    padding: 60px 20px;
    background-color: #fcfcfc;
    font-family: 'Poppins', sans-serif;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title h2 {
    font-size: 2rem;
    color: #222;
    font-weight: 700;
    text-transform: uppercase;
}

.faq-title h2 .vurgu-kirmizi {
    color: #d32f2f ;
    /* Kurumsal Kırmızı */
}

.faq-title-line {
    width: 60px;
    height: 3px;
    background-color: #d32f2f ;
    margin: 12px auto;
}

.faq-title p {
    color: #666;
    font-size: 1rem;
}

.faq-wrapper {
    display: block;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #d32f2f ;
    /* Sol taraftaki kırmızı çizgi */
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.faq-question span {
    padding-right: 15px;
}

.faq-question i {
    color: #d32f2f ;
    /* Ok işareti kırmızı */
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

/* Üzerine gelince veya soru açılınca kırmızı yap */
.faq-item.active .faq-question,
.faq-question:hover {
    color: #d32f2f ;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    /* Ok yukarı döner */
}

/* Cevap Alanının Açılma Animasyonu */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #ffffff;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================
   SOSYAL MEDYA İKONLARI TAM ORTALAMA VE STİL
========================================== */
.social-media-container {
    width: 100%;
    text-align: center ;
    /* Başlığı ortalar */
    margin: 40px auto 20px auto;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
    display: block ;
}

.social-media-container h3 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-media-container h3 .vurgu-kirmizi {
    color: #d32f2f ;
}

/* İkonları kapsayan kutuyu tam ortalama */
.social-icons {
    display: block ;
    /* Blok seviyesine çekiyoruz */
    text-align: center ;
    /* İçindeki inline-block elemanları ortalar */
    margin: 0 auto;
    padding: 0;
}

/* İkonların tek tek şık yuvarlak görünümü */
.social-icon {
    display: inline-flex ;
    /* Yan yana ve esnek gelmesi için */
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    color: #333 ;
    border-radius: 50% ;
    /* Yuvarlak yapar */
    font-size: 1.4rem;
    margin: 0 10px ;
    /* İkonların arasındaki boşluk */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

/* Üzerine gelince (Hover) Efektleri */
.social-icon:hover {
    transform: translateY(-5px);
    color: #ffffff ;
}

.social-icon.fb:hover {
    background-color: #d32f2f;
    /* Üzerine gelince kurumsal kırmızı */
}

.social-icon.ig:hover {
    background-color: #d32f2f;
    /* Üzerine gelince kurumsal kırmızı */
}

.social-icon.wa:hover {
    background-color: #25d366;
    /* WhatsApp yeşili */
}

/* ==========================================
   MOBİL UYUMLU HAMBURGER MENÜ VE NAVİGASYON
========================================== */

.hamburger-menu {
    display: none; /* Varsayılan olarak gizli */
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 45px;
    height: 40px;
    cursor: pointer;
    z-index: 9999 !important; /* En üstte tut */
    background: transparent;
}

/* Sadece mobil cihazlarda zorla göster */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex !important; 
        position: absolute; /* Header içinde sağa sabitlemek için */
        right: 15px;        /* Sağdan boşluk */
        top: 15px;          /* Üstten boşluk */
    }
}

/* Çizgileri görünür yap */
.hamburger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white !important; /* Rengi beyaz yap */
}

/* ==========================================
   MOBİL TELEFON EKRANLARI İÇİN (MAX-WIDTH: 768px)
========================================== */
@media screen and (max-width: 768px) {

    /* Mobilde üç çizgi butonunu görünür yapıyoruz */
    .hamburger-menu {
        display: flex;
    }

    /* Menü ilk başta kapalı durur ve yukarıdan aşağı açılacak şekilde konumlanır */
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        /* Header yüksekliğinize göre burayı değiştirebilirsiniz */
        left: 0;
        width: 100%;
        background-color: #1a1a1a;
        /* İstediğin o koyu arka plan rengi */
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        z-index: 1000;
    }

    /* JS ile 'aktif' klası gelince menü aşağı doğru açılır */
    .nav-menu.aktif {
        display: flex ;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    /* Üç çizgiye basılınca şık bir şekilde 'X' işaretine dönüşme efekti */
    .hamburger-menu.acik span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger-menu.acik span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.acik span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* Masaüstü menüsünü telefon ekranında tamamen gizle ki çakışmasınlar */
@media screen and (max-width: 768px) {
    nav:not(.nav-menu) {
        display: none ;
    }
}

/* ==========================================
   HAMBURGER MENÜ (ÜÇ ÇİZGİ) CSS AYARLARI
========================================== */

/* Bilgisayar ekranında üç çizgi gizli kalır */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Çevresindeki hafif beyaz kutu */
    padding: 8px;
    width: 40px;
    height: 38px;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    /* Sağ tarafa sabitle */
    top: 15px;
    /* Üstten ortala */
    z-index: 1001;
}

/* Üç çizginin görünmesini sağlayan çubuk tasarımları */
.hamburger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #ffffff;
    /* Çizgi rengi beyaz */
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==========================================
   TELEFON MODUNA GEÇİNCE ÇALIŞACAK KISIM (RESPONSIVE)
========================================== */
@media screen and (max-width: 768px) {

    /* Telefon modunda bilgisayar menüsündeki düz yazıları gizle */
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #111111;
        /* Koyu arka plan */
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }

    /* Üç çizgi butonunu telefon modunda görünür yap! */
    .hamburger-menu {
        display: flex ;
    }

    /* JavaScript tetiklenince menünün açılmasını sağlayan klas */
    .nav-menu.aktif {
        display: flex ;
    }

    /* Üç çizgiye basılınca 'X' işaretine dönme efekti */
    .hamburger-menu.acik span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger-menu.acik span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.acik span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ==========================================
   HAMBURGER MENÜSÜNÜN KESİN GÖRÜNME KODLARI
========================================== */
@media screen and (max-width: 768px) {

    /* Eski masaüstü menü linklerini gizle */
    nav:not(.nav-menu),
    .container>nav {
        display: none ;
    }

    /* Üç çizgi butonunu zorla görünür yap */
    .hamburger-menu {
        display: flex ;
        flex-direction: column ;
        justify-content: center ;
        gap: 5px ;
        background: #111111 ;
        /* Arka planı koyu gri */
        border: 1px solid rgba(255, 255, 255, 0.4) ;
        padding: 8px ;
        width: 42px ;
        height: 38px ;
        border-radius: 5px ;
        cursor: pointer ;
        position: absolute ;
        right: 20px ;
        /* Sağ üst köşeye sabitler */
        top: 15px ;
        z-index: 1001 ;
    }

    /* İçindeki 3 adet beyaz çizgiyi oluştur */
    .hamburger-menu span {
        display: block ;
        width: 24px ;
        height: 2.5px ;
        background-color: #ffffff ;
        /* Beyaz renk */
        border-radius: 2px ;
        transition: all 0.3s ease ;
    }

    /* Açılır menünün mobildeki tasarımı */
    .nav-menu {
        display: none;
        position: absolute ;
        top: 70px ;
        left: 0 ;
        width: 100% ;
        background-color: #1a1a1a ;
        padding: 20px ;
        flex-direction: column ;
        gap: 15px ;
        z-index: 1000 ;
    }

    /* JS tıklandığında menüyü açan klas */
    .nav-menu.aktif {
        display: flex ;
    }
}

/* ==========================================
   SIKÇA SORULAN SORULAR (S.S.S) STİLLERİ
========================================== */
.faq-section {
    padding: 60px 20px;
    background-color: #f9f9f9; /* Hafif açık gri arka plan */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #111111;
    font-weight: 700;
}

.faq-title .vurgu-kirmizi {
    color: #e53935; /* Logonla uyumlu kırmızı */
}

.faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 1px solid #eef0f2;
    transition: all 0.3s ease;
}

/* Soru tıklandığında hafif gölge efekti */
.faq-item.active {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-color: #e53935;
}

.faq-question {
    width: 100%;
    padding: 22px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222222;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fcfcfc;
}

/* Sağdaki ok simgesi */
.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: #e53935;
}

/* Cevap alanı (Varsayılan olarak kapalı) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fafafa;
}

.faq-answer p {
    padding: 0 20px 22px 20px;
    color: #555555;
    line-height: 1.6;
    font-size: 0.98rem;
    margin: 0;
}

/* Soru açıldığında okun yukarı dönmesi */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ==========================================
   HERO ALANI - 7/24 ACİL DESTEK ŞERİDİ (KIRMIZI)
========================================== */
.acil-destek-serit {
    display: inline-block;
    background-color: #cf0805; /* Örnekteki sarı yerine canlı kurumsal kırmızı */
    color: #ffffff; /* Kırmızı üzerinde net görünsün diye yazı rengi BEYAZ */
    font-weight: 700; /* Kalın yazı fontu */
    font-size: 0.95rem;
    padding: 8px 20px;
    border-radius: 6px; /* Hafif oval köşeler */
    text-transform: uppercase; /* Harfleri otomatik büyük yapar */
    margin-bottom: 20px; /* Alttaki büyük başlıkla arasına mesafe */
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3); /* Kırmızımsı şık bir gölge efekti */
    letter-spacing: 0.5px; /* Harf arası boşluk */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Çok hafif beyaz iç çizgi */
}

/* Mobilde yazı boyutunun taşmaması için ufak bir düzenleme */
@media (max-width: 480px) {
    .acil-destek-serit {
        font-size: 0.85rem;
        padding: 6px 15px;
        margin-bottom: 15px;
    }
}

/* ==========================================
   FAYDALI BİLGİLER ALTI - SAYFAYA TAM OTURAN SİSTEM
========================================== */
.ozel-hizmetler-section {
    padding: 60px 20px ;
    background-color: #ffffff ;
    display: block ;
    width: 100% ;
    box-sizing: border-box ;
}

.ozel-hizmetler-container {
    width: 100% ;
    max-width: 100% ; /* Yarılanmayı çözen anahtar ayar */
    margin: 0 auto ;
    text-align: center ;
    box-sizing: border-box ;
}

/* Üst Başlık */
.ozel-hizmetler-ust-baslik {
    color: #e53935 ;
    font-weight: 700 ;
    font-size: 0.95rem ;
    letter-spacing: 1.5px ;
    display: block ;
    margin-bottom: 8px ;
}

/* Ana Başlık */
.ozel-hizmetler-ana-baslik {
    font-size: 2.2rem ;
    color: #111111 ;
    font-weight: 800 ;
    margin: 0 ;
}

.ozel-hizmetler-ana-baslik .vurgu-kirmizi {
    color: #e53935 ;
}

/* Çift katlı kırmızı çizgi */
.ozel-baslik-cizgi {
    width: 60px ;
    height: 4px ;
    background-color: #e53935 ; 
    margin: 15px auto 40px auto ;
    border-radius: 2px ;
}

/* Kapsayıcı Liste Düzeni (Tüm genişliği kaplar) */
.ozel-hizmetler-liste {
    display: flex ;
    flex-direction: column ;
    align-items: flex-start ;
    text-align: left ;
    width: 100% ;
    padding: 0 ;
    margin: 0 ;
    box-sizing: border-box ;
}

/* Her Bir Hizmet Satırı (Ekrana tam yayılır) */
.ozel-hizmet-kart {
    display: flex ;
    flex-direction: row ;
    align-items: flex-start ;
    justify-content: flex-start ;
    text-align: left ;
    background: transparent ;
    padding: 20px 0 ;
    margin: 0 ;
    width: 100% ; /* Sağa kadar tam uzanmasını sağlar */
    box-sizing: border-box ;
    
    /* Çizgiler yok */
    border: none ;
    border-bottom: none ; 
    box-shadow: none ;
}

/* Sol Taraftaki Kırmızı İkonlar */
.ozel-hizmet-ikon {
    display: flex ;
    align-items: center ;
    justify-content: center ;
    width: 35px ;
    height: auto ;
    background-color: transparent ;
    border: none ;
    margin-right: 15px ;
    margin-top: 4px ;
    flex-shrink: 0 ;
}

.ozel-hizmet-ikon i {
    font-size: 1.6rem ;
    color: #e53935 ;
}

/* Sağ Taraftaki Yazı Alanı */
.ozel-hizmet-icerik {
    display: flex ;
    flex-direction: column ;
    align-items: flex-start ;
    text-align: left ;
    flex: 1 ;
    width: 100% ;
}

.ozel-hizmet-icerik h3 {
    font-size: 1.2rem ;
    color: #111111 ;
    margin: 0 0 4px 0 ;
    font-weight: 700 ;
    text-align: left ;
}

.ozel-hizmet-icerik p {
    font-size: 0.95rem ;
    color: #555555 ;
    line-height: 1.5 ;
    margin: 0 ;
    text-align: left ;
}

/* ==========================================
   MOBİL AYARI (Ekran daraldığında taşmayı önler)
========================================== */
@media (max-width: 768px) {
    .ozel-hizmetler-section {
        padding: 40px 15px ;
    }
    .ozel-hizmetler-ana-baslik {
        font-size: 1.6rem ;
    }
    .ozel-hizmet-kart {
        padding: 15px 0 ;
    }
}

/* Header ve arka plan ayarı */
.main-header {
    background-color: #333333 ;
    width: 100% ;
    position: sticky ;
    top: 0 ;
    z-index: 9999 ;
}

/* Mobilde ekran taşmasın diye */
@media (max-width: 768px) {
    .header-container { padding: 10px 15px ; }
    .logo-text { font-size: 1rem ; }
}

/* Logo boyutunu sabitle */
.logo img {
    height: 50px ;  /* Yüksekliği 50px ile sınırladık */
    width: auto ;   /* Eni orantılı olsun */
    display: block ;
}

/* 2. Logonun devasa olmasını engelleyip şeride sığdırır */
.logo img {
    height: 50px ; /* Logo boyutu burada belirleniyor */
    width: auto ;
    display: block ;
}

/* Ana Header Düzeni */
#ana-header {
    background-color: #212121;
    display: flex;
    justify-content: space-between; /* Logonun sola, menünün sağa yaslanmasını sağlar */
    align-items: center;            /* Dikeyde ortalar */
    padding: 10px 40px;             /* Yanlardan boşluk bırakır */
    width: 100%;
}

/* Logo Boyutu ve Hizalaması */
.logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-group img {
    height: 50px;
    width: auto;
}

/* Menü Hizalaması */
.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* FTM MOTO TRANSFER yazısı */
.logo-text {
    color: white ;
    font-size: 1.2rem ;
    font-weight: 700 ;
    text-transform: uppercase ;
    white-space: nowrap ;
}

/* Butonun genel yapısı */
.navbar-toggle {
    display: none; /* Masaüstünde gizle */
    cursor: pointer;
    padding: 10px;
}

/* Üç çizginin görünümü */
.navbar-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.4s;
}

/* Sadece mobil cihazlarda göster */
@media (max-width: 768px) {
    .navbar-toggle {
        display: block;
    }
}

/* 2. Sadece telefon ekranlarında (768px altı) üç çizgiyi göster */
@media (max-width: 768px) {
    .navbar-toggle {
        display: block ;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .navbar-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px 0;
        background-color: white;
    }
    
    /* İsteğe bağlı: Telefonda menü linklerini gizle (hamburger çıkınca açılmasını istersen) */
    .nav-menu {
        display: none; 
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none ; /* Kapalıyken gizle */
        flex-direction: column;
        width: 100%;
        background-color: #212121;
        position: absolute;
        top: 70px;
        left: 0;
    }

    .nav-menu.active {
        display: flex ; /* Tıklandığında göster */
    }
}

.hizmet-kart i {
    font-size: 30px; /* İkon boyutunu ayarla */
    color: #cc0000;  /* Kırmızı renk (senin teman) */
    display: inline-block;
    vertical-align: middle;
}

/* Genel Kart Ayarları */
.hizmet-kart {
    width: 30%; /* Kartların yan yana 3 tane sığması için (diğerleri de böyle olmalı) */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-sizing: border-box; /* Padding'in genişliği bozmaması için */
}

/* Hizmetler Bölümü - Tüm kartları aynı boyuta getirir */
.hizmetler-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.hizmet-kart {
    width: 250px;           /* Sabit genişlik: Hepsi aynı boyda olur */
    min-height: 250px;      /* Sabit yükseklik */
    padding: 20px;
    background: #ffffff;    /* Beyaz arka plan */
    border-radius: 10px;
    text-align: center;
    border: 1px solid #ffffff; /* İnce çerçeve */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Mobil cihazlarda (ekran 768px ve altındaysa) butonu görünür yap */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex !important; /* "none" yerine "flex" yapıyoruz */
    }
}

/* --- ASILI DAİRELİ BUTONLAR TASARIMI (Tam İstediğin Gibi) --- */

.asili-butonlar-konteyner {
    position: fixed;
    bottom: 25px;   /* Ekranın en altından ne kadar yukarıda duracak (2. fotodaki gibi) */
    left: 20px;     /* Soldan boşluk */
    right: 20px;    /* Sağdan boşluk */
    display: flex;
    justify-content: space-between; /* Butonları köşelere iter */
    align-items: flex-end; /* Etiketleri ikonun yanına hizalar */
    z-index: 99999; /* Diğer her şeyin üzerinde durmasını garanti eder */
    pointer-events: none; /* Arka plandaki içeriğin tıklanmasını engellemez, sadece butonlar tıklanır */
}

.asili-btn {
    pointer-events: auto; /* Konteynerin pointer-events ayarını buton için geri açar */
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease; /* Hover efekti için yumuşatma */
}

/* Daire Tasarımı */
.asili-btn i {
    width: 60px;       /* Dairenin genişliği (2. fotoya uygun) */
    height: 60px;      /* Dairenin yüksekliği */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%; /* Kusursuz bir daire yapar */
    color: white;      /* İkon rengi */
    font-size: 28px;   /* İkonun büyüklüğü */
    box-shadow: 0 6px 15px rgba(0,0,0,0.3); /* Gölge (havada asılı hissi verir) */
}

/* İkonun yanındaki gri etiket kutusu */
.btn-etiket {
    background-color: rgba(0,0,0,0.6); /* Şeffaf koyu gri kutu */
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px; /* Daireden biraz daha yukarıda durması için */
    opacity: 0; /* Başlangıçta gizli (2. fotoda etiket görünmüyor) */
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap; /* Yazının tek satırda kalmasını sağlar */
}

/* Sol Buton (Hemen Ara) */
.ara-daire i { background-color: #eb0000; /* Sarı daire */ color: #ffffff; }
.ara-daire .btn-etiket { margin-left: -50px; /* Daireye yaklaşmak için */ margin-right: 15px;}

/* Sağ Buton (WhatsApp) */
.wp-daire i { background-color: #00dc51; /* Yeşil daire */ }
.wp-daire .btn-etiket { margin-right: 15px; margin-left: -50px;}


/* Etiketleri Hover'da Göster (2. fotoda yok ama kullanışlıdır) */
.asili-btn:hover .btn-etiket {
    opacity: 1;
    transform: translateX(0);
}

/* Mobil için küçük bir dokunuş */
@media (max-width: 768px) {
    .asili-btn i {
        width: 55px; /* Mobilde biraz daha küçük daireler */
        height: 55px;
        font-size: 24px;
    }
}

.asili-butonlar-konteyner {
    position: fixed; /* Ekranın köşesine sabitler */
    bottom: 20px;    /* Alttan 20px boşluk bırakır */
    left: 20px;      /* Sol köşeye hizalar */
    right: 20px;     /* Sağ köşeye hizalar */
    display: flex;
    justify-content: space-between; /* Birini sola, birini sağa atar */
    z-index: 999999; /* Butonların her zaman en üstte görünmesini sağlar */
}

.asili-btn {
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ara-daire { background-color: #d60400; } /* Kırmızı renk */
.wp-daire { background-color: #00e454; }   /* WhatsApp yeşili */

.whatsapp-logo-container {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 99999999 !important; /* En üst katmana çıkarır */
    display: block !important;
    width: 60px !important;       /* Görünür olması için genişlik */
    height: 60px !important;      /* Görünür olması için yükseklik */
    visibility: visible !important;
    opacity: 1 !important;
}

.whatsapp-logo-container img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

/* GALERİ YAPISI (Geri Getirilen) */
.galeri-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* Fotoğraflar 3'lü dizilecek */
    gap: 20px;
    padding: 20px;
}

.resim-galeri {
    width: 100%;
    height: 250px;
    object-fit: contain; /* Fotoğrafların tam görünmesi için */
    border-radius: 10px;
    cursor: pointer;
    background-color: #f0f0f0;
}

.resim-galeri:hover {
    transform: scale(1.03); /* Üstüne gelince hafif büyüme */
}

/* Mobil Uyum (Ekran küçülünce 1 sütuna düşür) */
@media (max-width: 768px) {
    .galeri-grid {
        grid-template-columns: 1fr !important;
    }
}

.hizmet-baslik {
    display: block !important;
    position: relative;
    text-align: center;
    /* Çizgi kodu burada kalmaya devam etsin */
}

.hizmet-baslik::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* Çizginin genişliği */
    height: 3px; /* Çizginin kalınlığı */
    background-color: var(--ana-kirmizi); /* Kırmızı rengin */
    border-radius: 2px; /* Çizginin uçlarını yuvarlatır, daha modern durur */
}

#lightbox-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90vw;
    height: 80vh;
}

#lightbox-content img, #lightbox-content video {
    max-width: 90vw;   /* Ekran genişliğinin %90'ı */
    max-height: 80vh;  /* Ekran yüksekliğinin %80'i */
    object-fit: contain; /* Bu kod resmi/videoyu kırpmadan olduğu gibi içine oturtur */
    margin: auto;
}

/* Başlangıçta gizli */
#lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); /* Arka plan siyah ve hafif şeffaf */
    z-index: 9999; /* Sayfadaki her şeyin üzerinde */
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* İçeriği tam ortala */
#lightbox-content {
    max-width: 90%;
    max-height: 80%;
}

#lightbox-content img, #lightbox-content video {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

.kapat {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    cursor: pointer;
}

#hizmet-bolgeleri {
    width: 100%;
    text-align: center; /* Başlığı ortalar */
    padding: 40px 20px;
    background-color: #ffffff; /* Veya senin arka plan rengin */
}

.hizmet-baslik {
    margin-bottom: 30px;
    font-size: 32px;
    color: #000000;
    display: block; /* Bloğu tam ortalar */
}

#bolgeListesi {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    padding: 20px !important;
    background-color: #ffffff !important;
}

.bolge-kutu {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: 1px solid #333 !important;
    padding: 15px !important;
    border-radius: 8px !important;
    text-align: center;
    font-size: 14px;
}

.bolge-kutu h3 { font-size: 16px; margin-bottom: 5px; }
.bolge-kutu p { margin: 3px 0; font-size: 12px; }

.buton-kutusu { margin-top: 10px; }

.ara-btn, .wp-btn {
    display: block;
    width: 90%;
    margin: 5px auto;
    padding: 8px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 13px;
    color: white !important;
}

.ara-btn { background-color: #ff0000 !important; } /* Kırmızı Ara */
.wp-btn { background-color: #25d366 !important; }   /* Yeşil WhatsApp */

@media (max-width: 768px) {
    .bolge-grid-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        padding: 10px !important;
        box-sizing: border-box !important;
    }
    
    .bolge-kutu {
        width: 100% !important;
        margin: 0 0 15px 0 !important;
        box-sizing: border-box !important;
    }
}

.ozellik-listesi li {
    margin-bottom: 5px;
    color: #000000 !important; /* Yazıları beyaz yaparak siyah kutuda görünür yapıyoruz */
    font-weight: 500;        /* Yazıları biraz kalınlaştırıyoruz */
    font-size: 13px;         /* Okunabilirliği artırıyoruz */
    list-style: none;
}

.ozellik-listesi i {
    margin-right: 8px;
    color: #25d366 !important; /* Tik işaretleri yeşil kalmaya devam ediyor */
}

.hizmet-alt-yazi {
    text-align: center;      /* Yazıyı ortalar */
    font-size: 18px;         /* Yazı boyutunu ayarlar */
    color: #000000;             /* Hafif gri bir renk verir */
    margin-top: -10px;       /* Başlığa biraz yaklaştırır */
    margin-bottom: 30px;     /* Kutulardan uzaklaştırır */
    font-weight: 500;        /* Yazıyı biraz belirginleştirir */
}

/* Ana Kapsayıcıyı düzgünce hizalayalım */
.footer-container {
    display: flex;
    justify-content: space-around; /* Sütunlar arasında eşit boşluk bırakır */
    align-items: flex-start; /* İçerikleri üstten hizalar */
    flex-wrap: wrap; /* Ekran küçülürse alta atar */
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sütunların genişliğini belirleyelim */
.footer-column {
    flex: 1; /* Eşit yer kaplar */
    min-width: 250px; /* Çok küçülmesini engeller */
    padding: 10px;
}

/* Başlıklar ve Listeler için */
.footer-column h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none; /* Noktaları kaldırır */
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

/* Logo Boyutlandırma */
.footer-logo {
    width: 100px; /* Logonu istediğin boyuta göre ayarlayabilirsin */
    height: auto;
    margin-bottom: 10px;
}

/* Örnek: Footer ve Header içindeki metinler için */
footer, header {
    color: white;
}

/* Linklerin rengini değiştirmek için */
footer a, header a {
    color: white;
    text-decoration: none; /* Alt çizgiyi kaldırmak istersen */
}