/* Genel Stiller */
:root {
    --primary-color: #000000; /* Siyah */
    --secondary-color: #fad02c; /* Altın sarısı */
    --background-color: #ffffff; /* Beyaz arka plan */
    --light-bg: #f9f9f9; /* Çok açık gri */
    --text-color: #333333; /* Koyu gri metin */
    --light-text: #ffffff; /* Beyaz metin */
    --border-color: #e9e9e9; /* Açık gri sınır */
    --hover-color: #fff8e0; /* Sarı hover efekti */
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

* {
    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(--text-color);
    background-color: var(--background-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.2s ease;
}

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

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header ve Logo Stili */
.site-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container img {
    height: 60px;
    width: auto;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Navbar Stili */
.main-nav {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 99;
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-list {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-list li {
    display: inline-block;
    padding: 15px 20px;
}

.nav-list li a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list li a:hover {
    color: #007bff;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-nav.active {
        display: block;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-list {
        flex-direction: column;
    }
    
    .nav-list li {
        width: 100%;
        display: block;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
}

/* Hero bölümü */
.hero-section {
    background-color: var(--light-bg);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
}

/* Arama bölümü */
.search-container {
    background-color: var(--background-color);
    padding: 40px 0;
    text-align: center;
}

.search-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--light-bg);
}

.search-wrapper h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.search-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.search-form button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
}

/* Sektör Kartları */
.popular-sectors, 
.featured-firms {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.popular-sectors h2, 
.featured-firms h2, 
.recent-blogs h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
}

.popular-sectors h2:after, 
.featured-firms h2:after, 
.recent-blogs h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sector-card {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.sector-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.sector-card p {
    font-size: 0.9rem;
    color: #666;
}

.sector-card:hover h3 {
    color: var(--secondary-color);
}

/* Blog Bölümü */
.recent-blogs {
    padding: 50px 0;
}

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

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

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

.blog-img {
    width: 100%;
    max-width: 250px; /* Görselin maksimum genişliği */
    height: 120px; /* Daha küçük bir yükseklik */
    object-fit: cover;
    border-radius: 6px; /* Opsiyonel: Köşeleri yumuşatır */
    display: block;
    margin: 0 auto; /* Ortalamak için */
}

.blog-content {
    padding: 20px;
}

.blog-date {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    transition: color 0.2s ease;
}

.blog-card:hover h3 {
    color: var(--secondary-color);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Footer Stili */
.footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Firma Sayfaları İçin Card Stilleri */
.firma-detay {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
}

.firma-baslik {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.firma-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-right: 20px;
    border-radius: 8px;
    padding: 5px;
    background: #f9f9f9;
}

.firma-bilgi {
    flex: 1;
}

.firma-bilgi h1 {
    margin: 0 0 10px 0;
    font-size: 28px;
    color: #333;
}

.firma-kategori {
    display: inline-block;
    background: #f0f0f0;
    color: #555;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.firma-ozet {
    margin-bottom: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.ozet-bilgi {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ozet-oge {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.ozet-oge:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ozet-oge i {
    color: #4a6bff;
    font-size: 20px;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.calisma-saatleri-tablosu {
    margin-bottom: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.calisma-saatleri-tablosu h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
    color: #333;
}

.saatler-tablo {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.saatler-tablo th, .saatler-tablo td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.saatler-tablo th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #333;
}

.saatler-tablo tr:last-child td {
    border-bottom: none;
}

.saatler-tablo tr.bugun {
    background-color: #f0f7ff;
}

.saatler-tablo tr.bugun td {
    font-weight: 600;
    color: #4a6bff;
}

.ozel-calısma-saatleri {
    margin-top: 25px;
}

.ozel-calısma-saatleri h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.ozel-calısma-saatleri ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.ozel-calısma-saatleri li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.ozel-calısma-saatleri li:last-child {
    border-bottom: none;
}

.onemli-not {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff9e6;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.onemli-not p {
    margin: 0;
    color: #664d03;
}

.faq-section {
    margin-bottom: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.faq-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.benzer-firmalar {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.benzer-firmalar h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
    color: #333;
}

.firma-listesi {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.firma-listesi-kart {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.firma-listesi-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.firma-listesi-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.firma-listesi-kart h3 {
    font-size: 16px;
    color: #333;
    margin: 0 0 10px 0;
}

.firma-listesi-kart p {
    font-size: 14px;
    color: #4a6bff;
    margin: 0;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .firma-baslik {
        flex-direction: column;
        text-align: center;
    }
    
    .firma-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .firma-listesi {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 576px) {
    .firma-listesi {
        grid-template-columns: 1fr 1fr;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .navbar {
        position: fixed;
        left: -100%;
        top: 80px;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #fff;
        transition: all 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .nav-inner {
        width: 100%;
        padding: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        white-space: normal;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 10px;
    }
    
    .logo-image {
        height: 50px;
    }
}

/* Sektör Sayfaları için Yenilenmiş Kart Yapısı */
.sektor-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
}

.sektor-baslik {
    background: linear-gradient(to right, #0066cc, #004999);
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sektor-baslik h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: white;
}

.sektor-baslik p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.sektor-filtrele {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    margin-bottom: 25px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.filtre-buton {
    padding: 10px 20px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.filtre-buton:hover, .filtre-buton.aktif {
    background-color: #0066cc;
    color: white;
}

/* Yan Yana Kart Yapısı - Çok Daha Küçük ve Minimal */
.firma-listesi-genis {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.firma-card {
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.firma-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.firma-card-ust {
    position: relative;
    padding-top: 70%; /* Kare logo alanı */
    background-color: #f8f9fa;
}

.firma-card-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15%;
}

.firma-card-icerik {
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.firma-card-baslik {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #222;
    line-height: 1.3;
}

.firma-card-kategori {
    display: inline-block;
    font-size: 9px;
    font-weight: 500;
    color: #666;
    background-color: #f0f0f0;
    padding: 2px 6px;
    border-radius: 12px;
    margin-bottom: 5px;
}

.firma-durumu {
    font-size: 10px;
    font-weight: 500;
    margin-top: 3px;
}

.firma-card-buton {
    background-color: #0066cc;
    color: white;
    text-align: center;
    padding: 6px;
    font-size: 11px;
    font-weight: 500;
    transition: background-color 0.3s;
    border-radius: 0 0 6px 6px;
}

.firma-card:hover .firma-card-buton {
    background-color: #004999;
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
    .firma-listesi-genis {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 992px) {
    .firma-listesi-genis {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .firma-listesi-genis {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    
    .firma-card-ust {
        padding-top: 65%; /* Daha küçük logo alanı */
    }
    
    .firma-card-logo {
        padding: 10%;
    }
    
    .firma-card-icerik {
        padding: 5px 3px;
    }
    
    .firma-card-baslik {
        font-size: 11px;
        margin-bottom: 0;
        line-height: 1.2;
    }
    
    .firma-card-kategori {
        font-size: 8px;
        padding: 1px 4px;
        margin-bottom: 3px;
    }
    
    .firma-durumu {
        font-size: 9px;
        margin-top: 2px;
    }
    
    .firma-card-buton {
        padding: 4px;
        font-size: 9px;
    }
    
    .sektor-baslik {
        padding: 20px 12px;
    }
    
    .sektor-baslik h1 {
        font-size: 22px;
    }
    
    .sektor-baslik p {
        font-size: 14px;
    }
    
    .sektor-filtrele {
        padding: 8px;
        gap: 5px;
    }
    
    .filtre-buton {
        padding: 6px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .firma-listesi-genis {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }
    
    .firma-card-baslik {
        font-size: 10px;
    }
    
    .firma-card-buton {
        padding: 3px;
        font-size: 8px;
    }
    
    .daha-fazla-buton {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media (max-width: 350px) {
    .firma-listesi-genis {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .firma-card-icerik {
        padding: 4px 2px;
    }
}

/* SSS ve Not Bölümleri Stilleri */
.sektor-bilgi-bolumu {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.sektor-bilgi-baslik {
    font-size: 22px;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid #0066cc;
}

.sektor-sss {
    margin-bottom: 20px;
}

.sss-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.sss-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sss-soru {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.sss-soru:before {
    content: "Q:";
    color: #0066cc;
    font-weight: 700;
    margin-right: 10px;
}

.sss-cevap {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    padding-left: 25px;
}

.sektor-not {
    background-color: #f8f9fa;
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.daha-fazla-goster {
    text-align: center;
    margin: 30px 0;
}

.daha-fazla-buton {
    background-color: #f0f0f0;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.daha-fazla-buton:hover {
    background-color: #e0e0e0;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .firma-listesi-genis {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sektor-baslik {
        padding: 25px 15px;
    }
    
    .sektor-baslik h1 {
        font-size: 24px;
    }
    
    .filtre-buton {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .firma-listesi-genis {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .sektor-bilgi-bolumu {
        padding: 20px 15px;
    }
    
    .sektor-bilgi-baslik {
        font-size: 20px;
    }
    
    .sss-soru {
        font-size: 16px;
    }
}

/* Firma Sayfaları - Ürün Kategorileri Bölümü */
.urun-kategorileri {
    margin: 30px 0;
    padding: 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
}

.urun-kategorileri h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f5f5f5;
}

.kategori-grup {
    margin-bottom: 25px;
}

.kategori-grup h3 {
    font-size: 18px;
    color: #444;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.kategori-grup ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.kategori-grup li {
    padding: 8px 12px;
    color: #666;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.kategori-grup li:hover {
    background: #f8f9fa;
    color: #333;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .kategori-grup ul {
        grid-template-columns: 1fr;
    }
    
    .urun-kategorileri {
        padding: 15px;
    }
    
    .urun-kategorileri h2 {
        font-size: 20px;
    }
    
    .kategori-grup h3 {
        font-size: 16px;
    }
}

/* Tablet Uyumluluk */
@media (min-width: 769px) and (max-width: 1024px) {
    .kategori-grup ul {
        grid-template-columns: repeat(2, 1fr);
    }
} 