/* GENEL AYARLAR */
/* GENEL AYARLAR VE YENİ ARKA PLAN */
:root {
    /* Daha zengin bir lacivert tonu */
    --bg-dark: #05070a; 
    --bg-light: #101626; 
    --text-color: #e0e0e0;
    --gold-color: #d4af37;
    --gold-hover: #b5952f;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);

    
    /* --- İŞTE SİHİRLİ DOKUNUŞ --- */
    /* Düz renk yerine degrade (radyal) geçiş kullanıyoruz */
    background: radial-gradient(circle at 50% 10%, var(--bg-light) 0%, var(--bg-dark) 90%);
    background-attachment: fixed; /* Sayfa kayarken arka plan sabit kalır, kalite hissi verir */
}

/* Tüm Başlıklar Playfair Olsun */
 .page-title, .section-title, .badge {
    font-family: var(--font-heading) !important;
    color: var(--white);
    font-weight: 700;
}

/* Tüm Metinler, Butonlar ve Linkler Poppins Olsun */
h1, h2, h3, h4, h5, h6, p, a, span, li, button, input, textarea, select, .btn-primary, .btn-secondary {
    font-family: var(--font-body) !important;
}

.main-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* HEADER / MENÜ */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.gold-text {
    color: #0d4cbf;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

nav ul li a {
    text-decoration: none;
    color: #aaa;
    font-weight: 500;
    transition: 0.3s;
    font-size: 15px;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--gold-color);
}

.btn-reservation {
    padding: 10px 25px;
    border: 1px solid var(--gold-color);
    color: var(--gold-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-reservation:hover {
    background-color: var(--gold-color);
    color: #000;
}

/* HERO SECTION (Giriş Kısmı) */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh; /* Ekranı kaplasın */
    padding-bottom: 50px;
}

.hero-content {
    flex: 1;
    max-width: 550px; /* Yazı çok yayılmasın */
    padding-right: 50px; /* Resimle arasına mesafe */
}

/* Küçük "Prestij" etiketi */
.badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    line-height: 1.1;
    margin: 10px 0 20px 0;
    color: #fff;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: #a8a8a8; /* Gri ton */
    margin-bottom: 40px;
    max-width: 450px;
}

/* BUTONLAR */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--gold-color), #f3dfa2);
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s;
}

.btn-secondary {
    border: 1px solid #333;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary:hover {
    border-color: #fff;
    background-color: rgba(255,255,255,0.05);
}

/* İSTATİSTİKLER */
.stats {
    display: flex;
    gap: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SAĞ TARAFTAKİ RESİM ALANI */
.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    margin-left: 200px;
}

.hero-image {
    width: 120%; /* Kutudan taşsın diye büyük */
    max-width: 700px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    /* Resmi biraz karartıp gizem katalım */
    mask-image: linear-gradient(to left, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 65%, transparent 100%);
    position: relative;
    z-index: 1;
}

/* GOLD DAİRE EFEKTİNİ GÜNCELLEYELİM */
.gold-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Tam ortala */
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(0,0,0,0) 70%);
    z-index: -1; /* Resmin arkasına at */
    filter: blur(50px);
}

.safirLogo {
    height: 70px;
    width: 140px;
    align-items: center;
    justify-content: center;
}

/* Önce Masaüstünde Hamburgeri Gizle */
.hamburger {
    display: none;
}

/* Menü Kapsayıcısı (Masaüstü Standart Ayar) */
.nav-menu {
    display: flex;
    align-items: center;
    margin: 0 auto;
    gap: 30px;
}

/* Hizmet Kartları - RESİM + İKON VERSİYONU */
.services-section {
    padding: 60px 0;
}
/* IZGARA YAPISI (Grid yerine Flex kullanıyoruz - Daha garantidir) */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Kartları ortala */
    gap: 30px;
}
/* HİZMET KARTLARI GENEL AYARI */
.service-card {
    flex: 1;                  /* Bulunduğu satıra eşit yayıl */
    min-width: 300px;         /* Ama 300px'den daha fazla daralma (Daralırsa alt satıra geçer) */
    max-width: 400px;         /* Çok da devasa olmasın */
    
    /* Geri kalan tasarım ayarları aynı */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-bottom: 20px; /* Mobilde birbirlerine yapışmasınlar diye */
}

/* Kartın Resim Alanı */
.card-image {
    width: 100%;
    height: 220px; 
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* --- YENİ EKLENEN: YÜZEN İKON --- */
.floating-icon {
    position: absolute;
    top: 185px; /* Resmin (220px) alt sınırına denk gelsin diye (220 - 35 yarısı) */
    right: 30px; /* Sağdan boşluk */
    width: 70px;
    height: 70px;
    background: var(--gold-color); /* İkon kutusu Gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    /* Kartın rengiyle aynı çerçeve vererek "kesik" efekti yapıyoruz */
    border: 5px solid #0b0f19; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.4s;
}

.floating-icon i {
    font-size: 24px;
    color: #0b0f19; /* İkonun kendisi koyu renk (zeminle kontrast) */
}

/* Yazı Alanı */
.card-content {
    padding: 30px;
    padding-top: 40px; /* İkon üstte olduğu için yazıyı biraz aşağı itelim */
}

/* Hover Efektleri */
.service-card:hover {
    transform: translateY(-10px);
    border-color: #0d4cbf;
}

.service-card:hover .card-image img {
    transform: scale(1.1);
}

/* Hover olunca ikon dönsün */
.service-card:hover .floating-icon {
    background: #0d4cbf; /* Rengi beyaza dönsün */
    transform: rotateY(180deg); /* Havalı bir dönüş efekti */
}

.service-card h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #c3c3c3;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* --- ARAÇ ÖZELLİKLERİ BÖLÜMÜ --- */
.vehicle-feature {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-wrapper {
    display: flex;
    align-items: center;
    gap: 80px; /* Resim ile yazı arası boşluk */
}

/* RESİM ALANI TASARIMI */
.feature-image {
    flex: 1;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 800px;
    border-radius: 20px;
    box-shadow: -20px 20px 0px rgba(21, 26, 38, 1); /* Arkaya gölge efekti */
    position: relative;
    z-index: 2;
}

/* Resmin etrafındaki ince gold çizgi efekti */
.border-effect {
    position: absolute;
    top: 30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-color);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.3;
}

/* YAZI ALANI TASARIMI */
.feature-content {
    flex: 1;
}

.feature-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #fff;
    margin: 15px 0 25px 0;
    line-height: 1.2;
}

/* ÖZELLİK LİSTESİ (IZGARA) */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Sütunlu yapı */
    gap: 20px;
    margin-top: 30px;
}

.f-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.f-item:hover {
    border-color: #0d4cbf;
    transform: translateX(5px); /* Üzerine gelince hafif sağa kaysın */
}

.f-item i {
    color: var(--gold-color);
    font-size: 20px;
}

.f-item span {
    font-size: 14px;
    color: #ccc;
    font-weight: 500;
}

/* --- BLOG BÖLÜMÜ --- */
.home-blog {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #fff;
    margin-top: 10px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Yan yana */
    gap: 30px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: #0d4cbf;
}

.blog-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-color);
    color: #000;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.blog-content p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--gold-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.read-more:hover {
    color: #fff;
    padding-left: 5px;
}

/* --- İLETİŞİM BANNER BÖLÜMÜ --- */
.home-contact {
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(212, 175, 55, 0.05); /* Çok hafif gold zemin */
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.c-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* İKON KUTUSU GÜNCELLEME */
.icon-box {
    width: 50px;
    height: 50px;
    
    /* BU KISIMLARI EKLE/GÜNCELLE: */
    min-width: 50px;  /* Genişlik asla 50'den az olmasın */
    min-height: 50px; /* Yükseklik asla 50'den az olmasın */
    flex-shrink: 0;   /* KRİTİK KOD: Flex yapısı ikonu sıkıştırmasın veya esnetmesin */
    
    background: var(--gold-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0b0f19; /* İkon rengi koyu olsun ki okunsun */
}

.c-info span {
    display: block;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.c-info a, .c-info p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    margin: 0;
    transition: 0.3s;
}

.c-info a:hover {
    color: var(--gold-color);
}

/* Araya çizgi atmak için */
.c-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.1);
}

/* --- FOOTER (ALT BİLGİ) --- */
.site-footer {
    background-color: #05070a; /* Sitenin en koyu tonu */
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

/* Logo Sütunu */
.about-col {
    flex: 1.5; /* Bu sütun biraz daha geniş olsun */
}

.footer-logo {
    height: 60px;
    margin-bottom: 25px;
}

.about-col p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 350px; /* Yazı çok uzamasın */
}

/* Sosyal Medya İkonları */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid transparent;
}

.social-links a:hover {
    background: var(--gold-color);
    color: #000;
    transform: translateY(-3px);
}

/* Başlıklar */
.footer-col h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Başlık Altı Çizgisi */
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gold-color);
}

/* Linkler */
.links-col ul, .contact-col ul {
    list-style: none;
    padding: 0;
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.links-col ul li a:hover {
    color: var(--gold-color);
    padding-left: 5px; /* Hover'da hafif sağa kaysın */
}

/* İletişim Listesi */
.contact-col ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #aaa;
    font-size: 14px;
    align-items: flex-start;
}

.contact-col ul li i {
    color: var(--gold-color);
    margin-top: 5px;
}

/* Footer Alt Şerit */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #555;
    font-size: 13px;
    margin: 0 auto;
    
}

/* --- YORUMLAR BÖLÜMÜ --- */
/* 2. YORUMLAR BÖLÜMÜ */
.testimonials {
    padding: 80px 0;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Yama görüntüsünü kaldırır */
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Yama görüntüsünü kaldırır */
    /* Üstteki çizgiyi de şeffaf yapalım ki kopuk durmasın */

}

/* YORUMLAR BÖLÜMÜ BAŞLIK AYARLARI */
.testimonials .sub-text {
    text-align: center; /* İşte o solda kalan yazıyı ortalayan kod bu */
    max-width: 800px;   /* Yazı çok yayılmasın diye limit koyduk */
    margin: 0 auto 50px auto; /* Kutuyu sayfanın ortasına alır */
    padding: 0 20px;
}

/* Başlık Rengi (Mavi Olsun İstemiştin) */
.testimonials h2.section-title {
    color: #0d4cbf; /* Parlak Safir Mavisi */
    font-size: 38px;
    margin-bottom: 15px;
}

