/* --- usta-style.css --- */

/* --- GENEL AYARLAR VE DEĞİŞKENLER --- */
:root {
    --primary-color: #023B72; /* Turuncu - Enerji, Hız, Eylem */
    --secondary-color: #00172f; /* Koyu Gri/Lacivert Tonu - Kurumsallık, Güven */
    --text-color: #555555; /* Genel Metin Rengi */
    --light-color: #FFFFFF; /* Beyaz */
    --bg-light: #F9F9F9; /* Açık Arka Plan Rengi */
    --border-color: #E0E0E0; /* Kenarlık Rengi */
    --font-primary: 'Montserrat', sans-serif; /* Tipografi: Montserrat */
    --reveal-duration: 600ms; /* animasyon süresi */
    --reveal-easing: cubic-bezier(.2,.8,.2,1);
    --reveal-distance: 20px; /* translate mesafesi */
}





  /* Basit demo layout için fazla boşluk */

  /* Reveal container */
  .reveal-text{
    max-width:800px;
    overflow:visible; /* spanlerin taşması için */
    display:inline-block;
    white-space:normal;
  }

  /* Her kelime için span */
  .reveal-text .word{
    display:inline-block;
    white-space:pre; /* kelime sonrası boşluğu korumak için */
    opacity:0;
    transform: translateY(var(--ty, var(--reveal-distance))) scale(var(--s,1));
    transition:
      opacity var(--duration, var(--reveal-duration)) var(--easing, var(--reveal-easing)),
      transform var(--duration, var(--reveal-duration)) var(--easing, var(--reveal-easing));
    will-change: opacity, transform;
  }

  /* Göründüğünde */
  .reveal-text .word.is-visible{
    opacity:1;
    transform: translateY(0) scale(1);
  }

  /* Yukarı / aşağı yön için kolay kontrol */
  .reveal-text[data-direction="up"] .word{ --ty: 18px; --s: 1; }
  .reveal-text[data-direction="down"] .word{ --ty: -18px; --s: 1; }
  .reveal-text[data-direction="zoom"] .word{ --ty: 0px; --s: 0.92; }



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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
}
.tx-center{
    text-align: center;
}
.square{
    aspect-ratio: 1/1;
}

 .btn-style901 {
	 position: relative !important;
	 background-color: #dd7e2a;
	 border-color: #dd7e2a;
	 color: #fff;
	 overflow: hidden;
}
 .btn-style901::before {
	 width: 25px;
	 height: 100%;
	 position: absolute;
	 left: 0;
	 top: 0;
	 content: "\f054";
	 font-family: "FontAwesome";
	 font-weight: bold;
	 font-size: 10px;
	 color: #fff;
	 text-indent: 5px;
	 border-radius: 0 50% 50% 0;
	 background-color: var(--secondary-color);
	 transform: translate(-50%, 0) scale(0, 1);
	 transform-origin: left center;
	 transition: all 0.25s;
     display: flex;
     align-items: center;
     justify-content: center;
	 z-index: 1;
}
 .btn-style901:hover {
}
 .btn-style901:hover::before {
	 transform: translate(-20%, 0) scale(1, 1);
}
 .click-btn {
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 margin: 0.5rem;
	 border: 1px solid;
	 text-align: center;
	 text-decoration: none;
	 transition: all 0.35s;
	 box-sizing: border-box;
}


a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- YARDIMCI SINIFLAR (UTILITY CLASSES) --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.container-1700 {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #00315e; /* Biraz daha koyu turuncu */
    color: #fff;
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #222222;
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

/* --- HEADER VE NAVİGASYON --- */
header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: 0.2s;
    backdrop-filter: blur(5px);
}
.nav-scrolled{
background-color: rgba(255,255,255,0.95);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: 0.2s;
}


