/* -----------------------------------
   ASTAŞ NAKLİYAT - NİHAİ STİL DOSYASI
   Tüm butonlar tutarlı | Yorumlar kronolojik doğru | Mobil uyumlu
   Bölge sayfaları, hizmet sayfaları, blog ve şehirler arası için gerekli tüm sınıflar eklendi
   ----------------------------------- */

:root {
    --primary: #1E3A8A;
    --primary-dark: #152C66;
    --secondary: #F59E0B;
    --secondary-dark: #D97706;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --dark: #1F2937;
    --gray: #4B5563;
    --light: #F3F4F6;
    --white: #FFFFFF;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ====================================
   TÜM BUTONLAR (TEK YERDEN YÖNETİM)
   ==================================== */

/* Birincil Buton (Turuncu) */
.btn-primary,
button[type="submit"] {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary:hover,
button[type="submit"]:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* İkincil Buton (Şeffaf - Beyaz Çerçeveli) */
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--white);
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* İkincil Buton (Mavi Çerçeveli) - Bölge sayfaları için */
.btn-secondary-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.btn-secondary-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* CTA Butonu (Header'daki Teklif Al) */
.btn-cta {
    background: var(--secondary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

.btn-cta:hover {
    background: var(--secondary-dark);
    transform: scale(1.05);
}

/* Google Yorum Butonu */
.btn-google-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-google-review:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Kart içi "Devamı →" butonu */
.card-link {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
}

.card-link:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* WhatsApp Sabit Buton */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--whatsapp);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-fixed:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.1);
}

/* Mobil Alt Butonlar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.mobile-bottom-bar a {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-mobile-call {
    background: var(--primary);
    color: white;
}

.btn-mobile-wa {
    background: var(--whatsapp);
    color: white;
}

/* Footer'daki telefon ve mail linkleri */
.footer a[href^="tel"],
.footer a[href^="mailto"] {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer a[href^="tel"]:hover,
.footer a[href^="mailto"]:hover {
    color: var(--secondary);
}

/* ====================================
   BAŞLIK HİYERARŞİSİ
   ==================================== */

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

a {
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
}
ul { list-style: none; }

/* ====================================
   GENEL BÖLÜM SINIFLARI
   ==================================== */

.section-padding {
    padding: 60px 0;
}

.section-bg {
    background: var(--light);
}

.section-title-center {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: var(--gray);
}

.table-responsive {
    overflow-x: auto;
    max-width: 800px;
    margin: 0 auto;
}

.cta-text-center {
    text-align: center;
    margin-top: 25px;
}

.text-primary-bold {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.text-primary-bold:hover {
    text-decoration: underline;
}

/* CTA Dark Section */
.section-cta-dark {
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.section-cta-dark h2 {
    color: var(--white);
}

.section-cta-dark p {
    margin: 20px 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-light {
    background: var(--white);
    color: var(--primary);
}

.btn-cta-light:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-cta-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Testimonial Grid (Müşteri yorumları için - 3 sütun) */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Mahalle Detay Grid (Etimesgut tarzı mahalle kartları için) */
.mahalle-detay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* ====================================
   TEKNOLOJİ GRİDİ (Piyano sayfası ve diğerleri için)
   ==================================== */

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.tech-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #E2E8F0;
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tech-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tech-icon i {
    color: white;
    font-size: 26px;
}

.tech-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #0F172A;
}

.tech-card p {
    color: #334155;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ====================================
   FİYAT GRİDİ (Fiyatlandırma kartları için)
   ==================================== */

.fiyat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.fiyat-item {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid var(--primary);
}

.fiyat-item h3, .fiyat-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0F172A;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fiyat-item p {
    margin-bottom: 0;
    color: #334155;
    line-height: 1.45;
}

/* ====================================
   SÜREÇ GRİDİ (Evden eve süreç kartları için)
   ==================================== */

.surec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.surec-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #E2E8F0;
}

.surec-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.surec-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.surec-icon i {
    color: white;
    font-size: 26px;
}

.surec-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #0F172A;
}

.surec-card p {
    color: #334155;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ====================================
   UZMANLIK ROZETİ
   ==================================== */

.expertise-badge {
    background: #FEF3C7;
    color: #B45309;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

/* ====================================
   GÜVEN ROZETLERİ (Trust Badges)
   ==================================== */

.trust-badge {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 40px;
    border: 1px solid #E2E8F0;
    font-weight: 500;
    color: var(--dark);
}

.trust-badge i {
    color: var(--secondary);
    margin-right: 6px;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-snippet {
    border-top: 1px solid #E2E8F0;
    padding-top: 20px;
    font-style: italic;
    color: var(--gray);
}

/* ====================================
   BLOG DETAY GÖRSELLERİ
   ==================================== */

.blog-detail-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
}

.blog-content {
    overflow: hidden;
}

/* ====================================
   TOP BAR & HEADER
   ==================================== */

.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.top-bar a {
    color: var(--white);
    margin-right: 20px;
}
.top-bar i {
    margin-right: 6px;
}

.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 20px;
}
.logo a {
    display: flex;
    align-items: center;
}
.logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}
.navbar {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-menu {
    display: flex;
    gap: 25px;
}
.nav-menu li {
    position: relative;
}
.nav-menu a {
    font-weight: 600;
    padding: 8px 0;
}
.nav-menu a:hover {
    color: var(--secondary);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu li {
    border-bottom: 1px solid var(--light);
}
.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--dark);
    font-size: 14px;
}
.dropdown-menu a:hover {
    background: var(--light);
    color: var(--secondary);
    padding-left: 25px;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

/* ====================================
   SLIDER (CLS önlemi eklendi)
   ==================================== */

.slider-container {
    position: relative;
    overflow: hidden;
}
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.slide-content h2, .slide-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.slide-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}
.slider-btn:hover {
    background: var(--secondary);
}
.prev { left: 20px; }
.next { right: 20px; }
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}
.dot.active {
    background: var(--secondary);
}

/* ====================================
   PAGE HEADER (Bölge sayfaları için)
   ==================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #3B82F6 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}
.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ====================================
   SERVICE GRID (Bölge sayfaları için)
   ==================================== */

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.service-text h2 {
    margin-bottom: 20px;
}
.service-text p {
    margin-bottom: 15px;
    color: var(--gray);
}
.hizmet-detay-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* ====================================
   MAHALLE GRID (Bölge sayfaları için - basit liste)
   ==================================== */

.mahalle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}
.mahalle-item {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.mahalle-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.mahalle-card {
    background: var(--white);
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary);
    transition: var(--transition);
}
.mahalle-card strong {
    display: block;
    color: var(--primary);
    margin-bottom: 6px;
}
.mahalle-card p {
    margin: 0;
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.4;
}
.mahalle-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ====================================
   FİYAT TABLOSU (Bölge sayfaları için)
   ==================================== */

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 20px 0;
}
.price-table th {
    background: var(--primary);
    color: var(--white);
    padding: 14px;
    font-weight: 600;
}
.price-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #E2E8F0;
    text-align: center;
}
.price-table tr:last-child td {
    border-bottom: none;
}
.price-table td:first-child {
    font-weight: 700;
    color: var(--primary);
}
.price-table tr:nth-child(even) td {
    background: #F8FAFC;
}