.testimonials .section-white {
    font-size: 38px;
    margin-bottom: 15px;
    color: white;
}


.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px); /* Üzerine gelince hafif yukarı kalkar */
    border-color: #0d4cbf /* Kenarlık Gold olur */
}

.stars {
    color: #d4af37; /* Gold Yıldızlar */
    margin-bottom: 15px;
    font-size: 14px;
}

.comment {
    font-style: italic;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 20px;
}

.user-info h4 {
    color: #fff;
    margin: 0;
    font-size: 16px;
}

.user-info span {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- GÜNCELLENMİŞ HAKKIMIZDA TASARIMI (İKONLU) --- */

.about-seo-section {
    padding: 100px 0;
    position: relative;
}

/* Çerçeve ve kutu ayarı */
.about-wrapper {
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.01);
    position: relative;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

/* Süs çizgileri */
.about-wrapper::before, .about-wrapper::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 1px;
    background: #d4af37;
    left: 50%;
    transform: translateX(-50%);
}
.about-wrapper::before { top: 0; }
.about-wrapper::after { bottom: 0; }


/* --- BAŞLIK ALANI (DÜZELTİLDİ) --- */
.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto; /* Alt boşluğu biraz artırdık */
}

.about-header h2 {
    font-size: 48px;
    color: #fff;
    margin-top: 15px;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* O "yamuk" duran yazıyı düzelttik */
.intro-text {
    font-size: 18px;
    color: #d4af37; /* Gold renk */
    font-weight: 400; /* Normal kalınlık */
    font-style: normal; /* İtalik değil, düz */
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto; /* Ortala */
}


/* --- İÇERİK ALANI (İKONLU YAPI) --- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* İki sütun */
    gap: 40px 60px; /* Satır arası 40px, Sütun arası 60px boşluk */
    border-top: 1px solid rgba(255,255,255,0.05); /* Araya ince çizgi */
    padding-top: 50px;
}

/* --- YENİ EKLENEN: SOL SÜTUN İKONLARI --- */
.about-icon {
    font-size: 48px; /* Büyük ve iddialı */
    color: #d4af37;  /* Gold renk */
    margin-bottom: 20px; /* Başlıkla arasını aç */
    text-align: left; /* Sola yaslı */
    /* Hafif bir parlama efekti */
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Sol sütundaki başlıklar */
.about-content h3 {
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    margin-top: 0;
    border: none; /* Eski sol çizgiyi kaldırdık */
    padding: 0;
}

/* Sağ sütundaki paragraflar */
.about-content p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.8;
    margin: 0; /* Boşlukları grid gap ile hallediyoruz */
    text-align: left;
}

/* Buton Ayarı */
.btn-text-gold {
    grid-column: span 2; /* İki sütunu kapla */
    text-align: center;
    font-size: 18px;
    color: #fff;
    border: 1px solid #d4af37;
    padding: 15px 40px;
    border-radius: 50px;
    width: fit-content;
    justify-self: center;
    text-decoration: none;
    transition: 0.3s;
}

.area-content .btn-text-gold {
    margin-top: 30px;
    display: inline-block;
}

.btn-text-gold:hover {
    background: #d4af37;
    color: #000;
}

/* --- HİZMETLER SAYFASI TASARIMI --- */

/* 1. Sayfa Başlığı */
.page-header-section {
    height: 40vh; 
    /* Arka plana uygun bir resim yolu yaz */
    background: url('img/hizmetlerimizsafirtransfer.webp') center/cover no-repeat fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
}

.page-header-section .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 7, 10, 0.85); /* Resmi karart */
}

.page-header-section .main-container { position: relative; z-index: 2; }

.page-title {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 18px; color: #ccc; font-weight: 300; margin: 0 auto;
}

/* 2. Hizmet Satırları (Zig-Zag) */
.services-list-section { padding-bottom: 100px; }

.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    
    /* Kutu Tasarımı */
    background: rgba(255,255,255,0.02);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.service-row:hover {
    background: rgba(255,255,255,0.04);
    border-color: #0d4cbf;
}

/* Ters Sıralama (Resim Sağda) */
.service-row.reverse { flex-direction: row-reverse; }

/* Resim */
.srv-img {
    flex: 1;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.srv-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s;
}

.service-row:hover .srv-img img { transform: scale(1.1); }

/* İçerik */
.srv-content { flex: 1.2; }

.icon-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.icon-header i { font-size: 32px; color: #d4af37; }
.icon-header h3 { font-size: 26px; color: #fff; margin: 0; font-family: 'Playfair Display', serif; }

.srv-content p { color: #aaa; line-height: 1.7; margin-bottom: 25px; font-size: 15px; }

/* 4'lü Madde Listesi Tasarımı */
.srv-features {
    list-style: none; padding: 0; margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 sütun (2x2 görünüm) */
    gap: 15px;
}

.srv-features li {
    font-size: 14px; color: #fff;
    display: flex; align-items: center; gap: 10px;
    background: rgba(212, 175, 55, 0.08); /* Hafif gold zemin */
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.srv-features li i { color: #d4af37; font-size: 12px; }

/* Buton */
.btn-srv {
    display: inline-block;
    background: #d4af37; color: #000;
    padding: 12px 35px; border-radius: 50px;
    text-decoration: none; font-weight: 600;
    transition: 0.3s;
}

.btn-srv:hover { background: #fff; transform: translateY(-3px); }

/* --- NASIL ÇALIŞIR (PROCESS) BÖLÜMÜ --- */
.process-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.process-section .section-desc {
    text-align: center;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.process-step {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    flex: 1;
    transition: 0.3s;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: #0d4cbf;
    background: rgba(212, 175, 55, 0.05);
}

/* Adım Numarası (01, 02...) */
.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    font-weight: 700;
    color: rgba(255,255,255,0.05); /* Çok silik dursun */
    font-family: 'Playfair Display', serif;
}

.process-step:hover .step-number {
    color: rgba(212, 175, 55, 0.2);
}

/* İkon */
.step-icon {
    width: 70px; height: 70px;
    background: #d4af37;
    color: #000;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.process-step h3 {
    color: #fff; font-size: 20px; margin-bottom: 15px;
}

.process-step p {
    color: #aaa; font-size: 14px; line-height: 1.6;
}

/* Araya Giren Ok İşareti */
.step-arrow {
    color: #333; font-size: 24px;
}

/* Güven Bandı (Alt Kısım) */
.trust-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(40, 167, 69, 0.1); /* Hafif yeşil güven hissi */
    border: 1px solid rgba(40, 167, 69, 0.3);
    padding: 15px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.trust-banner i { color: #28a745; font-size: 20px; }
.trust-banner span { color: #a5d6a7; font-size: 14px; font-weight: 500; }

/* --- SIKÇA SORULAN SORULAR (FAQ) --- */
.faq-section {
    padding: 80px 0 120px 0;
    border: 1px solid rgba(255,255,255,0.05);
}

.faq-container {
    max-width: 800px; /* Çok yayılmasın, ortada derli toplu dursun */
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    background: rgba(255,255,255,0.02);
    overflow: hidden; /* Taşmaları gizle */
    transition: 0.3s;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3); /* Hoverda hafif gold çizgi */
}

/* Soru Kısmı (Tıklanabilir Alan) */
.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
}

.faq-question h3 {
    font-size: 18px;
    color: #fff;
    margin: 0;
    font-weight: 500;
    padding-right: 20px; /* İkonla yazı yapışmasın */
    text-align: center; /* Başlığı ortala */
    flex: 1; /* Yazı boş alanı kaplasın ki tam ortaya gelsin */
    padding-left: 20px; /* İkon sağda olduğu için, dengelemek adına soldan hafif pay */
}

.faq-question i {
    color: #d4af37;
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* 1. Cevap Kutusunun İç Boşluğunu Daraltalım */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(0,0,0,0.2);
    
    /* YENİ AYAR: Sağdan soldan boşluğu azalttık (Eskisi 25px idi) */
    padding: 0 15px; 
}

/* 2. Cevap Metnini Ortala */
.faq-answer p {
    text-align: center !important; /* Cevabı kesinlikle ortala */
    text-justify: auto; /* Eski justify ayarını iptal et */
    padding: 20px 20px; /* Üst/Alt 20px, Sağ/Sol 10px boşluk */
    margin: 0 auto;
    /* Okunurluk ayarları */
    font-size: 15px;
    line-height: 1.6;
    color: #bbb;
}

/* --- AKTİF DURUM (JavaScript ekleyince çalışacak) --- */
.faq-item.active {
    border-color: #0d4cbf;
    background: rgba(212, 175, 55, 0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg); /* Artı işareti çarpı olsun */
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Yeterince yükseklik veriyoruz */
}

.section-desc {
    text-align: center !important; /* Kesinlikle ortala */
    max-width: 700px; /* Genişliği artırdık (Eskiden dardı, satır kötü bölünüyordu) */
    margin: 10px auto 50px auto; /* Üstten az, alttan çok boşluk ve ORTALA */
    
    font-style: normal !important; /* Asla italik (yamuk) durmasın */
    font-weight: 400; /* Normal kalınlık */
    color: #aaa;
    font-size: 16px;
    line-height: 1.6;
    display: block; /* Blok olsun ki margin auto çalışsın */
}

/* --- HAKKIMIZDA SAYFASI TASARIMI --- */

/* 1. Özel Arka Plan (Hero için) */
.about-header-bg {
    /* Hizmetlerden farklı bir resim olabilir veya aynısı kalabilir */
    background: url('img/hakkımızdasafirtransfer.webp') center/cover no-repeat fixed; 
}

/* 2. Hikaye ve Metin Bölümü */
.about-story-section {
    padding: 100px 0;
}

.story-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Metin Kısmı */
.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 30px;
    margin-top: 10px;
    font-family: 'Playfair Display', serif;
}

.highlight-p {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 25px;
    border-left: 4px solid #d4af37;
    padding-left: 20px;
}

.story-content p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
    text-align: justify; /* Blok düzen */
}

/* İmza Kutusu */
.signature-box {
    margin-top: 30px;
}
.signature-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    color: #d4af37 !important;
    margin-bottom: 5px !important;
}
.signature-box span {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Resim Kısmı */
.story-image {
    flex: 1;
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.1); /* Gold gölge */
    border: 1px solid rgba(255,255,255,0.1);
}

/* Tecrübe Rozeti (Resmin üzerindeki kutu) */
.exp-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #d4af37;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 5px solid #05070a; /* Arka plan rengiyle çerçeve */
}

.exp-badge .years {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: #000;
    line-height: 1;
}

.exp-badge .text {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
}


/* 3. Değerler Bölümü (3 Kutu) */
.values-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid transparent;
}

.value-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: #0d4cbf;
    transform: translateY(-10px);
}