.logo img {
    height: 65px; /* Logo boyutu */
    background-color: transparent !important;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links li a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.nav-links li a.active {
    color: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-location {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

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


/* --- FOOTER --- */
footer {
    background-color: var(--secondary-color);
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--light-color);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}
.footer-center{
    margin-left: 3rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover,
.footer-col ul li i {
    color: #fff;
}

.footer-col ul li i {
    margin-right: 10px;
}
.urunler-grid{
    background-color: var(--bg-light);
    width: 100%;
    max-width: 100%;
    padding: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}
.urun-card{
    max-width: 400px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.urun-card .urun-image{
    aspect-ratio: 16/9;
    background-color: red;
}
.urun-card .urun-adi{
    flex-grow: 1;
    margin-top: 1rem;
    padding: 0px 1rem;
    color: #000;
    font-size: 1.2rem;
    font-weight: 500;
}
.urun-card .incele-btn{
    background-color: var(--primary-color);
    color: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    padding: 6px 12px;
    margin-top: 1rem;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    background-color: #fff;
    color: #000;
    font-size: 0.9rem;
}
.copy{
    padding: 16px 12px;
    color: #000;
    font-size: 0.85rem;
}

/* --- ANASAYFA ÖZEL STİLLER --- */

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 85vh; /* Slider yüksekliği */
    background-color: #ddd; /* Görsel yüklenmezse gri fon */
    overflow: hidden;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    color: var(--light-color);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 700px;
    z-index: 2; /* İçeriği ön plana çıkar */
    position: relative;
    text-align: center;
}

.slide::before {
    /* Görselin üzerine koyu bir katman ekleyerek yazının okunmasını sağlar */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* %40 siyahlık */
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(8, 20, 36, 0.2) 100%);
    z-index: 1;
}

/* Slide Arka Plan Görselleri (Placeholder) */
.slide-1 { background: url('../../slider1.jpeg') no-repeat center center/cover; }
.slide-2 { background: url('https://placehold.co/1920x800/333/F58220?text=') no-repeat center center/cover; }
.slide-3 { background: url('https://placehold.co/1920x800/333/F58220?text=') no-repeat center center/cover; }

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.slide-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Güven Unsurları (Neden Usta Servis?) */
.trust-features {
    padding: 80px 0;
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item {
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Hizmetler Hızlı Bakış */
.services-quick-look {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.service-card {
    background-color: var(--light-color);
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0s ease, border-color 0.3s ease;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-15px) !important;
    border-bottom-color: var(--primary-color);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

/* Lokasyon Bulucu (Vurgu Alanı) */
.location-finder-banner {
    padding: 100px 0;
    /* Arka plan görseli: Flu Türkiye Haritası (Placeholder) */
    background: linear-gradient(rgba(51, 51, 51, 0.85), rgba(51, 51, 51, 0.85)), url('https://placehold.co/1600x600/333/F58220?text=Flu+Turkiye+Haritasi') no-repeat center center/cover;
    color: var(--light-color);
    text-align: center;
}

.location-finder-banner h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.location-finder-banner p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.location-form {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    display: inline-flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.location-form select {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-primary);
    min-width: 180px;
}

/* Filo ve Kurumsal Çözümler */
.corporate-solutions {
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.corporate-content {
    flex: 1;
    padding-right: 50px;
}

.corporate-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.corporate-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.corporate-image {
    flex: 1;
}

.corporate-image img {
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Footer Öncesi CTA */
.pre-footer-cta {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
}

.pre-footer-cta h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

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

.pre-footer-cta .btn:hover {
    background-color: #d2d2d2;
    color: var(--primary-color);
}

/* --- DİĞER SAYFALAR İÇİN STİLLER --- */

/* Sayfa Başlığı Banner (Hero olmayan sayfalar için) */
.page-header {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
}

/* Hakkımızda Sayfası */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
}
.home-about img{
    aspect-ratio: 1/1;
    object-fit: cover;
}
.about-img img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Hizmetler Sayfası (Tab Yapısı) */
.services-page-section {
    padding: 80px 0;
}

.tabs {
    text-align: center;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 15px 40px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
    border-radius: 5px;
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.tab-content {
    display: none; /* Varsayılan olarak gizle */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tab-content.active {
    display: grid; /* Aktif olanı göster */
}

.service-detail-card {
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.service-img {
    height: 200px;
    background-color: #ddd; /* Placeholder */
}

/* Service Detail Card Görselleri (Placeholder) */
.img-periyodik { background: url('https://placehold.co/600x400/333/F58220?text=Periyodik+Bakim') no-repeat center center/cover; }
.img-mekanik { background: url('https://placehold.co/600x400/333/F58220?text=Mekanik+Onarim') no-repeat center center/cover; }
.img-kaporta { background: url('https://placehold.co/600x400/333/F58220?text=Kaporta+Boya') no-repeat center center/cover; }
.img-lastik { background: url('https://placehold.co/600x400/333/F58220?text=Lastik+Jant') no-repeat center center/cover; }
.img-elektrik { background: url('https://placehold.co/600x400/333/F58220?text=Elektrik+Elektronik') no-repeat center center/cover; }

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Kurumsal Hizmetler Listesi */
.corporate-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.corp-service-item {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.corp-service-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.corp-service-item h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Ustalarımız (Bayiler) Sayfası */
.dealers-section {
    padding: 80px 0;
}
/* HAMBURGER BUTTON */
.mobile-menu-btn {
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    margin-left: auto;
}

.mobile-menu-btn span {
    width:28px;
    height:3px;
    background:var(--secondary-color);
    border-radius:2px;
}

/* OFFCANVAS MENU */
.mobile-offcanvas {
    position:fixed;
    top:0;
    left:-280px;
    width:280px;
    height:100vh;
    background:var(--light-color);
    box-shadow:2px 0 20px rgb(0 0 0 / .15);
    padding:20px;
    z-index:2000;
    display:flex;
    flex-direction:column;
    transition:left .35s ease;
}

.mobile-offcanvas.open {
    left:0;
}

.mobile-offcanvas-overlay {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgb(0 0 0 / .5);
    z-index:1500;
    display:none;
}

.mobile-offcanvas-overlay.active {
    display:block;
}

.offcanvas-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-bottom:15px;
    border-bottom:1px solid var(--border-color);
    margin-bottom:20px;
}

.offcanvas-header button {
    font-size:2rem;
    background:none;
    border:none;
    cursor:pointer;
    color:var(--secondary-color);
}

.mobile-offcanvas ul li {
    margin-bottom:18px;
}

.mobile-offcanvas a {
    font-size:1.2rem;
    font-weight:600;
    color:var(--secondary-color);
}
.whatsapp-button {
    position: fixed; /* Ekran üzerinde sabit konumlandırma */
    bottom:20px;    /* Alttan 20 piksel boşluk */
    left: 20px;      /* Soldan 20 piksel boşluk */
    z-index: 1000;   /* Diğer elementlerin üzerinde görünmesini sağlar */
    display: block;  /* Linkin bir blok element gibi davranmasını sağlar */
    width: 60px;     /* Buton genişliği */
    height: 60px;    /* Buton yüksekliği */
    border-radius: 50%; /* Butonu yuvarlak yapar */
    overflow: hidden; /* Taşmayı gizler, ikonun yuvarlak çerçeveye sığmasını sağlar */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Hafif bir gölge efekti */
    transition: transform 0.3s ease-in-out; /* Fare üzerine gelince animasyon */
}

.whatsapp-button img {
    width: 100%; /* Resmin butonun genişliğini doldurmasını sağlar */
    height: 100%; /* Resmin butonun yüksekliğini doldurmasını sağlar */
    object-fit: cover; /* Resmin butona tam oturmasını sağlar */
}

.whatsapp-button:hover {
    transform: scale(1.1); /* Fare üzerine gelince butonu hafifçe büyütür */
}

/* Mobil cihazlar için responsive ayarlar */
@media (max-width: 768px) {
  .mobile-bottom{
    display: flex;
  }
    .whatsapp-button {
        width: 50px; 
        height: 50px;
        left: 15px;
    }
}
/* RESPONSIVE */
@media (max-width:768px) {
.urunler-grid{
grid-template-columns: 1fr;
padding: 1rem;
}
.footer-center{
    margin-left: 0 !important;
}
    .nav-links,
    .header-right {
        display:none;
    }

    .mobile-menu-btn {
        display:flex;
    }

    header {
        position:sticky;
        top:0;
    }
}

.map-container {

height: 500px;
    background-color: #eee; /* Harita Placeholder */
    border-radius: 8px;
    margin-bottom: 40px;
    /* Gerçek bir harita entegrasyonu (Google Maps API vb.) buraya gelecek.
       Şimdilik bir görsel koyuyoruz. */
    position: relative;
    padding: 1rem;
}
/* RESPONSIVE */
@media (max-width:768px) {
    .category-container{
    grid-template-columns: repeat(1, 1fr) !important;

    }
}
        .category-container{
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem;
    background-color: var(--bg-light);
}

.category-item{
    position: relative;
}
/* Widget container */
.translate-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: Inter, system-ui, sans-serif;
}

/* Toggle button */
.translate-toggle {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

/* Panel */
.translate-panel {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 220px;
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
    display: none;
    animation: fadeUp .25s ease;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.goog-te-gadget {
    font-size: 0;
}

.goog-te-combo {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    cursor: pointer;
}

/* Google üst bar gizle */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}


.category{
    width: 100%;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: 0.2s ease-in;
}
.category:hover{
    color: #fff;
    background-color: #00060c;
}

.arrow{
    transition: transform .3s ease;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

/* Overlay */
.contact-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: none;
    align-items: flex-end;
    z-index: 999;
}

/* Modal */
.contact-modal {
    margin: 5%;
    width: 420px;
    max-width: 100%;
    background: #fff;
    border-radius: 18px 18px 0 0;
    padding: 20px;
    animation: slideUp .3s ease;
}

/* Header */
.contact-header {
    background: var(--primary-color);
    color: #fff;
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 16px;
}

.contact-header h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.contact-header p {
    font-size: 13px;
    margin: 0 0 6px;
    line-height: 1.4;
}

.policy-link {
    font-size: 12px;
    color: #fff;
    text-decoration: underline;
}

/* Options */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f6f6f6;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.icon.whatsapp {
    background: #25D366;
}

.icon.email {
    background: #ff4d4f;
}

/* Animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}


/* Dropdown */
.subcategory{
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border-radius: 6px;
    margin-top: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    transition: max-height .3s ease;
}

.subcategory a{
    display: block;
    padding: 10px 14px;
    color: #333;
    text-decoration: none;
    font-size: .95rem;
}

.subcategory a:hover{
    background: #f2f2f2;
}

/* Aktif durum */
.category-item.active .subcategory{
    max-height: 300px;
}

.category-item.active .arrow{
    transform: rotate(180deg);
}

.map-overlay-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255,255,255,0.9);
    padding: 20px 30px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    color: var(--secondary-color);
}

.dealers-filter {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.dealers-filter select {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.dealers-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.dealer-card {
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    transition: border-color 0.3s ease;
}

.dealer-card:hover {
    border-color: var(--primary-color);
}

.dealer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.dealer-header h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.dealer-badge {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dealer-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.dealer-info p i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.dealer-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.dealer-actions .btn {
    flex: 1;
    font-size: 0.9rem;
}

.join-us-cta {
    text-align: center;
    padding: 60px 0;
    background-color: var(--bg-light);
    margin-top: 80px;
    border-radius: 8px;
}

.join-us-cta h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* SSS Sayfası */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background-color: var(--light-color);
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

/* Basit bir JS ile açılır-kapanır yapılabilir. Şimdilik CSS ile açık gösterelim */
.faq-answer {
    padding: 25px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-light);
    /* display: none; JS eklendiğinde kullanılacak */
}

/* İletişim Sayfası */


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-box {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.contact-info-box h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-form-box h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    resize: vertical;
    height: 150px;
}

.contact-map {
    height: 400px;
    background-color: #ddd;
    margin-top: 80px;
    /* Gerçek Google Maps Iframe'i buraya gelecek */
}
.contact-map iframe{
    height: 100%;
    width: 100%;
}

/* --- RESPONSIVE (MOBİL UYUMLULUK) --- */
@media (max-width: 768px) {
.navbar {
    display: flex;
    justify-content: space-between; /* Logo sola, hamburger sağa */
    align-items: center;
}
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
    .header-right {
        flex-direction: column;
        width: 100%;
    }
    .header-right .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-slider {
        height: 400px; /* Mobilde daha kısa slider */
    }
    .slide-content h1 {
        font-size: 2.2rem;
    }
    .slide-content p {
        font-size: 1rem;
    }
    .slide-buttons {
        flex-direction: column;
    }
    .slide-buttons .btn {
        width: 100%;
    }

    .about-grid, .contact-grid, .corporate-solutions {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .corporate-content {
        padding-right: 0;
        order: 2; /* Mobilde metin görselin altına gelsin */
    }
    .corporate-image {
        order: 1;
    }

    .location-finder-banner h2 {
        font-size: 2rem;
    }
    .location-form {
        flex-direction: column;
        width: 100%;
    }
    .location-form select, .location-form .btn {
        width: 100%;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 1rem;
        margin-bottom: 10px;
        display: block;
        width: 100%;
    }

    .dealers-filter {
        flex-direction: column;
    }

    .dealer-actions {
        flex-direction: column;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}