/* ====================================
   TESTIMONIAL SLIDER (Bölge sayfaları için)
   ==================================== */

.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}
.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.testimonial-slider .testimonial-card {
    min-width: 100%;
    box-sizing: border-box;
    padding: 30px;
}

/* ====================================
   STEP LIST (Eryaman sayfası için)
   ==================================== */

.step-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}
.step-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}
.step-number {
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* ====================================
   FİYAT POLİTİKASI KUTUSU (Bölge sayfaları için)
   ==================================== */

.fiyat-politika-box {
    background: #F8FAFC;
    border-left: 5px solid var(--primary);
    border-radius: 12px;
    padding: 24px 20px;
    margin: 28px 0 20px 0;
    box-shadow: var(--shadow);
}
.fiyat-politika-box h3 {
    margin: 0 0 12px 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F172A;
}
.fiyat-politika-box h4 {
    font-weight: 600;
    margin: 18px 0 12px 0;
    color: #0F172A;
}
.fiyat-politika-box ul {
    list-style: none;
    padding-left: 0;
}
.fiyat-politika-box li {
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.fiyat-politika-box li i {
    color: var(--primary);
    margin-top: 3px;
}

/* ====================================
   SİZİ ARAYALIM FORMU
   ==================================== */

.call-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 60px 0;
}
.call-form-advanced {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}
.call-form-advanced input,
.call-form-advanced select,
.call-form-advanced textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}
.call-form-advanced textarea {
    resize: vertical;
    font-family: inherit;
}

/* ====================================
   HİZMET KARTLARI
   ==================================== */

.services-section {
    padding: 60px 0;
    background: var(--light);
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.card-content {
    padding: 20px;
}
.card-content h3 {
    margin-bottom: 10px;
}
.card-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

/* ====================================
   SEO İÇERİK ALANI (content-section)
   ==================================== */

.content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.content-section .seo-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #334155;
}

.content-section .seo-content h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.content-section .seo-content h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-section .seo-content a {
    color: var(--primary);
    font-weight: bold;
    text-decoration: underline;
}

.content-section .seo-content a:hover {
    color: var(--secondary);
}

/* ====================================
   NEDEN ASTAŞ & HAKKIMIZDA
   ==================================== */

.why-us-section {
    padding: 60px 0;
}
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.features-list i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* ====================================
   GOOGLE YORUMLARI
   ==================================== */