.v-icon {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.value-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}


/* 4. Sayaç (Counter) Bölümü */
.stats-counter-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.counter-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.c-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.c-label {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* --- HİZMET BÖLGELERİ (LOCAL SEO) --- */
.service-area-section {
    padding: 100px 0;
    /* Hafif çapraz bir geçiş verelim */
}

.area-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.area-content {
    flex: 1;
}

.area-content h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 10px;
}

.area-content p {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

/* Sağdaki Liste Kutusu */
.area-list-box {
    flex: 0.8;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212, 175, 55, 0.2); /* Gold Çerçeve */
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

/* Kutuya hafif bir parlama efekti */
.area-list-box::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, #d4af37, transparent, #d4af37);
    z-index: -1;
    border-radius: 22px;
    opacity: 0.2;
}

.area-list-box h3 {
    color: #fff;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.district-grid {
    display: flex;
    gap: 40px;
}

.district-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.district-grid ul li {
    color: #ccc;
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.district-grid ul li:hover {
    color: #0d4cbf;
    transform: translateX(5px); /* Üzerine gelince sağa kaysın */
}

.district-grid ul li i {
    color: #d4af37;
    font-size: 12px;
}


/* --- BELGELER VE GÜVENLİK (TRUST SECTION) --- */
.certificates-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.cert-header {
    text-align: center;
    margin-bottom: 50px;
}

.cert-header h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 10px;
}

.cert-header p {
    color: #888;
    margin: 0 auto;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Yan yana */
    gap: 20px;
}

.cert-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.cert-item:hover {
    background: rgba(40, 167, 69, 0.05); /* Güven yeşili tonu */
    border-color: #28a745;
}

.cert-item i {
    font-size: 36px;
    color: #888;
    margin-bottom: 15px;
    transition: 0.3s;
}

.cert-item:hover i {
    color: #28a745; /* İkon yeşil olsun */
}

.cert-item h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.cert-item p {
    color: #666;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}
/* --- REFERANSLAR (HIBIT SİSTEM - PC GRID / MOBİL SLIDER) --- */

.references-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden; /* Mobilde taşmayı engeller */
}

/* 1. MASAÜSTÜ (PC) VARSAYILAN AYARLARI */
.slider-wrapper {
    width: 100%;
    margin: 0 auto;
}

.slider-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Sütunlu Grid */
    gap: 20px;
}

/* Kutuların Tasarımı */
.ref-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.ref-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #0d4cbf;
}

.ref-item i {
    color: #d4af37;
    font-size: 20px;
    min-width: 30px;
    text-align: center;
}

.ref-item span {
    color: #ccc;
    font-size: 14px;
    font-weight: 500;
}

/* --- KRİTİK NOKTA: PC'DE KOPYALARI GİZLE --- */
/* Bu kod PC düzeninin bozulmasını engeller */
.mobile-only {
    display: none; 
}

/* --- İLETİŞİM SAYFASI TASARIMI --- */

/* 1. Header Arka Planı */
.contact-header-bg {
    /* Telefonla konuşan biri veya ofis resmi olabilir */
    background: url('img/ozelsofor.webp') center/cover no-repeat fixed; 
}

/* 2. Ana Kapsayıcı (Grid) */
.contact-page-section {
    padding: 100px 0;
}

.contact-wrapper-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start; /* Kutular üstten hizalı başlasın */
}

/* --- SOL KUTU: BİLGİLER --- */
.contact-info-box {
    flex: 1; /* %40 genişlik gibi davranır */
    background: rgba(255, 255, 255, 0.02);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-box h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
    margin-top: 0;
}

