/*
Theme Name: Beta Mühendislik
Theme URI: https://betamuhendislikproje.com
Author: Beta Mühendislik
Author URI: https://betamuhendislikproje.com
Description: Beta Mühendislik için özel WordPress teması
Version: 1.0.0
License: Private
Text Domain: betamuhendislik
*/

/* ===== DEĞİŞKENLER ===== */
:root { 
    --primary: #1e3a8a; 
    --secondary: #10b981; 
    --accent: #f59e0b; 
    --light: #f8fafc; 
    --dark: #1f2937; 
    --gray: #6b7280; 
}

/* ===== GENEL STİLLER ===== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    color: var(--dark); 
    background: var(--light); 
    line-height: 1.6; 
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 2rem; 
}

/* ===== HEADER & NAVIGASYON ===== */
.header { 
    background: white; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    padding: 0.3rem 1.5rem;        /* padding'i azalttık */
    display: grid; 
    grid-template-columns: auto 1fr auto; 
    align-items: center; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    gap: 0.8rem;                    /* gap'i azalttık */
}

.logo-container { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
}

.logo-placeholder { 
    height: 60px; 
    width: 180px; 
    background: var(--primary); 
    color: white; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: bold; 
    font-size: 1.2rem; 
    border-radius: 4px; 
    flex-shrink: 0; 
}

.company-name { 
    text-align: center; 
    font-size: 1.3rem; 
    font-weight: bold; 
    color: var(--primary); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    line-height: 1.3; 
    justify-self: center; 
}

.nav { 
    display: flex; 
    gap: 1.5rem; 
    align-items: center; 
    justify-self: end; 
}

.nav a { 
    color: var(--dark); 
    text-decoration: none; 
    font-weight: 500; 
    transition: color 0.3s; 
    white-space: nowrap; 
    font-size: 1rem; 
    padding: 0.5rem 0; 
    position: relative; 
}

.nav a:hover, 
.nav a.active { 
    color: var(--primary); 
}

.nav a.active::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    height: 3px; 
    background: var(--accent); 
    border-radius: 3px; 
}

/* Dropdown menü */
.nav .menu-item-has-children {
    position: relative;
}

.nav .menu-item-has-children > a::after {
    content: ' ▼';
    font-size: 10px;
    margin-left: 5px;
}

.nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 10px 0;
    min-width: 250px;
    display: none;
    z-index: 999;
}

.nav .menu-item-has-children:hover .sub-menu {
    display: block;
}

.nav .sub-menu li {
    list-style: none;
    padding: 8px 20px;
}

.nav .sub-menu li a {
    color: var(--dark);
    white-space: nowrap;
}

.nav .sub-menu li:hover {
    background: #f5f5f5;
}

/* ===== AI ARAMA BUTONU ===== */
.ai-search-btn { 
    background: var(--secondary); 
    color: white; 
    border: none; 
    padding: 0.6rem 1.2rem; 
    border-radius: 20px; 
    font-size: 0.9rem; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    margin-left: 1rem; 
}

.ai-search-btn:hover { 
    background: #0da271; 
    transform: translateY(-2px); 
}

/* ===== SAYFA BAŞLIKLARI ===== */
.page-header { 
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.9)), url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80'); 
    background-size: cover; 
    background-position: center; 
    color: white; 
    padding: 1rem 2rem 0.5rem; 
    text-align: center; 
    margin-top: 10px; /* 80px yerine 0 yap */ 
}

.page-header h1 { 
    font-size: 1.7rem; 
    margin-bottom: 1rem; 
    font-weight: 600; 
}

.page-header p { 
    font-size: 1.2rem; 
    opacity: 0.9; 
}

