/* ============================================================
   BURHAN AKSOY AVUKATLIK - WORDPRESS TEMA CSS v2.0
   Premium Hukuk Bürosu Tasarım Sistemi
   ============================================================ */

/* === HEADER === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 35, 66, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0.75rem 0;
}

.site-header.scrolled {
    background: rgba(10, 35, 66, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    padding: 0.5rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.2;
}

.logo-text small {
    color: var(--accent);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* === NAVIGATION === */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
    color: var(--accent);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after {
    width: 100%;
}

.header-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    z-index: 999;
    padding: 2rem;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li a {
    display: block;
    padding: 1rem 0;
    color: var(--white);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
}

.mobile-btn {
    margin-top: 1rem;
    text-align: center;
}

/* === PAGE HERO === */
.page-hero {
    background: var(--primary);
    padding: 8rem 0 4rem;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
}

.article-meta-top {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

/* === HERO SECTION === */
.hero-section {
    padding: 10rem 0 6rem;
}

.hero-grid {
    display: grid;
    gap: 3rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    color: var(--white);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.hero-description {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* === TRUST BAR === */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(10, 35, 66, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.trust-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.trust-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* === SECTIONS === */
.bg-light {
    background: var(--bg-light);
}

.text-center {
    text-align: center;
}

.section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.section-header.text-center {
    flex-direction: column;
    align-items: center;
}

.section-label {
    display: block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.section-description {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
}

.section-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
}

/* === SERVICES GRID === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* === ABOUT SECTION === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-content .section-label {
    margin-bottom: 0.5rem;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* === ARTICLES GRID === */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.article-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-body {
    padding: 1.5rem;
}

.article-category {
    display: inline-block;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.article-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.article-card h3 a {
    color: var(--primary);
    text-decoration: none;
}

.article-card h3 a:hover {
    color: var(--accent);
}

.article-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.article-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
}

.quote-icon {
    color: var(--accent);
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* === CONTACT CTA === */
.contact-cta {
    background: var(--primary);
    padding: 4rem 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
}

.cta-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cta-icon {
    display: block;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 80px;
}

.cta-item a,
.cta-item span {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.cta-item a:hover {
    color: var(--accent);
}

/* === FOOTER === */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.6);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.site-footer h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo strong {
    display: block;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
}

.footer-logo small {
    display: block;
    color: var(--accent);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

/* === ARTICLE LAYOUT === */
.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.article-featured-image {
    margin-bottom: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
}

.article-content .article-body {
    font-size: 1rem;
    line-height: 1.9;
}

.article-content .article-body p {
    margin-bottom: 1.5rem;
}

.article-content .article-body h2,
.article-content .article-body h3,
.article-content .article-body h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.post-navigation a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

/* === SIDEBAR === */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.sidebar-widget h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.sidebar-widget p {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.related-posts {
    list-style: none;
    padding: 0;
}

.related-posts li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.related-posts li:last-child {
    border-bottom: none;
}

.related-posts a {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    text-decoration: none;
}

.related-posts a:hover {
    color: var(--accent);
}

/* === PAGE CONTENT === */
.page-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.content-area {
    font-size: 1rem;
    line-height: 1.9;
}

.content-area h2,
.content-area h3,
.content-area h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-area p {
    margin-bottom: 1.5rem;
}

/* === PAGINATION === */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.pagination .nav-links {
    display: flex;
    gap: 0.5rem;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.pagination .page-numbers:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* === NO RESULTS === */
.no-results {
    text-align: center;
    padding: 4rem 0;
}

.no-results h2 {
    margin-bottom: 1rem;
}

.no-results p {
    color: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-layout,
    .page-content {
        grid-template-columns: 1fr;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-nav,
    .header-cta {
        display: none !important;
    }

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header {
        flex-direction: column;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .about-image img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .container {
        padding: 0 1rem;
    }
}