.info-desc {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* İkonlu Bilgi Satırları */
.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item .icon {
    width: 50px; height: 50px;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-item .details span {
    display: block;
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-item .details p, 
.info-item .details a {
    color: #fff;
    font-size: 16px;
    margin: 0;
    text-decoration: none;
    line-height: 1.5;
    transition: 0.3s;
}

.info-item .details a:hover {
    color: #d4af37;
}

/* Sosyal Medya */
.social-area {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-area span {
    color: #fff;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-icons {
    display: flex; gap: 15px;
}

.social-icons a {
    width: 40px; height: 40px;
    background: #222;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #d4af37;
    color: #000;
}


/* --- SAĞ KUTU: FORM --- */
.contact-form-box {
    flex: 1.5; /* %60 genişlik */
    background: #fff; /* Form beyaz olsun ki temiz dursun (veya açık gri) */
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); /* Derinlik */
    height: 525px;
}

/* Sitenin koyu temasına uyması için formun içini de koyu yapabiliriz.
   Ama Premium hissi için "Koyu Zemin Üstüne Koyu Kutu" yapalım. */
   
.contact-form-box {
    background: rgba(20, 25, 40, 0.8); /* Koyu lacivert yarı saydam */
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form-box h3 {
    color: #fff;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

/* Input ve Select Tasarımı */
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    box-sizing: border-box; /* Taşmayı önler */
    transition: 0.3s;
}

/* Placeholder Rengi */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

/* Select içindeki optionlar (Tarayıcı varsayılanı beyaz olur genelde) */
.form-group select option {
    background: #101522;
    color: #fff;
}

/* Tıklayınca (Focus) */
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #0d4cbf; /* Gold Çerçeve */
    background: rgba(255, 255, 255, 0.1);
}

/* Gönder Butonu */
.btn-submit {
    width: 100%;
    padding: 15px;
    background: #d4af37;
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
    background: #fff;
    transform: translateY(-3px);
}


/* --- HARİTA BÖLÜMÜ --- */
.map-section {
    width: 100%;
    height: 450px;
    filter: grayscale(100%) invert(92%) contrast(83%); /* Haritayı Koyu/Gri yapma büyüsü */
    border-top: 1px solid #333;
}

/* Haritayı renklendirmek istersen filter satırını silmen yeterli */

/* --- ULAŞIM NOKTALARI (SEO METNİ) --- */
.transport-hubs-section {
    padding: 60px 0 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hubs-header {
    text-align: center;
    margin-bottom: 40px;
}

.hubs-header h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.hubs-header p {
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    font-size: 14px;
}

.hubs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Yan yana */
    gap: 20px;
}

.hub-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.hub-item:hover {
    border-color: #0d4cbf;
    background: rgba(212, 175, 55, 0.05);
}

.hub-item i {
    font-size: 30px;
    color: #d4af37;
    margin-bottom: 15px;
}

.hub-item h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.hub-item p {
    color: #aaa;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.map-section iframe{
    width: 100%;
    outline: none;
}

.map-section, 
.map-section iframe {
    border: none;      /* Tüm çerçeveleri sil */
    border-top: none ;  /* Üstteki çizgiyi kesinlikle sil */
    outline: none ;     /* Dış hatları sil */
    margin-top: -1px ;  /* Eğer arada mikroskobik bir boşluk varsa kapat */
}
  /* 2. Footer Haritaya Temizce Yapışsın */
    .site-footer {
        margin-top: 0 ;
        position: relative ;
        z-index: 20 ;        /* Footer her zaman üstte kalsın */
        box-shadow: 0 -5px 15px rgba(0,0,0,0.5); /* Hafif gölge */
        padding-top: 40px;  /* İç boşluk */
    }

    /* --- BLOG SAYFASI TASARIMI --- */

/* 1. Header Arka Planı */
.blog-header-bg {
    /* Bir kahve, bilgisayar veya yol manzarası resmi olabilir */
    background: url('img/ankara-manzara.webp') center/cover no-repeat fixed;
}

.blog-page-section {
    padding: 80px 0;
}

/* Kategori Filtresi (Butonlar) */
.blog-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.blog-filter button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.blog-filter button:hover, 
.blog-filter button.active {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

/* Grid Yapısı */
.blog-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Yan yana */
    gap: 30px;
}

/* Kart Tasarımı */
.blog-post-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    border-color: #0d4cbf;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Resim Alanı */
.post-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.blog-post-card:hover .post-img img {
    transform: scale(1.1); /* Hoverda resim büyüsün */
}

/* Kategori Etiketi (Resmin Üstünde) */
.post-cat {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #d4af37;
    color: #000;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

/* İçerik Alanı */
.post-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.post-meta i {
    color: #d4af37;
    margin-right: 5px;
}

.post-content h3 {
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.post-content h3 a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
    font-family: 'Playfair Display', serif;
}

.post-content h3 a:hover {
    color: #d4af37;
}

.post-content p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1; /* Alttaki butonu en aşağı itmek için */
}

.read-more-link {
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.read-more-link:hover {
    padding-left: 5px; /* Sağa kayma efekti */
    color: #fff;
}

/* Sayfalama (Pagination) */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination a {
    width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    transition: 0.3s;
}

.pagination a:hover, 
.pagination a.active {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

/* --- OTORİTER BLOG TASARIMI (CLASSIC PREMIUM) --- */

/* 1. GENEL AYARLAR */
body {
    background-color: #0b0d10; /* Koyu ama yumuşak zemin */
    color: #e0e0e0;
    font-family: 'Inter', sans-serif; /* En okunaklı font */
    line-height: 1.6;
}

/* 2. HEADER (BAŞLIK) BÖLÜMÜ */
.article-header {
    position: relative;
    background: url('img/ankara-manzara.webp') center/cover no-repeat;
    padding: 120px 0 80px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), #0b0d10); /* Resimden siyaha geçiş */
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

/* Breadcrumbs (Ekmek Kırıntısı) */
.breadcrumbs {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs a { color: #d4af37; text-decoration: none; }
.breadcrumbs i { font-size: 10px; margin: 0 10px; color: #666; }

/* H1 Başlık */
.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* Meta Bilgileri (Yazar, Tarih) */
.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #bbb;
    gap: 15px;
}

.author-info { display: flex; align-items: center; gap: 10px; }
.author-info img { width: 30px; height: 30px; border-radius: 50%; object-fit: contain; background: #fff; }
.meta-divider { color: #444; }

/* 3. İÇERİK YAPISI (GRID) */
.layout-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr; /* Sol geniş, Sağ dar (Klasik Blog Oranı) */
    gap: 60px;
    padding: 60px 0;
}

/* SOL SÜTUN (MAKALE) */
.content-column {
    font-size: 18px; /* Okuması kolay büyük puntolar */
    line-height: 1.8;
    color: #d1d1d1;
}

.lead-paragraph {
    font-size: 20px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 40px;
    border-left: 3px solid #d4af37;
    padding-left: 20px;
}

/* İçindekiler Tablosu (TOC) */
.table-of-contents {
    background: #111316;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.table-of-contents h4 { color: #fff; margin-bottom: 15px; font-size: 18px; }
.table-of-contents ul { list-style: none; padding: 0; margin: 0; }
.table-of-contents li { margin-bottom: 10px; }
.table-of-contents a { color: #d4af37; text-decoration: none; transition: 0.3s; }
.table-of-contents a:hover { color: #fff; padding-left: 5px; }

/* Makale İçi Başlıklar */
.content-column h2 {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.content-column p { margin-bottom: 25px; }

/* Liste Stili */
.feature-list { list-style: none; padding: 0; margin-bottom: 30px; }
.feature-list li { margin-bottom: 15px; color: #fff; }
.feature-list i { color: #25D366; margin-right: 10px; }

/* Makale Resmi */
.article-image {
    width: 100%;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Alıntı */
blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #fff;
    font-style: italic;
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent);
    border-left: none;
    border-radius: 8px;
}

/* SAĞ SÜTUN (SIDEBAR) */
.sidebar-column {
    margin-top: 10px;
}

.sidebar-widget {
    background: #111316;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 10px;
    display: inline-block;
}

.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    padding: 12px 0; 
}
.sidebar-links a { 
    color: #aaa; text-decoration: none; 
    display: flex; justify-content: space-between; 
    transition: 0.3s;
}
.sidebar-links a:hover { color: #d4af37; }

/* Yapışkan Widget */
.sticky-widget {
    position: sticky;
    top: 30px; /* Kaydırınca sabitlenir */
}

.cta-box { text-align: center; }
.cta-box h4 { color: #d4af37; font-size: 20px; margin-bottom: 10px; }
.cta-box p { font-size: 14px; margin-bottom: 20px; }

.sidebar-btn {
    display: block;
    background: #25D366;
    color: #fff;
    font-weight: bold;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    margin-bottom: 15px;
    transition: 0.3s;
}

.sidebar-btn:hover { background: #128C7E; transform: scale(1.05); }

.phone-display a {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 5px;
}

/* --- ORTALI VE SİMETRİK BLOG DÜZENİ --- */

/* 1. Başlıkları Ortala ve Altına Şık Çizgi Koy */
.content-column h2, 
.content-column h3, 
.content-column h4 {
    text-align: center !important;
    border-bottom: none !important; /* Eski uzun çizgiyi kaldır */
    position: relative;
    margin-bottom: 30px !important;
}

/* Başlıkların altına küçük, zarif bir altın çizgi */
.content-column h2::after {
    content: '';
    display: block;
    width: 60px; /* Kısa çizgi */
    height: 3px;
    background: #d4af37;
    margin: 15px auto 0 auto; /* Tam ortaya hizalar */
    border-radius: 2px;
}

/* 2. Resimleri Ortala */
.content-column img.article-image {
    display: block;
    margin: 40px auto !important; /* Ortala */
    max-width: 100%;
}

/* 3. Listeleri (Tik İşaretli Alanları) Ortala Ama İçini Düzgün Tut */
.feature-list {
    display: table; /* İçeriği kadar yer kaplasın */
    margin: 0 auto 30px auto !important; /* Bloğu ortala */
    text-align: left; /* Maddeler yine soldan başlasın (okunaklı olsun) */
    background: rgba(255, 255, 255, 0.02); /* Hafif zemin */
    padding: 20px 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* 4. İçindekiler Tablosunu Ortala */
.table-of-contents {
    text-align: center;
}
.table-of-contents ul {
    display: inline-block; /* Listeyi ortalamak için */
    text-align: left;
}

/* 5. Alıntı Kutusunu Güzelleştir (Ortalı) */
blockquote {
    text-align: center !important;
    border-left: none !important;
    border-top: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    background: transparent !important;
    padding: 30px !important;
}

/* --- FİNAL SİMETRİ AYARI (HER ŞEY ORTALI) --- */

/* 1. Paragrafları (P) Ortala */
.content-column p {
    text-align: center !important; /* Yazıları ortalar */
    
    /* İPUCU: Yazılar ekranın en sağına ve en soluna yapışmasın diye */
    /* biraz içeriden başlatalım, çok daha havalı durur */
    max-width: 90% !important; 
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 2. O "Beyaz" Olan Alt Başlıkları (H3, H4) Hizala */
.content-column h3, 
.content-column h4 {
    text-align: center !important;
    color: #fff !important; /* Rengi beyaz kalsın */
    width: 100%;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
}

/* 3. Listeleri (Tik İşaretli Maddeleri) Ortada Topla */
.feature-list {
    margin: 0 auto 30px auto !important; /* Kutuyu ortala */
    display: inline-block !important; /* İçerik kadar yer kapla */
    text-align: left; /* Maddeler yine soldan okunsun (Okunaklılık için) */
}

/* 4. En Üstteki Başlık Kısmını Garantiye Al */
.article-header, 
.header-content {
    text-align: center !important;
}

.breadcrumbs {
    justify-content: center !important; /* Ekmek kırıntısını ortala */
    display: flex;
}

.article-meta {
    justify-content: center !important; /* Tarih/Yazar bilgisini ortala */
}

/* --- SADECE DÜZ CSS İLE YAPIŞKAN SIDEBAR --- */

/* 1. Kapsayıcıyı (Grid) Hizala */
/* Bu satır, sağdaki kutunun soldaki yazı kadar uzamasını engeller. */
.layout-grid {
    align-items: start !important;
}

/* 2. Sağ Sütunu Yapıştır */
.sidebar-column {
    position: sticky !important;        /* Modern tarayıcılar için standart */
    position: -webkit-sticky !important; /* Safari vb. için */
    
    top: 20px !important;               /* Tavandan 20px boşluk bırakıp asılı kalsın */
    z-index: 100 !important;            /* En önde dursun */
    
    height: auto !important;            /* İçeriği kadar boyu olsun, uzamasın */
    align-self: start !important;       /* Yukarı yaslansın */
}


/* =========================================
   MOBİL VE TABLET AYARLARI (RESPONSIVE)
   ========================================= */

/* MOBİL GÖRÜNÜM BAŞLIYOR */
@media screen and (max-width: 992px) {

    /* --- HEADER (ÜST MENÜ) DÜZENLEMESİ --- */
    header {
        position: fixed; /* Sayfaya çivile */
        top: 0;
        left: 0;
        width: 100%;
        z-index: 2000; /* Her şeyin en üstünde */
        
        /* Arkası şeffaf olursa yazılar karışır, o yüzden koyu yarı saydam zemin */
        background: rgba(5, 7, 10, 0.95); 
        backdrop-filter: blur(30px); /* Buzlu cam efekti */
        border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Altına ince çizgi */
        
        padding: 10px 20px;
        justify-content: space-between;
        box-sizing: border-box;
    }

    /* Mobilde üstteki 'Rezervasyon Yap' butonunu gizle (Aşağıda zaten butonlar var) */
    header .btn-reservation {
        display: none; 
    }

    /* --- 3. HAMBURGER İKONU AYARI --- */
    .hamburger {
        display: block !important;
        font-size: 28px;
        color: #d4af37;
        cursor: pointer;
        
        /* Menü açıldığında ikonun menünün üstünde kalması lazım */
        position: relative; 
        z-index: 2001; 
    }

    /* Badge (Etiket) ayarı - Emin olmak için */
    .badge {
        margin: 0 auto 15px auto; /* Sağı solu auto yaparak ortala, alta boşluk ver */
        display: inline-block;
    }

   /* Logo Boyutunu Büyütüyoruz */
    .safirLogo {
        height: 65px; /* 40px çok küçüktü, 65px ideal */
        width: auto;
        object-fit: contain;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
    }

    .stats {
        gap: 40px; /* Aralarını aç */
        text-align: center; /* Yazıları ortala */
    }

    .stat-item {
        margin: 0; /* Varsa eski marjları sıfırla */
        border-bottom: 1px solid rgba(255,255,255,0.05); /* Aralarına ince çizgi at */
        padding-bottom: 20px;
    }

    /* --- 2. YANDAN AÇILAN MENÜ (SIDE DRAWER) --- */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Başlangıçta ekranın SAĞINDA gizli dursun */
        left: auto;   /* Sol tarafı serbest bırak */
        
        width: 70%;   /* Ekranın %80'ini kaplasın (Yanda boşluk kalsın ki kapandığı belli olsun) */
        height: 100vh; /* Tam boy */
        
        background-color: #0b0f19; /* Menü rengi */
        border-left: 1px solid #d4af37; /* Sol kenara Gold çizgi */
        box-shadow: -10px 0 30px rgba(0,0,0,0.8); /* Derinlik gölgesi */
        
        display: flex; /* Her zaman flex olsun, animasyon için gerekli */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        
        z-index: 1999; /* Header'ın bir tık altında (veya hamburgerin altında) */
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1); /* O havalı kayma efekti burada */
        
        /* Eski opacity/animation kodlarını iptal et */
        opacity: 1; 
        animation: none;
    }

   /* JavaScript 'active' ekleyince burası çalışacak */
    .nav-menu.active {
        right: 0; /* Ekranın içine kay */
    }

  /* Menü Linkleri */
    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .nav-menu ul li a {
        font-size: 20px;
        font-weight: 500;
        color: #fff;
        display: block;
    }

    .nav-menu ul li a {
        font-size: 18px; /* Linkleri mobilde büyüt */
        display: block;
    }

 

    /* Butonu Mobilde Genişlet */
    .btn-reservation {
        width: 80%;
        text-align: center;
    }
    

  /* --- HERO (GİRİŞ) DÜZENLEMELERİ --- */
    .hero {
        padding-top: 140px !important; /* Üstteki o devasa boşluğu aldık (100px idi) */
        display: flex;
        flex-direction: column;
        align-items: center; /* KRİTİK NOKTA: Her şeyi (Badge dahil) dikeyde ortalar */
    }

    .hero-content {
        width: 100%;
        padding: 0 20px;
        display: flex;        /* İçerikleri esnek kutu yap */
        flex-direction: column; /* Alt alta diz */
        align-items: center;    /* İŞTE BU KOD 'ANKARA' YAZISINI ORTALAR */
        text-align: center;     /* Yazıları ortalar */
    }

    /* O devasa başlığı telefona göre küçültüyoruz */
    .hero h1 {
        font-size: 38px; /* 64px çok büyüktü, 38px ideal */
        line-height: 1.2; /* Satır aralığını sıkılaştır */
        margin-bottom: 20px;
        text-align: center;
    }

    /* Altındaki açıklama yazısını düzenle */
    .hero p {
        font-size: 15px;
        padding: 0 10px; /* Sağdan soldan biraz daha pay */
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons a {
        margin: 0 auto;
    }

    
   .hero-image-container {
        display: flex; /* Görünür yap */
        justify-content: center;
        width: 100%;
        margin-top: 40px; /* Yazı ile resim arasını aç */
        margin-left: 0; /* Eski ayarları sıfırla */
    }

    .hero-image {
        width: 90%; /* Ekranı tam kaplamasın, kenardan boşluk kalsın */
        max-width: 400px; /* Çok da büyümesin */
        height: auto;
        display: block; /* Görünürlüğü zorla */
        opacity: 1; /* Saydamlık varsa kaldır */
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Derinlik kat */
        -webkit-mask: none;
    }
    
    /* Arkadaki gold efekt mobilde fazla yer kaplarsa gizleyebiliriz veya küçültebiliriz */
    .gold-circle {
        width: 200px;
        height: 200px;
        top: 50%;
    }

    /* Grid yapısına mobilde kenar boşluğu verelim ki kartlar ekrana yapışmasın */
    .services-grid {
        padding: 0 20px; /* Sağdan soldan boşluk */
        gap: 40px; /* Kartlar arası dikey boşluk artırıldı */
        margin-top: 50px; /* Hero bölümüyle arayı biraz açalım */
        padding-bottom: 50px;
    }

    /* Kartların genişlik ayarı */
    .service-card {
        min-width: 100%; /* Mobilde kart bulunduğu alanı tam doldursun */
        max-width: 100%; /* Sınırlamayı kaldırıyoruz */
        margin-bottom: 20px; /* Ekstra güvenlik boşluğu */
    }

    /* Kart içindeki resim yüksekliği mobilde biraz daha kompakt olabilir */
    .card-image {
        height: 200px;
    }

    /* Yüzen ikonun yerini resim yüksekliğine göre revize edelim */
    /* Resim 200px ise, ikonun ortası (35px) -> 200 - 35 = 165px */
    .floating-icon {
        top: 165px; 
        right: 20px; /* Sağdan biraz daha içeri alalım */
        width: 60px; /* Mobilde ikon bir tık küçülebilir */
        height: 60px;
    }
    
    .floating-icon i {
        font-size: 20px; /* İkon simgesini de oranlayalım */
    }

    /* İçerik yazısı */
    .card-content {
        padding: 25px; /* Mobilde padding biraz azaltıldı */
        padding-top: 35px; /* İkon payı */
    }

    .service-card h3 {
        font-size: 20px; /* Başlık bir tık küçüldü */
    }

    /* --- ARAÇ BÖLÜMÜ MOBİL AYARLARI --- */
    
    .vehicle-feature {
        padding: 50px 0; /* Mobilde dikey boşluğu azalttık */
    }

    .feature-wrapper {
        flex-direction: column; /* Yan yana değil, alt alta diz */
        gap: 40px;
    }

    .feature-image img {
        height: 300px; /* Masaüstünde 800px yapmıştık, mobilde çok uzun olur. Bunu kısalttık. */
        width: 100%;
        object-fit: cover;
    }

    /* Mobilde resmin arkasındaki süs çerçevesini gizleyelim, kalabalık yapmasın */
    .border-effect {
        display: none;
    }

    .feature-content {
        text-align: center; /* Başlık ve açıklamayı ortala */
    }

    .feature-content h2 {
        font-size: 28px; /* Başlık boyutunu telefona göre küçült */
    }
    
    /* Özellikler listesi (Wifi, TV vs.) */
    .features-list {
        grid-template-columns: 1fr; /* Tek sütun olsun (alt alta) */
        text-align: left; /* İkon ve yazı yine de sola yaslı dursun, daha şık durur */
        padding: 0 10px; /* Kenarlardan hafif boşluk */
    }
    
    .f-item {
        justify-content: flex-start; /* İçerik sola yaslı */
    }

    /* --- BLOG MOBİL --- */
    .blog-grid {
        grid-template-columns: 1fr; /* Bloglar alt alta */
        gap: 40px;
    }

    /* --- İLETİŞİM BANNER MOBİL --- */
    .contact-wrapper {
        flex-direction: column; /* Alt alta diz */
        align-items: flex-start; /* Sola yasla */
        gap: 30px;
        padding: 30px;
    }

    .c-divider {
        display: none; /* Mobilde dikey çizgileri gizle */
    }

    .c-box {
        width: 100%;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.05); /* Altına çizgi çek */
    }

    .c-box:last-child {
        border-bottom: none; /* Son kutuda çizgi olmasın */
        padding-bottom: 0;
    }

    /* --- YORUMLAR (TESTIMONIALS) MOBİL AYARLARI --- */
    
    .testimonials {
        padding: 50px 0; /* Dikey boşluğu azalttık */
        border-bottom: 1px solid rgba(255,255,255,0.05)
    }

    /* Başlık Alanı */
    .testimonials .section-header {
        margin-bottom: 30px; /* Kartlarla arasını biraz kapattık */
        padding: 0 10px;
    }

    .testimonials .sub-text {
        font-size: 14px; /* Alt yazıyı mobilde biraz küçült */
        margin-bottom: 30px; /* Alt boşluk ayarı */
    }

    /* Başlık Fontlarını Mobilde Küçült */
    .testimonials h2.section-title, 
    .testimonials .section-white {
        font-size: 28px; /* Masaüstünde 38px idi, mobilde 28px yaptık */
        line-height: 1.3; /* Satır aralığını düzelttik */
    }

    /* Izgara Yapısını Tek Sütuna Düşür */
    .testimonial-grid {
        grid-template-columns: 1fr; /* Yan yana değil, alt alta diz */
        gap: 20px; /* Kartlar arası boşluk */
        padding: 0 10px; /* Ekran kenarına yapışmasın */
    }

    /* Kart İç Düzeni */
    .testimonial-card {
        padding: 20px; /* Kartın iç dolgusunu biraz azalttık */
    }

   /* --- FOOTER (ALT BİLGİ) MOBİL DÜZENLEMESİ --- */
    
    .site-footer {
        padding: 50px 0 30px 0; /* Üstten ve alttan boşluk */
        text-align: center; /* Her şeyi ortala! */
    }

    .footer-row {
        flex-direction: column; /* Yan yana değil, alt alta */
        gap: 50px; /* Bölümlerin arasını iyice aç, nefes alsın */
        padding: 0 20px;
    }

    /* 1. Logo ve Hakkımızda Kısmı */
    .footer-logo {
        margin: 0 auto 20px auto; /* Logoyu tam ortaya al */
        height: 50px; /* Mobilde logo çok devasa olmasın */
    }

    .about-col p {
        margin: 0 auto 25px auto; /* Yazıyı ortala */
        font-size: 14px;
        line-height: 1.8; /* Okunabilirliği artır */
    }

    /* Sosyal Medya İkonlarını Ortala */
    .social-links {
        justify-content: center; 
        gap: 20px; /* İkonların arasını aç */
    }

    /* 2. Başlıklar (Hızlı Erişim & İletişim) */
    .footer-col h3 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    /* O sarı çizgiyi tam ortaya çekiyoruz */
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%); /* Sihirli ortalama kodu */
        width: 40px; /* Çizgiyi biraz uzat */
    }

    /* 3. Linkler ve İletişim Bilgileri */
    .links-col ul li {
        justify-content: center; /* İçerikleri ortala */
        text-align: center;
        margin-bottom: 15px;
        
    }

    /* İkon ve Yazıyı Yan Yana Getir */
    .contact-col ul li {
        flex-direction: row !important; /* Yan yana diz (Öncekini ezmek için !important) */
        align-items: flex-start; /* İkon yazının tepesinde başlasın (Adres uzarsa ikon ortada kalmasın) */
        justify-content: center; /* Bloğu ekranın ortasında tut */
        text-align: left; /* Yazının kendisi sola hizalı olsun (Okuması kolay olur) */
        gap: 15px; /* İkon ile yazı arasına mesafe */
        margin-bottom: 20px; /* Her satırın arasını aç */
    }

    /* İkon Ayarı */
    .contact-col ul li i {
        margin-top: 5px; /* İkonu yazının ilk satırıyla aynı hizaya getir */
        font-size: 18px; /* İkonu biraz belirginleştir */
        min-width: 20px; /* İkonun kapladığı yer sabit olsun, yazı sıkıştırmasın */
    }
    
    .contact-col ul li {
        flex-direction: column; /* Mobilde ikon üstte, yazı altta daha şık durabilir */
        gap: 10px;
    }

    /* 4. En Alt Telif Yazısı */
    .footer-bottom {
        margin-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.05);
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 12px;
        opacity: 0.5;
    }

    .about-seo-section { padding: 50px 0; border-bottom: 1px solid rgba(255,255,255,0.05);}
    
    .about-wrapper {
        padding: 30px 20px;
        border: none; /* Mobilde çerçeveyi kaldır */
        background: transparent;
        box-shadow: none;
    }
    
    .about-wrapper::before, .about-wrapper::after { display: none; }

    .about-header h2 { font-size: 32px; }
    .intro-text { font-size: 16px; }

    .about-content {
        grid-template-columns: 1fr; /* Tek sütuna düş */
        gap: 30px;
        border-top: none;
        padding-top: 20px;
    }
    
    /* Mobilde ikonları ve başlıkları ortalayalım, daha şık durur */
    .about-icon, .about-content h3 { text-align: center; }
    
    /* Paragraflar yine de sola yaslı kalsın, okuması kolay olur */
    .about-content p { text-align: left; }

    .btn-text-gold { grid-column: span 1; }
    

    .about-content p {
        text-align: center;
    }

    .page-header-section { height: 25vh; }
    .page-title { font-size: 32px; }
    
    .service-row, .service-row.reverse {
        flex-direction: column; /* Mobilde alt alta */
        padding: 20px;
        gap: 30px;
    }
    
    .srv-img { width: 100%; height: 220px; }
    
    .srv-features {
        grid-template-columns: 1fr; /* Mobilde maddeler alt alta */
    }
    
    .btn-srv { width: 100%; text-align: center; box-sizing: border-box; }

    .process-grid {
        flex-direction: column; /* Alt alta diz */
        gap: 30px;
    }
    
    .step-arrow {
        transform: rotate(90deg); /* Oku aşağı çevir */
        color: #d4af37; /* Mobilde gold olsun görünsün */
        margin: -15px 0; /* Araları çok açmasın */
        z-index: 2;
    }
    
    .process-step { width: 100%; box-sizing: border-box; }
    
    .trust-banner {
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }

    /* --- SSS (FAQ) MOBİL AYARLARI --- */
    
    .faq-section {
        padding: 50px 0; /* Üst/Alt boşluğu biraz azalttık */
    }

    .faq-container {
        padding: 0 10px; /* Kutular ekrana yapışmasın */
    }

    /* Soru Kutusu */
    .faq-question {
        padding: 20px; /* İç boşluğu mobilde biraz kıstık */
        gap: 15px; /* Yazı ile ikon arasına mesafe */
        align-items: center; /* İkon ve yazı ortalı dursun */
    }

    .faq-question h3 {
        font-size: 16px; /* Mobilde yazı çok devasa olmasın */
        line-height: 1.5; /* Satır aralığını açtık, okunması kolay olsun */
        /* İkonun üzerine binmesin diye genişlik sınırı koyabiliriz ama flex-shrink çözecek */
    }

    /* KRİTİK AYAR: İkonun Ezilmesini Önleme */
    .faq-question i {
        font-size: 16px; 
        min-width: 20px; /* İkonun kapladığı yer sabit kalsın */
        flex-shrink: 0; /* Yazı uzasa bile ikonu ASLA sıkıştırma */
    }

    /* Cevap Alanı */
    .faq-answer p {
        font-size: 14px; /* Cevap yazısı mobilde ideal boyutta olsun */
        padding-right: 10px; 
    }
    .story-wrapper {
        flex-direction: column; /* Alt alta */
        gap: 50px;
    }
    
    .story-content h2 { font-size: 32px; }
    
    .exp-badge {
        left: 20px; /* Mobilde biraz içeri al */
        bottom: -20px;
        padding: 15px;
    }
    .exp-badge .years { font-size: 30px; }
    
    .values-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
    
    .counter-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .area-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .area-list-box {
        width: 100%;
        padding: 25px;
        box-sizing: border-box;
    }
    
    .district-grid {
        flex-direction: column; /* Listeler alt alta */
        gap: 10px;
    }
    
    .cert-grid {
        grid-template-columns: 1fr 1fr; /* Mobilde 2 yan yana (kare kare) */
        gap: 15px;
    }
    /* Grid yapısını iptal et, Flex (Yan yana) yap */
    .slider-track {
        display: flex; 
        gap: 20px;
        width: max-content; /* İçerik kadar uza */
        animation: scroll 30s linear infinite; /* 30 saniyede bir tur */
    }

    /* Mobilde gizlediğimiz kopyaları geri aç (Döngü için lazım) */
    .mobile-only {
        display: flex; 
    }

    /* Slider Animasyonu */
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); } /* Listeyi yarısına kadar kaydır */
    }

    /* Kutuları mobilde biraz küçült */
    .ref-item {
        padding: 15px;
        min-width: 240px; /* Sabit genişlik ver ki ezilmesin */
        white-space: nowrap;
    }

    /* Dokununca dursun */
    .slider-track:hover {
        animation-play-state: paused;
    }
    
    /* Kenarlardan karartma efekti (Hoş görünüm) */
    .slider-wrapper {
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    .contact-wrapper-grid {
        flex-direction: column; /* Alt alta diz */
        gap: 40px;
    }
    
    .contact-info-box, 
    .contact-form-box {
        width: 100%; /* Tam genişlik */
        padding: 30px 20px;
        box-sizing: border-box;
    }
    
    .hubs-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta */
        gap: 20px;
    }

    /* 1. Haritayı İdeal Mobil Boyuta Getir */
    .map-section, 
    .map-section iframe {
        height: 400px !important;      /* 550px çok fazlaydı, 400 ideal */
        min-height: 400px !important;
        margin-bottom: 0 !important;
        display: block !important;
    }

    /* 2. Footer Haritaya Temizce Yapışsın */
    .site-footer {
        margin-top: 0 !important;
        position: relative !important;
        z-index: 20 !important;        /* Footer her zaman üstte kalsın */
        box-shadow: 0 -5px 15px rgba(0,0,0,0.5); /* Hafif gölge */
        padding-top: 40px !important;  /* İç boşluk */
    }

    .blog-grid-layout {
        grid-template-columns: 1fr; /* Mobilde 1'li (Alt alta) */
        gap: 40px;
    }
    
    .blog-filter {
        gap: 10px; /* Buton aralarını sıkılaştır */
        overflow-x: auto; /* Çok buton olursa yana kaydırılabilir olsun */
        white-space: nowrap;
        justify-content: flex-start; /* Mobilde sola yasla */
        padding-bottom: 10px;
    }

    .post-img {
        height: 220px;
    }

    .blog-filter {
        display: grid !important;          /* Grid sistemine geç */
        grid-template-columns: 1fr 1fr;    /* 2 Eşit Sütun */
        gap: 10px !important;              /* Aralarında 10px boşluk */
        justify-content: center !important;
        padding: 0 10px !important;
        flex-wrap: wrap !important; /* Eski flex ayarını ezmek için */
    }

    .blog-filter button {
        width: 100% !important;   /* Kutuyu tam doldur */
        text-align: center !important;
        margin: 0 !important;
        padding: 10px 0 !important; /* Dikeyde biraz kalın olsun */
        font-size: 13px !important;
        border-radius: 10px !important; /* Daha karemsi olsun */
    }

     .content-wrapper {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
    
    .blog-title-box h1 {
        font-size: 28px;
    }
    
    .sidebar {
        order: 2; /* Sidebar'ı yazının altına at */
    }

    .layout-grid {
        grid-template-columns: 1fr; /* Tek sütun */
        gap: 40px;
    }

    .article-title { font-size: 28px; }
    .article-header { padding: 100px 0 60px 0; }
    
    /* Mobilde Sidebar'ı alta al */
    .sidebar-column { order: 2; }

    .page-header-section {
        /* 1. Header üstüne bindiği için içeriği aşağı itiyoruz */
        padding-top: 130px !important; 
        padding-bottom: 50px !important;

        /* 2. Kutunun boyunu uzatıyoruz ki resim tam görünsün */
        height: auto !important; 
        min-height: 400px !important;

        /* 3. Mobilde resim kaymasın diye 'fixed' özelliğini kapatıyoruz */
        background-attachment: scroll !important; 
        
        /* 4. Resmi ortalıyoruz */
        background-position: center center !important;
        background-size: cover !important;
    }

    /* Başlık çok büyükse mobilde biraz küçültelim */
    .page-title {
        font-size: 34px !important;
        line-height: 1.2 !important;
    }

    /* Alt yazı menünün altında kalmasın */
    .page-subtitle {
        font-size: 16px !important;
        padding: 0 15px !important;
    }

    /* 1. Ana Arka Planı Düzelt */
    body, html {
        /* 'fixed' mobilde sorunludur, 'scroll' yaparak akıcı hale getiriyoruz */
        background-attachment: scroll !important; 
        
        /* Arka planın tüm ekranı kapladığından ve tekrar etmediğinden emin oluyoruz */
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center top !important;
        
        /* Beyazlık kalmaması için minimum yükseklik veriyoruz */
        min-height: 100vh !important;
        width: 100% !important;
        
        /* Yatay taşmayı (sağa sola kaymayı) engelle */
        overflow-x: hidden !important;
    }

    /* 2. Sayfa İçi Kapak Resimlerini (Header altındaki resimler) Düzelt */
    .page-header-section, 
    .contact-header-bg, 
    .about-header-bg, 
    .blog-header-bg {
        /* Mobilde resim sabit durmaya çalışıp bozulmasın */
        background-attachment: scroll !important;
        
        /* Resmi ortala ve kutuya sığdır */
        background-position: center center !important;
        background-size: cover !important;
        
        /* Yüksekliği garantiye al */
        height: auto !important;
        min-height: 300px !important; 
    }

    /* =========================================
   MOBİL KAYDIRMA (SCROLL) VE DONMA ÇÖZÜMÜ
   ========================================= */

/* 1. Sayfanın Doğal Kaydırmasını Tamir Et */
html, body {
    /* Yükseklik sınırını kaldır, içerik kadar uzasın */
    height: auto !important;
    min-height: 100% !important;
    
    /* Dikey kaydırmayı tarayıcıya bırak */
    overflow-y: auto !important;
    overflow-x: hidden !important;
    
    /* Mobil Kaydırma Fiziklerini Aç (Yağ gibi kayması için) */
    -webkit-overflow-scrolling: touch !important;
    
    /* Dokunmatik eylemleri serbest bırak */
    touch-action: pan-y !important;
    
    /* Sayfa pozisyonunu sabitleme (Kilitlenmeyi önler) */
    position: relative !important;
}

/* 2. AOS Animasyonlarını Ekran Kartına (GPU) Yükle */
/* Bu kod, animasyonlar hesaplanırken telefonun donmasını engeller */
[data-aos] {
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    
    /* Donanım hızlandırmayı aç */
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
    
    /* Tarayıcıya bunun değişeceğini haber ver (Hazırlıklı olsun) */
    will-change: opacity, transform !important;
}

/* 3. Animasyon Sırasında Tıklamayı Engelle (Performans İçin) */
/* Animasyon bitene kadar öğeye dokunulmaz, bu da kaydırmayı rahatlatır */
body[data-aos-easing] {
    pointer-events: none;
}
body[data-aos-easing] .main-container {
    pointer-events: auto;
}

.fixed-buttons {
        right: 15px;
        bottom: 20px;
        gap: 12px;
    }
    
    .fixed-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .fixed-btn .btn-text {
        font-size: 13px;
        padding: 6px 12px;
        right: 65px;
    }

     .fixed-buttons {
        right: 15px;
        bottom: 20px;
        gap: 12px;
    }
    
    .fixed-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .fixed-btn .btn-text {
        font-size: 13px;
        padding: 6px 12px;
        right: 65px;
    }
    
    .back-to-top-btn {
        left: 15px;
        bottom: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    /* Mobilde butonlar arası daha fazla mesafe */
    .fixed-buttons {
        bottom: 90px; /* Yukarı çık butonundan yukarıda */
    }
    
    .back-to-top-btn {
        bottom: 20px;
    }

    /* --- HEADER (EN ÜST ŞERİT) AYARLARI --- */
header {
    /* O siyah renk yerine senin Vito resmini koyuyoruz */
    background: url('img/navbannerimg.webp');
    background-size: cover; /* Resmi şeride yay */
    background-position: center center; /* Resmin ortasını göster (Araba görünsün) */
    background-repeat: no-repeat;
    
    /* Şeridin konumu ve düzeni */
    position: fixed; /* Sayfa kayarken üstte sabit kalsın istersen 'fixed', kalmasın istersen 'relative' yap */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    
    /* İçerik Hizalaması */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 3%; /* Şeridin kalınlığını buradan ayarlayabilirsin */
    box-shadow: 0 5px 15px rgba(0,0,0,0.5); /* Altına gölge atalım ki havada dursun */
}

/* Linklerin Rengi (Resim koyu olduğu için BEYAZ yapıyoruz) */
header .nav-menu ul li a {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8); /* Yazıların arkasına gölge */
}

/* Hamburger Menü İkonu (Mobildeki 3 çizgi) */
.hamburger i {
    color: #fff; 
}

    

}

/* =========================================
   YATAY KAYDIRMA ÇUBUĞU ÇÖZÜMÜ (TEMİZ)
   ========================================= */
body {
    overflow-x: hidden !important;
    width: 100%;
}

/* =========================================
   AOS ANİMASYON CSS'İ (MUTLAKA EKLEYİN)
   ========================================= */

/* AOS için temel stiller */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s;
    transition-timing-function: ease-out;
}

/* AOS animasyonları */
[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) !important;
}

/* Özel animasyon başlangıç pozisyonları */
[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"] {
    transform: translateX(50px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-out"] {
    transform: scale(1.1);
}

[data-aos].aos-animate[data-aos="zoom-in"],
[data-aos].aos-animate[data-aos="zoom-out"] {
    transform: scale(1) !important;
}

/* Mobilde daha hızlı animasyonlar */
@media (max-width: 768px) {
    [data-aos] {
        transition-duration: 0.5s !important;
    }
    
    [data-aos="fade-up"],
    [data-aos="fade-down"] {
        transform: translateY(20px);
    }
    
    [data-aos="fade-left"],
    [data-aos="fade-right"] {
        transform: translateX(30px);
    }
}

/* Back to Top Butonu */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #d4af37;
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

/* Sayfa yükleme animasyonu */
body.loaded .hero-content {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

.hero-content {
    opacity: 0;
    transform: translateY(20px);
}

/* =========================================
   MOBİL MAVİ TIKLAMA EFEKTİNİ TAMAMEN KAPATMA
   ========================================= */

/* 1. Tüm elementler için mavi vurguyu kapat */
*, *::before, *::after {
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
}

/* 2. Linkler, butonlar ve ikonlar için ekstra önlem */
a, button, input, select, textarea, i, div, span, li {
    outline: none !important;
    box-shadow: none !important;
}

/* 3. Odaklanınca (tıklayınca) çıkan çerçeveyi sil */
*:focus, *:active, *:hover {
    outline: none !important;
    -webkit-focus-ring-color: transparent !important;
}

/* 4. Hamburger menüye özel ayar (Mavi kutu en çok burada çıkar) */
#hamburger-btn, #hamburger-btn i {
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
    border: none !important;
}

/* =========================================
   KARTLARI KOMPLE TIKLANABİLİR YAPMA (HAYALET KATMAN)
   ========================================= */

/* 1. Kartları "Referans Noktası" Yap */
/* Bu sayede içindeki link bu sınırların dışına taşmaz */
.blog-post-card, 
.blog-card, 
.service-card, 
.testimonial-card {
    position: relative !important; /* Sınırları belirle */
    cursor: pointer !important;    /* Fare üzerine gelince el işareti çıksın */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hafif bir hover efekti ekleyelim */
}

/* 2. Kartların üzerine gelince hafifçe havalansın (Şık durur) */
.blog-post-card:hover, 
.blog-card:hover, 
.service-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
}

/* 3. SİHİRLİ KOD: İçindeki linki tüm karta yay */
/* Kartın içindeki 'Devamını Oku' veya 'Başlık' linkini bulup görünmez şekilde büyütür */
.read-more-link::after,
.read-more::after,
.post-content h3 a::after,
.blog-content h3 a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Diğer her şeyin üzerine seril */
}

/* 4. İçerideki diğer yazıların seçilebilir kalmasını sağla (Opsiyonel) */
/* Linkin karta yayılması bazen metin seçimini engeller, bunu düzeltmek için: */
.post-content p, 
.blog-content p,
.post-cat,
.blog-date {
    position: relative;
    z-index: 3; /* Hayalet katmanın üstünde kalsın */
    pointer-events: none; /* Tıklamayı yine de karta (arkaya) geçir */
}

/* =========================================
   BACK TO TOP BUTTON (SOL TARAFTA)
   ========================================= */
.back-to-top-btn {
    position: fixed;
    left: 20px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: #0d4cbf;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998; /* Sabit butonlardan bir alt katmanda */
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background: linear-gradient(135deg, #0f3460, #1a1a2e);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* =========================================
   SABİT WHATSAPP VE TELEFON BUTONLARI (SAĞ TARAFTA)
   ========================================= */
.fixed-buttons {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.fixed-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.fixed-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.fixed-btn.whatsapp {
    background: #25D366;
}

.fixed-btn.phone {
    background: #0d4cbf;
}

.fixed-btn .btn-text {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.fixed-btn .btn-text:after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid rgba(255, 255, 255, 0.95);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.fixed-btn:hover .btn-text {
    opacity: 1;
    visibility: visible;
}

/* Butonlar arasındaki boşluğu ayarla */
.fixed-buttons {
    bottom: 30px;
}

.back-to-top-btn {
    bottom: 30px;
}



/* Butonlara giriş animasyonu */
.fixed-buttons {
    animation: slideInRight 0.5s ease-out;
}

.back-to-top-btn {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================================
   CLEAN SHOWROOM v4.0 (SERİ & HATASIZ)
========================================= */

/* =========================================
   MOBİL İÇİN ANİMASYON AYARLARI (768px ve altı)
========================================= */
@media screen and (max-width: 768px) {
    
    /* 1. Statik Resmi Gizle (Artık animasyon var) */
    .mobile-only-image { 
        display: none !important; 
    }
    
    /* 2. Sahne Alanını Mobilde Aç */
    .clean-stage-container {
        display: flex !important; /* Gizliliği kaldır */
        width: 100%;
        height: 320px; /* Mobilde yükseklik daha az olsun */
        padding: 0; /* Kenar boşluğuna gerek yok, ortalayacağız */
        justify-content: center; /* Kartı tam ortaya koy */
        margin-bottom: 20px; /* Yazılarla arasına mesafe */
    }

    /* 3. Kartın Boyutunu Telefona Göre Küçült */
    .clean-white-card {
        width: 90% !important; /* Ekranın %90'ını kaplasın */
        max-width: 350px; /* Çok da büyümesin */
        height: 250px !important; /* Daha kompakt yükseklik */
        box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Gölgeyi hafiflet */
    }

    /* 4. İçindeki Yazıları Küçült */
    .cb-title {
        font-size: 2.2rem !important; /* Mobilde devasa olmasın */
    }
    .cb-subtitle {
        font-size: 0.6rem !important;
        letter-spacing: 2px !important;
    }
    
    /* 5. Araba ve Çizgi Konumu */
    .clean-vito {
        width: 85% !important; /* Arabayı karta sığdır */
        bottom: 40px !important;
    }
    .floor-line {
        left: 20px !important;
        right: 20px !important;
        bottom: 40px !important;
    }
    
    /* 6. Düzen Ayarı (Hero Bölümü) */
    /* Mobilde önce animasyon, sonra yazı gelsin istersen: column-reverse */
    /* Önce yazı, sonra animasyon gelsin istersen: column */
    .hero {
        flex-direction: column-reverse; 
        padding-top: 100px; /* Header payı */
        gap: 10px;
    }
    
    .hero-content {
        min-width: 100% !important;
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}


/* --- Masaüstü Ayarları (769px+) --- */
@media screen and (min-width: 769px) {
    .mobile-only-image { display: none; }
    
    /* 1. SAHNE ALANI */
    .clean-stage-container {
        display: flex;
        justify-content: flex-start; /* Sola dayalı */
        align-items: center;
        width: 100%;
        height: 450px;
        padding-left: 5%;
        /* ÖNEMLİ: Sahne dışına taşan her şeyi gizle */
        overflow: hidden; 
    }

    /* 2. BEYAZ KUTU (MASKELİ) */
    .clean-white-card {
        position: relative;
        width: 650px;
        height: 380px;
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        /* ÖNEMLİ: Araba bu kutudan çıktığı an görünmez olur */
        overflow: hidden; 
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #f0f0f0;
        z-index: 10;
    }

    /* 3. YOL ÇİZGİSİ */
    .floor-line {
        position: absolute;
        bottom: 55px;
        left: 40px;
        right: 40px;
        height: 1px;
        background: #0d4cbf;
        z-index: 1;
    }
    .floor-line::after {
        content: '';
        position: absolute;
        right: 0; top: -1px; width: 80px; height: 3px;
        background: #d4af37;
    }

    /* 4. YAZI (MARKA) */
    .clean-brand-text {
        text-align: center;
        z-index: 1;
        opacity: 0;
        /* 8 Saniyelik Hızlı Döngü */
        animation: textFast 8s ease-in-out infinite;
    }

    .cb-title {
        font-family: 'Playfair Display', serif;
        font-size: 3.8rem;
        font-weight: 700;
        color: #0f52ba;
        line-height: 1;
    }
    .cb-gold { color: #d4af37; font-style: italic; }
    
    .cb-subtitle {
        font-family: 'Poppins', sans-serif;
        font-size: 0.8rem;
        letter-spacing: 4px;
        color: #999;
        font-weight: 600;
        margin-top: 10px;
        border-top: 1px solid #d4af37;
        padding-top: 10px;
        display: inline-block;
    }

    /* 5. ARABA (VITO) */
    .clean-vito {
        position: absolute;
        bottom: 8px;
        left: 50%;
        /* Arabanın yönü tersse buraya scaleX(-1) ekle */
        /* transform: translateX(-50%) scaleX(-1); */
        width: 82%;
        height: auto;
        z-index: 2;
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
        
        /* 8 Saniyelik Hızlı Döngü */
        animation: carFast 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
    }
}

/* =========================================
   HIZLI & GİZLİ GEÇİŞ ZAMANLAMASI (8 Sn)
========================================= */

@keyframes carFast {
    /* [0s - 2.4s] BEKLEME: Araba Vitrinde */
    0%, 30% { 
        transform: translateX(-50%); 
        opacity: 1; 
    }
    
    /* [2.4s - 3.2s] GİDİŞ: Araba HIZLA Sola Gider (0.8 saniyede) */
    40% { 
        transform: translateX(-200%); /* Tamamen sola at */
        opacity: 1; 
    }
    
    /* [3.2s - 3.3s] IŞINLANMA: Görünmez ol ve Sağa Geç */
    41% { 
        transform: translateX(-200%); 
        opacity: 0; /* GÖRÜNMEZ OL */
    }
    42% { 
        transform: translateX(200%); /* SAĞA GEÇ (Hala görünmez) */
        opacity: 0; 
    }
    
    /* [3.3s - 6.8s] BEKLEME: Sağda gizli bekle (Yazı okunuyor) */
    85% { 
        transform: translateX(200%); 
        opacity: 0; 
    }
    
    /* [6.8s - 8.0s] GELİŞ: Araba Sağdan HIZLA Girer */
    90% {
        opacity: 1; /* Görünür ol */
    }
    100% { 
        transform: translateX(-50%); /* Merkeze park et */
        opacity: 1; 
    }
}

@keyframes textFast {
    /* Araba varken gizli */
    0%, 35% { opacity: 0; transform: translateY(10px); }
    
    /* Araba gidince HEMEN belir */
    45%, 80% { opacity: 1; transform: translateY(0); }
    
    /* Araba gelirken silin */
    90%, 100% { opacity: 0; transform: translateY(-10px); }
}

/* 4. ANİMASYON KUTUSU BOYUT AYARI (GÜNCELLENDİ) */
@media screen and (min-width: 769px) {
    .clean-white-card {
        /* Genişliği 480'den 580'e çıkardık */
        width: 580px !important; 
        
        /* Yüksekliği de orantılı artırdık */
        height: 350px !important; 
    }
    
    /* İçindeki yazıları da kutuya göre büyüttük */
    .cb-title { 
        font-size: 3.6rem !important; /* Yazı da büyüdü */
    }
    
    /* Araba ve çizgiyi biraz daha yukarı aldık (Kutu büyüdüğü için) */
    .clean-vito { bottom: 50px !important; } 
    .floor-line { bottom: 50px !important; }
}

/* EKSTRA GÜVENLİK: Eğer ekran 1300px'den küçükse kutu yazılara çarpmasın diye alt alta al */
@media screen and (max-width: 1300px) {
    .hero {
        flex-direction: column-reverse; /* Alt alta sırala */
        text-align: center;
        justify-content: center;
        padding-top: 150px;
    }

    .hero-content {
        min-width: 100%;
        padding: 0 20px;
    }

    .hero-image-container {
        max-width: 100%;
        justify-content: center;
        margin-bottom: 40px;
    }
}

/* =========================================
   MOBİL ANİMASYON DÜZELTME (EKSİK PARÇA)
========================================= */

@media screen and (max-width: 768px) {
    
    /* 1. KUTUNUN GİZLİLİĞİNİ KALDIR */
    .clean-stage-container {
        display: flex !important;
        width: 100%;
        height: 300px;
        padding: 0;
        justify-content: center;
        overflow: hidden; /* Taşan araba görünmesin */
    }

    /* 2. KARTIN MOBİL AYARLARI */
    .clean-white-card {
        width: 90% !important;
        height: 260px !important;
        position: relative; /* İçindekiler buna göre hizalansın */
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden; /* Maskeleme çalışsın */
    }

    /* 3. ARABA (VITO) - MOBİL İÇİN HAREKET KOMUTU */
    .clean-vito {
        position: absolute !important; /* Özgürce hareket etsin */
        left: 50% !important;
        bottom: 40px !important;
        width: 85% !important;
        z-index: 2;
        
        /* 🔥 İŞTE EKSİK OLAN KOMUT BURADA 🔥 */
        /* Masaüstündeki animasyonun aynısını mobile de veriyoruz */
        animation: carFast 8s cubic-bezier(0.65, 0, 0.35, 1) infinite !important;
    }

    /* 4. YAZI - MOBİL İÇİN HAREKET KOMUTU */
    .clean-brand-text {
        position: relative;
        z-index: 1;
        text-align: center;
        
        /* 🔥 EKSİK KOMUT 🔥 */
        animation: textFast 8s ease-in-out infinite !important;
    }

    /* Yazı boyutlarını düzeltme */
    .cb-title { font-size: 2.5rem !important; }
    .cb-subtitle { font-size: 0.7rem !important; }
    .cb-line { margin: 10px auto !important; }

    /* 5. YOL ÇİZGİSİ */
    .floor-line {
        position: absolute !important;
        left: 20px !important;
        right: 20px !important;
        bottom: 40px !important;
    }

    /* 6. ESKİ RESMİ GİZLE */
    .mobile-only-image { display: none !important; }
}

/* =========================================
   SAFİR VIP ANIMASYON (GLOBAL AYARLAR)
   Hem Mobil Hem Masaüstü İçin Ortak Tasarım
========================================= */

/* 1. KUTU TASARIMI (Ortak) */
.clean-white-card {
    position: relative;
    background-color: #ffffff !important; /* KESİN BEYAZ */
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2); /* Ortak Gölge */
    border: 1px solid #f0f0f0;
    overflow: hidden; /* Maskeleme */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* 2. YAZI TİPLERİ (Ortak) */
.clean-brand-text {
    text-align: center;
    z-index: 1;
    opacity: 0;
    animation: textFast 8s ease-in-out infinite; /* Ortak Animasyon */
}

.cb-title {
    font-family: 'Playfair Display', serif !important; /* Font Garantisi */
    font-weight: 700;
    color: #0f52ba;
    line-height: 1;
}

.cb-gold { color: #d4af37; font-style: italic; }

.cb-subtitle {
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: 4px;
    color: #999;
    font-weight: 600;
    margin-top: 10px;
    border-top: 1px solid #d4af37;
    padding-top: 10px;
    display: inline-block;
}

/* 3. ARABA AYARLARI (Ortak) */
.clean-vito {
    position: absolute;
    left: 50%;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    /* Animasyonu burada tanımlıyoruz, her yerde çalışsın */
    animation: carFast 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

/* 4. YOL ÇİZGİSİ (Ortak) */
.floor-line {
    position: absolute;
    height: 1px;
    background: #e5e5e5;
    z-index: 1;
}
.floor-line::after {
    content: '';
    position: absolute;
    right: 0; top: -1px; width: 60px; height: 3px;
    background: #d4af37;
}

/* =========================================
   CİHAZA ÖZEL BOYUTLANDIRMA
========================================= */

/* --- MASAÜSTÜ (Geniş Ekran) --- */
@media screen and (min-width: 769px) {
    .mobile-only-image { display: none; } /* Eski resmi gizle */
    
    .clean-stage-container {
        display: flex;
        justify-content: flex-end; /* Sağa yasla */
        padding-right: 5%;
        width: 100%;
        height: 450px;
    }

    .clean-white-card {
        width: 580px;  /* Masaüstü Genişliği */
        height: 350px; /* Masaüstü Yüksekliği */
    }

    .cb-title { font-size: 3.6rem; }
    .cb-subtitle { font-size: 0.8rem; }
    
    .clean-vito { 
        width: 82%; 
        bottom: 50px; 
        transform: translateX(-50%); /* Başlangıç konumu */
    }
    .floor-line { bottom: 50px; left: 40px; right: 40px; }
}

/* --- MOBİL (Telefon) --- */
@media screen and (max-width: 768px) {
    .mobile-only-image { display: none !important; } /* Eski resmi kesin gizle */

    /* Hero Bölümü Düzeni */
    .hero {
        flex-direction: column-reverse; /* Animasyon üstte, yazı altta */
        padding-top: 100px;
        gap: 20px;
    }
    
    /* Sol taraf (Yazılar) ayarı */
    .hero-content {
        min-width: 100%;
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-buttons { justify-content: center; }

    /* Animasyon Sahnesi */
    .clean-stage-container {
        display: flex !important;
        width: 100%;
        height: 280px; /* Mobilde daha kısa sahne */
        justify-content: center; /* Ortala */
        align-items: center;
        margin-bottom: 20px;
    }

    /* KARTIN MOBİL BOYUTU */
    .clean-white-card {
        width: 90% !important; /* Ekranın %90'ı */
        max-width: 380px;
        height: 240px !important; /* Mobil yüksekliği */
    }

    /* Yazıları Küçült */
    .cb-title { font-size: 2.2rem !important; }
    .cb-subtitle { font-size: 0.6rem !important; letter-spacing: 2px !important; }

    /* Araba Konumu */
    .clean-vito { 
        width: 85% !important; 
        bottom: 35px !important;
        /* Mobilde animasyonun çalışması için transform şart */
        transform: translateX(-50%); 
    }
    .floor-line { bottom: 35px !important; left: 20px !important; right: 20px !important; }
}

/* =========================================
   ANIMASYON KEYFRAMES (Ortak)
========================================= */

@keyframes carFast {
    0%, 30% { transform: translateX(-50%); opacity: 1; }
    40% { transform: translateX(-200%); opacity: 1; }
    41% { transform: translateX(-200%); opacity: 0; }
    42% { transform: translateX(200%); opacity: 0; }
    85% { transform: translateX(200%); opacity: 0; }
    90% { opacity: 1; }
    100% { transform: translateX(-50%); opacity: 1; }
}

@keyframes textFast {
    0%, 35% { opacity: 0; transform: translateY(10px); }
    45%, 80% { opacity: 1; transform: translateY(0); }
    90%, 100% { opacity: 0; transform: translateY(-10px); }
}



















    