.page-content { 
    padding: 4rem 2rem; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.content-section { 
    margin-bottom: 4rem; 
}

.content-section h2 { 
    color: var(--primary); 
    font-size: 2.2rem; 
    margin-bottom: 1.5rem; 
    padding-bottom: 0.5rem; 
    border-bottom: 3px solid var(--secondary); 
    display: inline-block; 
}

/* ===== ANA SAYFA HERO ===== */
.hero {
    background: linear-gradient(90deg, #1e3a8a 0%, #1e3a8a 50%, rgba(30, 58, 138, 0.9) 100%);
    color: white;
    padding: 1.8rem 2rem;      /* 3rem → 2rem düşürdük */
    min-height: 420px;       /* 70vh yerine sabit */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    width: 100%;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #dbeafe;
}

.hero-features {
    margin: 1.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background-image: url('https://images.pexels.com/photos/5520322/pexels-photo-5520322.jpeg?auto=compress&cs=tinysrgb&w=1200');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Responsive düzeltme */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 2rem 1rem;
        min-height: auto;
    }
    .hero-image {
        position: relative;
        width: 100%;
        height: 250px;
        clip-path: none;
        margin-top: 2rem;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero h1 {
        font-size: 2rem;
    }
}
/* ===== HİZMET KARTLARI ===== */
.services { 
    padding: 6rem 2rem; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.section-title { 
    text-align: center; 
    color: var(--primary); 
    font-size: 2.5rem; 
    margin-bottom: 4rem; 
    position: relative; 
}

.section-title::after { 
    content: ''; 
    display: block; 
    width: 100px; 
    height: 5px; 
    background: var(--secondary); 
    margin: 15px auto; 
    border-radius: 3px; 
}

.service-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2.5rem; 
}

.service-card { 
    background: white; 
    border-radius: 12px; 
    padding: 2rem; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.08); 
    transition: all 0.4s ease; 
    border: 1px solid #e5e7eb; 
    text-align: center; 
    cursor: pointer; 
}

.service-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); 
    border-color: var(--primary); 
}

.service-image { 
    width: 100%; 
    height: 180px; 
    background-size: cover; 
    background-position: center; 
    border-radius: 8px; 
    margin-bottom: 1.5rem; 
}

.service-card h3 { 
    color: var(--primary); 
    margin-bottom: 1rem; 
    font-size: 1.3rem; 
}

.service-link { 
    display: inline-block; 
    margin-top: 1rem; 
    color: var(--primary); 
    text-decoration: none; 
    font-weight: 600; 
    border-bottom: 3px solid transparent; 
    padding-bottom: 4px; 
    transition: all 0.3s ease; 
}

.service-link:hover { 
    color: var(--secondary); 
    border-color: var(--secondary); 
}

/* ===== BLOG BÖLÜMÜ ===== */
.blog-section { 
    padding: 6rem 2rem; 
    background: #f1f5f9; 
}

.blog-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem; 
    max-width: 1200px; 
    margin: 3rem auto 0; 
}

.blog-card { 
    background: white; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
    transition: transform 0.3s ease; 
    height: 100%; 
    display: flex; 
    flex-direction: column; 
}

.blog-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.12); 
}

.blog-image { 
    height: 180px; 
    background-size: cover; 
    background-position: center; 
    flex-shrink: 0; 
}

.blog-content { 
    padding: 1.5rem; 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
}

.blog-date { 
    color: var(--secondary); 
    font-size: 0.85rem; 
    font-weight: 600; 
    margin-bottom: 0.5rem; 
}

.blog-title { 
    color: var(--primary); 
    font-size: 1.1rem; 
    margin-bottom: 1rem; 
    line-height: 1.4; 
    flex-grow: 1; 
}

/* ===== İLETİŞİM SAYFASI ===== */
.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 2fr; 
    gap: 4rem; 
    margin-bottom: 3rem; 
}

.contact-info { 
    background: white; 
    padding: 2.5rem; 
    border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
}

.contact-item { 
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 2rem; 
    padding-bottom: 2rem; 
    border-bottom: 1px solid #e5e7eb; 
}

.contact-icon { 
    background: var(--primary); 
    color: white; 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-right: 1.5rem; 
    flex-shrink: 0; 
}

.contact-form { 
    background: white; 
    padding: 2.5rem; 
    border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
}

.form-group { 
    margin-bottom: 1.5rem; 
}

.form-control { 
    width: 100%; 
    padding: 12px 15px; 
    border: 1px solid #d1d5db; 
    border-radius: 6px; 
    font-size: 1rem; 
}