.testimonials-section {
    background: var(--light);
    padding: 60px 0;
}
.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.testimonial-card .rating {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.testimonial-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 12px;
}
.testimonial-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}
.testimonial-name {
    font-weight: 700;
    color: var(--primary);
}
.testimonial-date {
    font-size: 0.8rem;
    color: #6B7280;
}
.owner-response {
    background: #F0FDF4;
    border-left: 4px solid var(--secondary);
    padding: 12px 16px;
    border-radius: 8px;
    margin: 12px 0;
    font-size: 0.9rem;
}
.owner-response strong {
    color: var(--primary);
    display: block;
    margin-bottom: 6px;
}
.owner-response p {
    margin-bottom: 0;
    color: var(--dark);
}
.review-verification {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
}
.review-verification a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}
.review-verification a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* ====================================
   BÖLGELER BÖLÜMÜ
   ==================================== */

.regions-section {
    background: var(--light);
    padding: 60px 0;
}
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    text-align: center;
}
.region-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    transition: 0.3s;
    display: block;
}
.region-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.region-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}
.region-card h3, .region-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* ====================================
   SSS BÖLÜMÜ
   ==================================== */

.faq-section {
    padding: 60px 0;
}
.faq-item {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 15px;
}
.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question i {
    transition: 0.3s;
}
.faq-answer {
    display: none;
    padding: 0 20px 20px 20px;
    color: var(--gray);
    border-top: 1px solid #e5e7eb;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ====================================
   BLOG BÖLÜMÜ
   ==================================== */

.blog-section {
    padding: 60px 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.blog-card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.blog-card-content {
    padding: 20px;
}
.blog-date {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

/* ====================================
   FOOTER
   ==================================== */

.footer {
    background: var(--dark);
    color: #9ca3af;
    padding: 50px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    margin-bottom: 10px;
}
.footer ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}
.footer ul li a:hover {
    color: var(--secondary);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

/* ====================================
   MOBİL DÜZELTMELER (OPTİMİZE EDİLDİ)
   ==================================== */

@media (max-width: 768px) {
    body { 
        overflow-x: hidden; 
        padding-bottom: 60px; 
    }
    
    .top-bar .email { 
        display: none; 
    }
    
    .hamburger { 
        display: flex; 
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
        gap: 15px;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        padding-left: 20px;
        width: 100%;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .slide-content h2, 
    .slide-content h1 { 
        font-size: 1.8rem; 
    }
    
    .slide-buttons { 
        flex-direction: column; 
        align-items: center; 
    }
    
    .slide-buttons .btn-primary, 
    .slide-buttons .btn-secondary { 
        width: 80%; 
        margin: 5px auto; 
    }
    
    .service-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .service-grid img {
        width: 100% !important;
        height: auto !important;
        order: 2 !important;
    }
    
    .service-grid .service-text {
        order: 1 !important;
    }
    
    .two-columns { 
        grid-template-columns: 1fr; 
        gap: 30px; 
    }
    
    .features-list li { 
        flex-wrap: wrap; 
        word-break: break-word; 
    }
    
    .mahalle-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    
    .region-grid { 
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
        justify-items: center; 
        gap: 15px;
    }
    
    .region-card { 
        width: 100%; 
        box-sizing: border-box; 
        padding: 15px 10px; 
    }
    
    .region-card i {
        font-size: 1.8rem;
    }
    
    .footer-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    
    .testimonial-card { 
        max-width: 100%; 
        box-sizing: border-box; 
    }
    
    .testimonial-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    /* Testimonial Grid Mobil */
    .testimonial-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Mahalle Detay Grid Mobil */
    .mahalle-detay-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Tech Grid Mobil */
    .tech-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Fiyat Grid Mobil */
    .fiyat-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Surec Grid Mobil */
    .surec-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Flex Center Mobil */
    .flex-center {
        flex-direction: column;
        gap: 12px;
    }
    
    /* MOBİL BUTONLAR - TEK SEÇİCİDE TOPLANDI */
    .btn-primary, 
    .btn-secondary,
    .btn-secondary-outline,
    .card-link,
    .btn-google-review {
        display: block;
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
    
    .container { 
        width: 95% !important; 
        padding: 0 10px !important; 
    }
    
    .whatsapp-fixed { 
        display: none; 
    }
    
    .mobile-bottom-bar { 
        display: flex; 
    }
    
    .service-cards, 
    .blog-grid, 
    .testimonials-list { 
        grid-template-columns: 1fr !important; 
        gap: 20px !important; 
    }
    
    .price-table th, 
    .price-table td {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    /* FLEX BETWEEN MOBİL */
    .flex-between {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary-outline {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }
    
    .section-cta-dark {
        padding: 40px 0;
    }
    
    /* Mobilde kart linkleri için ek dokunma alanı */
    .card-link,
    .btn-google-review,
    .btn-mobile-call,
    .btn-mobile-wa {
        cursor: pointer;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .mobile-bottom-bar { 
        display: none; 
    }
    .whatsapp-fixed { 
        display: flex; 
    }
}

/* ====================================
   EKRAN OKUYUCULAR VE ERİŞİLEBİLİRLİK
   ==================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus görünürlüğü (klavye ile gezenler için) */
a:focus,
button:focus,
.btn-primary:focus,
.btn-google-review:focus,
.card-link:focus {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}