/* =========================================
   1. GENEL AYARLAR & SIFIRLAMA
   ========================================= */
:root {
    --primary-red: #D90429;
    --dark-red: #b00320;
    --primary-black: #1a1a1a;
    --secondary-black: #2d2d2d;
    --text-white: #ffffff;
    --text-gray: #e0e0e0;
}

html, body {
    margin: 0; padding: 0;
    width: 100%;
    overflow-x: hidden !important; /* Sağa sola kaymayı engeller */
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; scroll-behavior: smooth; }

body {
    background-color: var(--primary-black);
    color: var(--text-gray);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; height: auto; }

.page-spacer { height: 120px; background-color: var(--primary-black); }
@media (max-width: 900px) { .page-spacer { height: 80px; } }


/* =========================================
   2. ÜST BİLGİ ÇUBUĞU
   ========================================= */
.top-bar {
    background-color: #111;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    position: relative;
    z-index: 1002;
}
.top-bar-text {
    font-weight: 800; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; color: #ffffff; cursor: default;
    text-shadow: 2px 2px 4px #000000, 0 0 10px var(--primary-red);
}
.social-icons a { color: #ccc; margin-left: 15px; font-size: 1rem; }
.social-icons a:hover { color: var(--primary-red); }


/* =========================================
   3. NAVİGASYON (HEADER)
   ========================================= */
header {
    position: absolute; width: 100%; top: 65px; z-index: 1000; padding: 0 2%; transition: top 0.3s ease; left: 0;
}

.custom-navbar {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 30px; 
    height: 90px; 
    border-radius: 50px;
    background: linear-gradient(115deg, rgba(26,26,26,0.98) 55%, rgba(217, 4, 41, 0.95) 55%);
    backdrop-filter: blur(15px); 
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    border: 2px solid var(--primary-red);
    box-sizing: border-box;
    white-space: nowrap;
}

/* Logo Alanı */
.brand-logo-container { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
    gap: 12px; 
    z-index: 1001; 
    flex-shrink: 0; 
}

.logo-icon { 
    font-size: 2.4rem; 
    color: var(--primary-red); 
    position: relative; 
}
.logo-icon::after { 
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; 
    position: absolute; 
    font-size: 0.8rem; 
    bottom: 7px; 
    right: -5px; 
    color: white; background: var(--primary-red); border-radius: 50%; 
    padding: 3px; border: 2px solid #222; 
}

.brand-logo-text { 
    font-size: 1.4rem;
    font-weight: 900; color: white; letter-spacing: 1px; 
    line-height: 1; text-align: left; display: flex; flex-direction: column;
}
.brand-logo-text span { 
    color: var(--primary-red); 
    font-size: 1.8rem;
}

/* Menü Linkleri */
.menu-items { 
    display: flex; 
    gap: 20px; 
    align-items: center; 
    margin: 0; padding: 0;
}

.menu-items li a {
    font-weight: 700;
    font-size: 0.9rem; 
    text-transform: uppercase;
    position: relative;
    color: #ffffff !important; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    text-decoration: none;
}

.menu-items li a:not(.btn-fiyat-ozel)::before { 
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0%; height: 3px; background-color: white; transition: 0.3s; 
}
.menu-items li a:not(.btn-fiyat-ozel):hover::before { width: 100%; }

/* Fiyat Listesi Özel Buton */
a.btn-fiyat-ozel, 
a.btn-fiyat-ozel:visited, 
a.btn-fiyat-ozel.active {
    background-color: #ffffff !important; 
    color: #D90429 !important; 
    font-size: 18px !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    font-weight: 900 !important;
    transition: all 0.3s ease;
    border: 2px solid transparent !important;
    text-decoration: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
}
a.btn-fiyat-ozel:hover {
    transform: scale(1.05);
}

.hamburger { display: none; cursor: pointer; z-index: 1002; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: white; transition: 0.3s; }


/* =========================================
   4. HERO SLIDER
   ========================================= */
.hero-slider { position: relative; width: 100%; height: 100vh; min-height: 600px; overflow: hidden; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s; background-size: cover; background-position: center; display: flex; align-items: center; }
.slide.active { opacity: 1; }
.slide::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%); z-index: 1; }