.form-control:focus { 
    outline: none; 
    border-color: var(--primary); 
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1); 
}

textarea.form-control { 
    min-height: 150px; 
    resize: vertical; 
}

/* ===== BUTONLAR ===== */
.btn-primary, 
.btn-secondary { 
    padding: 16px 35px; 
    border-radius: 8px; 
    font-size: 1.1rem; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    text-decoration: none; 
    border: none; 
}

.btn-primary { 
    background: #f59e0b; 
    color: white; 
    box-shadow: 0 6px 15px rgba(0,0,0,0.2); 
}

.btn-primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.3); 
    background: #f68a0b; 
}

.btn-secondary { 
    background: transparent; 
    color: var(--primary); 
    border: 2px solid var(--primary); 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}

.btn-secondary:hover { 
    background: rgba(30, 58, 138, 0.1); 
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.2); 
}

/* ===== FOOTER ===== */
.footer { 
    background: #1f2937; 
    color: #f9fafb; 
    padding: 5rem 2rem 2rem; 
    margin-top: 4rem; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 3rem; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.footer-column h3 { 
    color: white; 
    margin-bottom: 1.5rem; 
    font-size: 1.2rem; 
    position: relative; 
    padding-bottom: 0.5rem; 
}

.footer-column h3::after { 
    content: ''; 
    position: absolute; 
    left: 0; 
    bottom: 0; 
    width: 40px; 
    height: 3px; 
    background: var(--secondary); 
}

.footer-column ul { 
    list-style: none; 
}

.footer-column ul li { 
    margin-bottom: 0.8rem; 
}

.footer-column a { 
    color: #d1d5db; 
    text-decoration: none; 
    transition: all 0.3s ease; 
}

.footer-column a:hover { 
    color: white; 
}

.footer-hours { 
    margin-top: 1.5rem; 
    padding-top: 1.5rem; 
    border-top: 1px solid #374151; 
}

.footer-hours h4 { 
    color: white; 
    font-size: 1rem; 
    margin-bottom: 0.8rem; 
    font-weight: 600; 
}

/* ===== COPYRIGHT ===== */
.copyright { 
    text-align: center; 
    padding-top: 3rem; 
    margin-top: 3rem; 
    border-top: 1px solid #374151; 
    color: #9ca3af; 
    font-size: 0.95rem; 
    line-height: 1.6; 
}

.copyright-links { 
    margin-bottom: 1rem; 
}

.copyright-links a { 
    color: #9ca3af; 
    text-decoration: none; 
    margin: 0 0.8rem; 
}

.copyright-links a:hover { 
    color: white; 
    text-decoration: underline; 
}

.home-link-footer { 
    display: inline-block; 
    margin-top: 1rem; 
    color: var(--accent); 
    text-decoration: none; 
}

.home-link-footer:hover { 
    color: white; 
}

/* ===== MOBİL UYUMLULUK ===== */
@media (max-width: 1024px) {
    .blog-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .footer-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .contact-grid { 
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 768px) {
    .header { 
        grid-template-columns: 1fr; 
        padding: 1rem; 
        gap: 1rem; 
        text-align: center; 
    }
    
    .nav { 
        display: none; 
        flex-direction: column; 
        position: fixed; 
        top: 0; 
        left: 0; 
        right: 0; 
        bottom: 0; 
        background: white; 
        padding: 4rem 1.5rem 2rem; 
        z-index: 999; 
        gap: 0; 
        overflow-y: auto; 
    }
    
    .nav.active { 
        display: flex; 
    }
    
    .nav a { 
        padding: 1rem; 
        border-bottom: 1px solid #e5e7eb; 
        width: 100%; 
        text-align: center; 
    }
    
    .menu-toggle-container { 
        display: block; 
        position: absolute; 
        right: 1rem; 
        top: 0.5rem;        /* Yukarı taşıdık */ 
    }
    
    .menu-toggle { 
        background: none; 
        border: none; 
        font-size: 1.5rem; 
        color: var(--primary); 
        cursor: pointer; 
		padding: 0;          /* İç boşluğu sıfırladık */
		line-height: 1;       /* Satır yüksekliğini azalttık */
    }
    
    .hero { 
        flex-direction: column; 
        padding: 3rem 1.5rem; 
    }
    
    .hero-image { 
        position: relative; 
        width: 100%; 
        height: 300px; 
        clip-path: none; 
        margin-top: 2rem; 
    }
    
    .hero h1 { 
        font-size: 2rem; 
    }
    
    .service-grid, 
    .blog-grid { 
        grid-template-columns: 1fr; 
    }
    
    .footer-grid { 
        grid-template-columns: 1fr; 
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* ===== AI CHAT WIDGET ===== */
.ai-chat-widget { 
    position: fixed; 
    bottom: 2rem; 
    right: 2rem; 
    z-index: 9999; 
}

.chat-toggle { 
    background: var(--primary); 
    color: white; 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    border: none; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.5rem; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

.chat-container { 
    position: absolute; 
    bottom: 70px; 
    right: 0; 
    width: 350px; 
    background: white; 
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
    overflow: hidden; 
    display: none; 
}

.chat-container.active { 
    display: block; 
}

.chat-header { 
    background: var(--primary); 
    color: white; 
    padding: 1.2rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-body { 
    height: 300px; 
    padding: 1.2rem; 
    overflow-y: auto; 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
}

.chat-message { 
    max-width: 80%; 
    padding: 0.8rem 1rem; 
    border-radius: 18px; 
    line-height: 1.4; 
    font-size: 0.9rem;
}

.bot-message { 
    background: #f3f4f6; 
    align-self: flex-start; 
    border-bottom-left-radius: 5px;
}

.user-message { 
    background: var(--primary); 
    color: white; 
    align-self: flex-end; 
    border-bottom-right-radius: 5px;
}

.chat-input { 
    padding: 1rem; 
    border-top: 1px solid #e5e7eb; 
    display: flex; 
    gap: 0.5rem; 
    background: #f9f9f9;
}

.chat-input input { 
    flex: 1; 
    padding: 0.8rem 1rem; 
    border: 1px solid #d1d5db; 
    border-radius: 20px; 
    font-size: 0.9rem; 
    outline: none;
}

.chat-input input:focus {
    border-color: var(--primary);
}

.chat-input button { 
    background: var(--primary); 
    color: white; 
    border: none; 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    cursor: pointer; 
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-input button:hover {
    background: var(--secondary);
}

/* ===== AI SEARCH MODAL ===== */
.ai-search-modal { 
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background: rgba(0, 0, 0, 0.7); 
    z-index: 10000; 
    display: none; 
    align-items: center; 
    justify-content: center; 
}

.ai-search-modal.active { 
    display: flex; 
}

.search-modal-content { 
    background: white; 
    width: 90%; 
    max-width: 600px; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.2); 
}

.search-modal-header { 
    background: var(--primary); 
    color: white; 
    padding: 1.5rem; 
    text-align: center; 
}

.search-modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.search-modal-body { 
    padding: 2rem; 
}

.ai-search-input { 
    width: 100%; 
    padding: 1rem 1.5rem; 
    border: 2px solid #d1d5db; 
    border-radius: 8px; 
    font-size: 1.1rem; 
    margin-bottom: 1.5rem; 
}

.ai-search-input:focus { 
    outline: none; 
    border-color: var(--primary); 
}

.search-results { 
    max-height: 300px; 
    overflow-y: auto; 
}

.search-result-item { 
    padding: 1rem; 
    border-bottom: 1px solid #e5e7eb; 
    cursor: pointer; 
    transition: background 0.3s; 
}

.search-result-item:hover { 
    background: #f9fafb; 
}

.search-result-item h4 { 
    color: var(--primary); 
    margin-bottom: 0.3rem; 
}

.search-result-item p { 
    color: var(--gray); 
    font-size: 0.9rem; 
}

.close-search-modal { 
    position: absolute; 
    top: 1rem; 
    right: 1rem; 
    background: none; 
    border: none; 
    color: white; 
    font-size: 2rem; 
    cursor: pointer; 
    opacity: 0.8;
}

.close-search-modal:hover {
    opacity: 1;
}
/* ============================= */
/* ===== 2026 PREMIUM HERO ===== */
/* ============================= */

.hero-modern {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #ffffff;
    max-width: 100%;     /* Tam genişlik */
    margin: 0 auto;               /* Ortalamak için */
    border-radius: 0 0 0 0;       /* Kenar yuvarlaklığını kaldırdık */
    width: 100%;                  /* Tam genişlik */
}

.hero-modern__content h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.hero-modern__content p {
    font-size: 1rem;
    line-height: 1.9;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

.hero-modern__buttons {
    display: flex;
    gap: 1rem;
}

.hero-modern__image {
    height: 440px;
    border-radius: 18px;
    overflow: hidden;
    background: url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

/* Butonlar */

.btn-primary {
    background: #f97316;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #f97316;
    color: #f97316;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}
.hero-modern__image {
    background: url('http://www.betamuhendislikproje.com/wp-content/uploads/2026/02/el-sikisma.webp') center/cover no-repeat !important;
}
header {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.site-header {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}
.hero-modern__content h1 {
    font-size: 26px !important;
}
.blog img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}
.service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.service-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
}
/* ===== PREMIUM MINIMAL HEADER ===== */

header,
.site-header {
    padding: 14px 0 !important;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Menü Yazıları */
.main-navigation a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.4px;
    padding: 8px 12px;
}

/* Logo yazı mesafesi */
.site-branding {
    margin: 0 !important;
}

/* AI Arama boşluk azaltma */
.header-search,
.ai-search {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
header {
    backdrop-filter: blur(6px);
}
/* HEADER TAM DARALTMA */

.site-header {
    padding: 6px 0 !important;
}

.site-header .container {
    padding: 0 20px !important;
    align-items: center;
}

/* Logo alt boşluk temizleme */
.site-branding p,
.site-branding span {
    display: none !important;
}


/* Menü satır yüksekliği düşürme */
.main-navigation ul {
    margin: 0 !important;
    padding: 0 !important;
}
/* HEADER SIFIRLAMA */

.site-header {
    padding: 0 !important;
    min-height: auto !important;
}

.site-header .container {
    padding: 8px 20px !important;
}

.site-branding {
    line-height: 1 !important;
}

.site-branding h1,
.site-branding p {
    margin: 0 !important;
}

.main-navigation a {
    line-height: 1.2 !important;
}
/* HİZMETLER PREMIUM GRID */

.services-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.service-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: #555;
    min-height: 60px;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: #0f172a;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* Hizmet detay görseli kalite düzeltme */

.single img,
.page img {
    max-width: 100%;
    height: auto;
}

.single .post-thumbnail img,
.page .post-thumbnail img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}
/* ===== ÖZEL EKLEMELER ===== */

/* HEADER DARALTMA */
.header {
    padding: 0.3rem 2rem !important;
    gap: 1rem !important;
}

/* Menu toggle küçült ve yukarı al */
.menu-toggle-container {
    position: absolute;
    right: 1rem;
    top: 0.3rem;
}

.menu-toggle {
    font-size: 1.3rem !important;
    padding: 0 !important;
    line-height: 1 !important;
}
/* Hizmet kartı görseli */
.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

/* Hizmet detay sayfası hero görseli */
.service-hero-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}
/* ===== PROJE SÜRECİ FONT AYARLARI ===== */
.process-step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--primary);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
}

.step-number {
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    margin-bottom: 15px;
}
/* ===== HİZMET SAYFASI İÇERİK FONT AYARLARI ===== */
.service-content {
    font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
}

.service-content h2 {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e3a8a;
    margin: 2rem 0 1rem;
}

.service-content h3 {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e3a8a;
    margin: 1.5rem 0 1rem;
}

.service-content p {
    font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 1.2rem;
}

.service-content ul, 
.service-content ol {
    font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.service-content li {
    margin-bottom: 0.5rem;
}

.service-content strong {
    font-weight: 700;
    color: #1e3a8a;
}