.hero-content { position: relative; z-index: 2; padding-left: 8%; max-width: 850px; transform: translateY(30px); opacity: 0; transition: 0.8s ease 0.5s; }
.slide.active .hero-content { transform: translateY(0); opacity: 1; }
.hero-subtitle { color: var(--primary-red); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; display: block; margin-bottom: 10px; text-shadow: 1px 1px 2px black; }
.hero-title { font-size: 4rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; text-shadow: 2px 2px 10px rgba(0,0,0,0.8); }
.hero-desc { font-size: 1.2rem; color: #f0f0f0; margin-bottom: 30px; text-shadow: 1px 1px 2px black; font-weight: 500; }
.hero-content .cta-btn { background-color: var(--primary-red) !important; color: #ffffff !important; padding: 15px 40px; border-radius: 30px; font-weight: 700; font-size: 1.1rem; display: inline-block; border: none; box-shadow: 0 5px 15px rgba(0,0,0,0.5); }

.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.1); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; border: 1px solid rgba(255,255,255,0.2); }
.prev-btn { left: 20px; } .next-btn { right: 20px; }


/* =========================================
   5. HİZMET KARTLARI & BÖLÜMLER
   ========================================= */
.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 10px; color: white; }
.section-title span { color: var(--primary-red); }
.services-section { padding: 80px 5%; background-color: #1a1a1a; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }

.service-item { position: relative; height: 300px; border-radius: 20px; overflow: hidden; cursor: pointer; display: block; text-decoration: none; box-shadow: 0 10px 20px rgba(0,0,0,0.3); border: 1px solid #333; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; filter: saturate(1.3) contrast(1.15) brightness(1.05); }
.service-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, transparent 100%); z-index: 2; }
.service-icon { background: var(--primary-red); width: 50px; height: 50px; line-height: 50px; text-align: center; border-radius: 50%; margin-bottom: 10px; font-size: 1.2rem; color: white; }
.service-item:hover .service-img { transform: scale(1.1); filter: saturate(1.5) contrast(1.25) brightness(1.1); }
.service-item h3 { font-size: 1.4rem; margin-bottom: 5px; color: white; }
.service-item p { color: #ddd; font-size: 0.95rem; }

.about-section { padding: 80px 5%; background-color: #222; text-align: center; }
.about-content { max-width: 800px; margin: 0 auto; }
.process-card { background: #2d2d2d; padding: 40px 30px; border-radius: 15px; border: 1px solid #444; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.icon-box { font-size: 3rem; color: var(--primary-red); margin-bottom: 20px; }
.btn-outline-red { display: inline-flex; align-items: center; gap: 10px; padding: 12px 35px; border-radius: 30px; font-weight: 700; font-size: 1rem; text-decoration: none; border: 2px solid var(--primary-red); color: #ffffff; background: transparent; }
.why-us-section { background-color: #161616; background-image: radial-gradient(#252525 1px, transparent 1px); background-size: 20px 20px; padding: 80px 5%; text-align: center; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 50px auto 0; }
.why-card { background: #222; border: 1px solid #333; border-radius: 20px; padding: 40px 25px; display: flex; flex-direction: column; align-items: center; height: 100%; }
.why-icon-box { width: 80px; height: 80px; margin-bottom: 25px; background: rgba(255, 255, 255, 0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--primary-red); }
.why-card h3 { color: white; font-size: 1.3rem; font-weight: 800; margin-bottom: 15px; }


/* =========================================
   6. DETAY SAYFALARI (HERO)
   ========================================= */
.oto-detail-section, .elek-detail-section, .emlak-detail-section, .part-detail-section, .toptan-detail-section, .special-detail-section { background-color: #f9f9f9; color: #333; padding-bottom: 100px; width: 100%; }

.oto-hero, .elek-hero, .emlak-hero, .part-hero, .toptan-hero, .special-hero {
    width: 100%; min-height: 60vh;
    background-size: cover; background-position: center center; background-repeat: no-repeat;
    padding-top: 250px !important; padding-bottom: 100px !important; padding-left: 5%; padding-right: 5%;
    text-align: center; color: white; position: relative; margin-top: 0;
    display: flex; flex-direction: column; justify-content: center; align-items: center; left: 0;
}
.oto-hero::before, .elek-hero::before, .emlak-hero::before, .part-hero::before, .toptan-hero::before, .special-hero::before { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.6); z-index: 0; }
.oto-hero > *, .elek-hero > *, .emlak-hero > *, .part-hero > *, .toptan-hero > *, .special-hero > * { position: relative; z-index: 1; max-width: 900px; }
.oto-hero h1, .elek-hero h1, .emlak-hero h1, .part-hero h1, .toptan-hero h1, .special-hero h1 { font-size: 3.5rem; font-weight: 900; margin-bottom: 20px; text-shadow: 2px 2px 10px rgba(0,0,0,0.8); line-height: 1.2; }
.oto-hero span, .elek-hero span, .emlak-hero span, .part-hero span, .toptan-hero span, .special-hero span { color: var(--primary-red); }
.oto-hero p, .elek-hero p, .emlak-hero p, .part-hero p, .toptan-hero p, .special-hero p { font-size: 1.3rem; color: #f0f0f0; font-weight: 500; text-shadow: 1px 1px 3px rgba(0,0,0,0.8); }

.feature-row { display: flex; align-items: center; justify-content: center; padding: 60px 10%; gap: 60px; max-width: 1400px; margin: 0 auto; }
.feature-row:nth-child(even) { flex-direction: row-reverse; background-color: #ffffff; }
.feature-text { flex: 1; } 
.feature-image { flex: 1; display: flex; justify-content: center; }
.feature-image img { width: 100%; max-width: 550px; height: auto; border-radius: 15px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.step-number { font-size: 4rem; font-weight: 900; color: #e0e0e0; line-height: 1; margin-bottom: -20px; position: relative; z-index: 0; }
.feature-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 20px; position: relative; z-index: 1; color: #222; }
.feature-text p { font-size: 1.1rem; line-height: 1.8; color: #555; }

/* Uyarı ve CTA */
.important-note, .warning-note, .legal-note, .legal-warning, .commercial-note { max-width: 900px; margin: 50px auto; padding: 25px 30px; border-radius: 10px; font-size: 1rem; display: flex; align-items: center; gap: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.important-note, .warning-note, .legal-note { background-color: #fff8e1; border-left: 5px solid #ffc107; color: #856404; }
.legal-warning { background-color: #ffebee; border-left: 5px solid #d32f2f; color: #b71c1c; }
.capacity-note { background-color: #e3f2fd; border-left: 5px solid #2196f3; color: #0d47a1; }
.commercial-note { background-color: #2c3e50; color: white; border: none; }
.price-tag-box, .price-highlight { background-color: var(--primary-red); color: white; padding: 5px 10px; border-radius: 5px; font-weight: bold; font-size: 0.9rem; }
.cta-area { text-align: center; padding: 60px 5%; background-color: #1a1a1a; }
.cta-area h3 { color: white; margin-bottom: 20px; font-size: 2rem; }
.cta-area p { color: #bbb; margin-bottom: 30px; font-size: 1.1rem; }
.btn-list, .btn-whatsapp { display: inline-flex; align-items: center; gap: 10px; padding: 15px 40px; border-radius: 50px; font-weight: 700; font-size: 1.1rem; text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.btn-list { background-color: var(--primary-red); color: white; }


/* =========================================
   7. DİĞER SAYFALAR
   ========================================= */
.services-page-section { background-color: #1a1a1a; padding: 50px 5% 100px; min-height: 80vh; }
.services-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; }
.service-detail-card { background: #2d2d2d; border: 1px solid #444; border-radius: 20px; padding: 40px 30px; position: relative; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; }
.card-icon-wrapper { width: 70px; height: 70px; background: rgba(255, 0, 0, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; color: var(--primary-red); font-size: 1.8rem; }
.service-detail-card:hover { transform: translateY(-10px); border-color: var(--primary-red); box-shadow: 0 10px 30px rgba(0,0,0,0.3); background: #333; }
.service-detail-card:hover .card-icon-wrapper { background: var(--primary-red); color: white; }
.card-title { font-size: 1.5rem; font-weight: 700; color: #ffffff; margin-bottom: 15px; }
.card-desc { color: #ccc; line-height: 1.7; font-size: 0.95rem; margin-bottom: 25px; flex-grow: 1; }
.card-features { list-style: none; padding: 0; border-top: 1px solid #444; padding-top: 20px; }
.card-features li { color: #ddd; font-size: 0.9rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.card-features li i { color: var(--primary-red); font-size: 0.8rem; }
.card-link-text { margin-top: 20px; color: var(--primary-red); font-weight: bold; text-transform: uppercase; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }

.checklist-section, .contract-section { background-color: #1a1a1a; padding: 50px 5% 100px; display: flex; flex-direction: column; align-items: center; }
.checklist-paper, .contract-container { background-color: #fff; color: #333; width: 100%; max-width: 800px; padding: 50px; border-radius: 5px; box-shadow: 0 0 20px rgba(0,0,0,0.5); font-family: 'Arial', sans-serif; }
.checklist-header, .contract-header { border-bottom: 3px solid var(--primary-red); padding-bottom: 20px; margin-bottom: 30px; display: flex; justify-content: space-between; align-items: center; }
.checklist-title, .contract-header h1 { font-size: 1.8rem; font-weight: 900; text-transform: uppercase; color: #000; }
.car-info-grid, .device-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; background-color: #f4f4f4; padding: 20px; border-radius: 8px; margin-bottom: 30px; border: 1px solid #ddd; }
.category-head { background-color: #333; color: white; padding: 8px 15px; font-weight: bold; text-transform: uppercase; font-size: 0.95rem; border-radius: 4px; margin-bottom: 10px; }
.check-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #eee; }
.action-btn, .print-btn { background-color: var(--primary-red); color: white; border: none; padding: 12px 30px; border-radius: 30px; font-weight: bold; cursor: pointer; margin-bottom: 20px; display: inline-flex; align-items: center; gap: 10px; font-size: 1rem; transition: 0.3s; }

.map-section { background-color: #fff; padding: 50px 5%; text-align: center; min-height: 800px; }
.turkey-map { width: 100%; max-width: 1000px; margin: 0 auto; display: block; overflow: visible; }
.turkey-map path { fill: #555; stroke: #fff; stroke-width: 1px; transition: all 0.3s ease; cursor: pointer; }
#turkey_map_paths > g:hover path { fill: #D90429 !important; filter: drop-shadow(0 5px 15px rgba(217, 4, 41, 0.4)); transform: translateY(-5px) scale(1.01); z-index: 999; position: relative; }
#city-name-box { position: fixed; background: #D90429; color: white; padding: 10px 20px; border-radius: 8px; font-weight: bold; font-size: 1rem; text-transform: uppercase; white-space: nowrap; pointer-events: none; z-index: 999999; display: none; box-shadow: 0 5px 15px rgba(0,0,0,0.4); border: 2px solid white; }
.city-section { background-color: #fff; padding: 50px 5% 100px; min-height: 80vh; text-align: center; }
.firms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; max-width: 1000px; margin: 0 auto; }
.firm-card { background: #ffffff; border-radius: 15px; padding: 30px 20px; transition: 0.3s; display: flex; flex-direction: column; align-items: center; border: 1px solid #eee; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.firm-card:hover { transform: translateY(-10px); border-color: #D90429; box-shadow: 0 15px 30px rgba(217, 4, 41, 0.15); }
.firm-logo-box { width: 120px; height: 120px; background-color: #f9f9f9; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; border: 4px solid #fff; box-shadow: 0 0 15px rgba(0,0,0,0.1); overflow: hidden; transition: 0.3s; }
.firm-card:hover .firm-logo-box { border-color: #D90429; }
.firm-logo-img { width: 70%; height: auto; object-fit: contain; opacity: 0.8; }

/* SSS & Fiyat */
.faq-page-section, .contact-page-section, .pricing-page-section { background-color: #1a1a1a; padding: 50px 5% 100px; min-height: 80vh; }
.accordion-item { background: #2d2d2d; border: 1px solid #444; margin-bottom: 20px; border-radius: 15px; overflow: hidden; transition: 0.3s; }
.accordion-header { padding: 25px 30px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: transparent; border: none; width: 100%; text-align: left; transition: 0.3s; }
.accordion-header h3 { color: #ffffff; font-size: 1.1rem; font-weight: 700; margin: 0; }
.accordion-icon { color: var(--primary-red); font-size: 1.2rem; transition: transform 0.3s ease; }
.accordion-item.active .accordion-header { background: rgba(255, 0, 0, 0.1); }
.accordion-item.active .accordion-icon { transform: rotate(180deg); }
.accordion-body { padding: 25px 30px; color: #ddd; font-size: 1rem; line-height: 1.6; border-top: 1px solid #444; }
.pricing-card { background: #2d2d2d; border: 1px solid #444; border-radius: 20px; padding: 40px 30px; text-align: center; transition: 0.3s; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; }
.pricing-card:hover { border-color: var(--primary-red); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); background: #333; }
.price-tag { color: var(--primary-red); font-size: 2.5rem; font-weight: 900; margin-bottom: 10px; }

/* Footer */
footer { background-color: #111; padding: 60px 5% 30px; border-top: 1px solid #333; margin-top: auto; width: 100%; position: relative; z-index: 10; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 50px; }
.footer-logo-text { font-size: 1.5rem; font-weight: 900; color: #ffffff; margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase; }
.footer-logo-text span { color: #D90429; }
.footer-col h4 { color: #ffffff; font-size: 1.2rem; margin-bottom: 25px; position: relative; padding-left: 15px; border-left: 4px solid #D90429; line-height: 1.2; }
.footer-col h4::before { display: none; }
.footer-col p, .footer-col a { color: #bbb; font-size: 0.95rem; margin-bottom: 10px; display: block; text-decoration: none; }
.footer-col a:hover { color: #D90429; padding-left: 5px; }
.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 20px; color: #666; font-size: 0.85rem; }
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background-color: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); z-index: 9999; animation: pulse 2s infinite; transition: 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); background-color: #1ebc57; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }


/* ======================================================
   11. RESPONSIVE DÜZENLEMELER (YENİLENMİŞ)
   ====================================================== */

/* 1. KADEME: Laptop ve Tablet (1150px Altı)
   Bu sınıra indiği an menü direkt HAMBURGER olur.
   Böylece asla üst üste binmez. */
@media (max-width: 1150px) {
    
    .top-bar { flex-direction: column; gap: 10px; text-align: center; }
    
    header { position: relative !important; top: 0 !important; padding: 0 !important; background-color: #111; }
    
    .custom-navbar { 
        background: transparent; 
        border-radius: 0; 
        height: 70px; 
        padding: 0 20px; 
        border: none; 
        border-bottom: 2px solid var(--primary-red); 
        box-shadow: none; 
    }
    
    .logo-icon { font-size: 1.5rem; margin-right: 0; }
    .brand-logo-text { font-size: 1.2rem; line-height: 1; }
    .brand-logo-text span { font-size: 1.4rem; }
    
    .hamburger { display: block !important; cursor: pointer; z-index: 1003; }
    
    .menu-items { 
        position: fixed; 
        left: -100%; 
        top: 0; 
        flex-direction: column; 
        background-color: rgba(0, 0, 0, 0.95); 
        width: 85%; 
        height: 100vh; 
        text-align: center; 
        transition: 0.4s ease; 
        padding-top: 0; 
        justify-content: center; 
        gap: 30px !important; 
        z-index: 1002; 
        box-shadow: 5px 0 20px rgba(0,0,0,0.5); 
    }
    
    .menu-items.active { left: 0; }
    .menu-items li a { font-size: 1.3rem !important; font-weight: 600; }
    
    /* Fiyat butonu mobil menüde normal link gibi dursun */
    a.btn-fiyat-ozel {
        background-color: transparent !important;
        color: white !important;
        border: 2px solid white !important;
        padding: 10px 30px !important;
    }
}

/* 2. KADEME: Tam Mobil (900px Altı) */
@media (max-width: 900px) {
    .hero-slider { position: relative; height: 500px; min-height: 50vh; margin-top: 0; z-index: 1; }
    .hero-content { padding: 0 20px; text-align: center; max-width: 100%; transform: translateY(0) !important; opacity: 1 !important; }
    .hero-title { font-size: 1.8rem; line-height: 1.3; }
    
    .oto-hero, .elek-hero, .emlak-hero, .part-hero, .toptan-hero, .special-hero { 
        min-height: 40vh; 
        padding-top: 60px !important; 
        padding-bottom: 60px !important; 
        margin-left: 0 !important; 
        margin-right: 0 !important; 
        width: 100% !important; 
        left: auto !important; 
        right: auto !important; 
    }
    .oto-hero h1, .elek-hero h1 { font-size: 1.8rem; }
    
    .feature-row, .feature-row:nth-child(even) { flex-direction: column; padding: 50px 5%; text-align: center; gap: 30px; }
    
    /* Grid yapılarını tek sütuna düşür */
    .contact-wrapper, .services-grid, .pricing-grid, .notes-grid, .firms-grid, .why-grid, .services-detail-grid { 
        grid-template-columns: 1fr !important; 
        gap: 20px !important;
    }
    
    .page-spacer { display: none; }
    
    footer { text-align: center; }
}