/*
Theme Name: Avukat Pro - Hukuk Bürosu Teması
Theme URI: https://ornek-site.com/avukat-pro
Author: Tema Geliştirici
Author URI: https://ornek-site.com
Description: Profesyonel avukat ve hukuk büroları için geliştirilmiş, tam özelleştirilebilir premium WordPress teması. Customizer panelinden tüm ayarları yönetin.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: avukat-pro
Tags: avukat, hukuk, responsive, customizer, professional, law, lawyer
*/

/* === CSS VARIABLES === */
:root {
    --primary-color: #1a365d;
    --primary-dark: #0f2744;
    --primary-light: #2c5282;
    --accent-color: #c9a96e;
    --accent-hover: #b8975a;
    --text-color: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #0f2744;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --error-color: #f56565;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --border-radius: 8px;
    --container-width: 1200px;
}

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

/* === UTILITIES === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* === TOP BAR === */
.top-bar {
    background: var(--primary-dark);
    color: #cbd5e0;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar a {
    color: #cbd5e0;
}

.top-bar a:hover {
    color: var(--accent-color);
}

.top-bar i {
    margin-right: 5px;
    color: var(--accent-color);
}

/* === HEADER === */
.site-header {
    background: var(--primary-color);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.site-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.2;
}

.site-title a {
    color: inherit;
}

.site-description {
    font-size: 13px;
    color: #cbd5e0;
    margin-top: 2px;
}

/* === NAVIGATION === */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0;
    position: relative;
    display: block;
}

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

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

/* Dropdown */
.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-color);
    min-width: 220px;
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    flex-direction: column;
    gap: 0;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.main-navigation li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu a {
    padding: 10px 20px;
    font-size: 14px;
}

.main-navigation .sub-menu a::after {
    display: none;
}

.main-navigation .sub-menu a:hover {
    background: var(--primary-light);
    color: var(--accent-color);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-phone i {
    color: var(--accent-color);
    font-size: 18px;
}

.header-btn {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
}

.header-btn:hover {
    background: var(--accent-hover);
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 54, 93, 0.85);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle-top {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === STATS BAR === */
.stats-bar {
    background: var(--primary-color);
    padding: 40px 0;
    position: relative;
    z-index: 4;
}

.stats-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: #fff;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 15px;
    opacity: 0.9;
    margin-top: 5px;
}

/* === SECTIONS COMMON === */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 38px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 15px auto 0;
}

.section-description {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
}

/* === SERVICES SECTION === */
.services-section {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--accent-color);
}

.service-card:hover h3 a,
.service-card:hover p,
.service-card:hover .service-link {
    color: inherit;
}

.service-card:hover h3 a {
    color: var(--primary-color);
}

.service-card:hover p {
    color: var(--text-light);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--accent-color);
    transition: var(--transition);
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.service-card:hover .service-icon {
    background: var(--accent-color);
    color: #fff;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card h3 a {
    color: var(--primary-color);
}

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

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* === ABOUT SECTION === */
.about-section {
    background: #fff;
}

.about-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

.about-content .section-label {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    font-size: 36px;
}

.about-content .section-title::after {
    margin: 15px 0 0;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features {
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.about-feature i {
    color: var(--accent-color);
    font-size: 20px;
    margin-top: 3px;
}

.about-feature h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.about-feature p {
    margin: 0;
    font-size: 15px;
}

/* === LAWYERS SECTION === */
.lawyers-section {
    background: var(--bg-light);
}

.lawyers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.lawyer-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

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

.lawyer-image {
    position: relative;
    overflow: hidden;
}

.lawyer-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.lawyer-card:hover .lawyer-image img {
    transform: scale(1.05);
}

.lawyer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.9), transparent);
    padding: 30px 20px 20px;
    opacity: 0;
    transition: var(--transition);
}

.lawyer-card:hover .lawyer-overlay {
    opacity: 1;
}

.lawyer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.lawyer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.lawyer-social a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.lawyer-info {
    padding: 25px;
}

.lawyer-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.lawyer-info h3 a {
    color: var(--primary-color);
}

.lawyer-position {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.lawyer-info p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* === TESTIMONIALS === */
.testimonials-section {
    background: var(--primary-color);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: 50px;
    font-size: 300px;
    color: rgba(255,255,255,0.03);
    font-family: var(--font-heading);
    line-height: 1;
}

.testimonials-section .section-title,
.testimonials-section .section-label {
    color: #fff;
}

.testimonials-slider {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 900px) {
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

.testimonial-item {
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.testimonial-author-info h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 3px;
}

.testimonial-author-info span {
    color: var(--accent-color);
    font-size: 14px;
}

/* === BLOG SECTION === */
.blog-section {
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.blog-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-meta i {
    margin-right: 5px;
    color: var(--accent-color);
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--primary-color);
}

.blog-content h3 a:hover {
    color: var(--accent-color);
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === CONTACT SECTION === */
.contact-section {
    background: var(--bg-light);
}

.contact-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-wrapper {
    background: var(--primary-color);
    color: #fff;
    padding: 50px;
    border-radius: var(--border-radius);
}

.contact-info-wrapper h3 {
    color: var(--accent-color);
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 20px;
    margin-top: 3px;
    width: 24px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-item span {
    opacity: 0.9;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
    margin-bottom: 30px;
    font-size: 28px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* === ILETISIM FORM === */
.form-row {
    margin-bottom: 20px;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    background: #fff;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-row textarea {
    resize: vertical;
    min-height: 120px;
}

.form-response {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    display: none;
}

.form-response.success {
    display: block;
    background: #f0fff4;
    color: #22543d;
    border: 1px solid #c6f6d5;
}

.form-response.error {
    display: block;
    background: #fff5f5;
    color: #822727;
    border: 1px solid #fed7d7;
}

/* === FOOTER === */
.site-footer {
    background: var(--bg-dark);
    color: #cbd5e0;
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-widget h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
    padding-bottom: 15px;
}

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

.footer-widget p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-widget a {
    color: #cbd5e0;
    transition: var(--transition);
    display: inline-block;
}

.footer-widget a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-widget i {
    margin-right: 10px;
    color: var(--accent-color);
    width: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a i,
.footer-social a svg {
    color: #fff !important;
}

.footer-social a:hover {
    background: var(--accent-color) !important;
    color: #fff !important;
    transform: translateY(-3px);
}

.footer-social a:hover i,
.footer-social a:hover svg {
    color: #fff !important;
}

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

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

/* === SINGLE POST / PAGE === */
.site-main {
    min-width: 0; /* grid taşmasını önler */
}

.single-post,
.page-content {
    max-width: none;
    margin: 0;
}

.post-header {
    margin-bottom: 40px;
    text-align: center;
}

.post-thumbnail {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.post-title {
    font-size: 38px;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 25px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.post-meta i {
    margin-right: 5px;
    color: var(--accent-color);
}

.post-content {
    line-height: 1.9;
    color: var(--text-color);
}

.post-content h2,
.post-content h3 {
    color: var(--primary-color);
    margin: 40px 0 20px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 30px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-light);
}

.post-content ul,
.post-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.post-tags a {
    display: inline-block;
    padding: 5px 15px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 13px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.post-tags a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Post Navigation */
.post-navigation {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.nav-previous,
.nav-next {
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.nav-next {
    text-align: right;
}

.nav-subtitle {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.nav-title {
    font-weight: 600;
    color: var(--primary-color);
}

/* === SIDEBAR === */
.content-sidebar-wrapper {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.sidebar {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: fit-content;
    min-width: 0;
}

.widget {
    margin-bottom: 40px;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget a {
    color: var(--text-color);
}

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

.widget_search input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

/* === BREADCRUMB === */
.breadcrumb-section {
    background: var(--primary-color);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.breadcrumb-section h1 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--accent-color);
}

.breadcrumb .current {
    opacity: 0.8;
}

/* === PAGINATION === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a,
.pagination .current {
    padding: 10px 18px;
    border-radius: var(--border-radius);
    font-weight: 500;
}

.pagination a {
    background: var(--bg-light);
    color: var(--text-color);
}

.pagination a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.pagination .current {
    background: var(--primary-color);
    color: #fff;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .about-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
        order: 3;
    }

    .main-navigation {
        display: none;
        width: 100%;
        order: 4;
        margin-top: 15px;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .main-navigation a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .main-navigation .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }

    .main-navigation li:hover > .sub-menu {
        display: block;
    }

    .header-cta {
        display: flex;
        margin-left: auto;
        margin-right: 15px;
        order: 2;
    }
    .header-phone {
        display: none;
    }
    .header-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .about-container,
    .contact-container,
    .content-sidebar-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .post-title {
        font-size: 28px;
    }

    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 30px;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .section-padding {
        padding: 60px 0;
    }

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

/* === WORDPRESS DEFAULTS === */
.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

.aligncenter {
    display: block;
    margin: 0 auto 20px;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 20px;
}

.wp-caption-text {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
}

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

.screen-reader-text {
    position: absolute;
    left: -9999px;
}

/* Sticky Post */
.sticky .blog-card {
    border: 2px solid var(--accent-color);
}

/* === ARŞİV / BLOG LİSTESİ === */
.archive-post-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.archive-post-item {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.archive-post-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.archive-post-item.has-no-thumbnail {
    grid-template-columns: 1fr;
}

.archive-post-thumb {
    overflow: hidden;
}

.archive-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
    min-height: 200px;
}

.archive-post-item:hover .archive-thumb-img {
    transform: scale(1.05);
}

.archive-post-content {
    padding: 30px 30px 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.archive-post-item.has-no-thumbnail .archive-post-content {
    padding: 30px;
}

.archive-post-title {
    font-size: 22px;
    margin: 10px 0 15px;
    line-height: 1.4;
}

.archive-post-title a {
    color: var(--primary-color);
}

.archive-post-title a:hover {
    color: var(--accent-color);
}

.archive-post-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.no-posts {
    padding: 60px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
}

@media (max-width: 640px) {
    .archive-post-item {
        grid-template-columns: 1fr;
    }

    .archive-post-content {
        padding: 20px;
    }

    .archive-thumb-img {
        min-height: 180px;
        max-height: 220px;
    }
}

/* === HİZMET ARŞİV KART HOVER - METİN GÖRÜNÜRLÜĞܠ===
   Öne çıkan görseli olmayan kartlarda hover'da metin kaybolmasın.
   Sadece .service-card-bg varsa (öne çıkan görsel yüklüyse) metin beyaza döner. */
.service-archive-card { position: relative; }

/* Varsayılan: hover'da metin her zaman koyu ve okunabilir */
.service-archive-card:hover .service-card-content h3 { color: #1a365d; }
.service-archive-card:hover .service-excerpt           { color: #555; }
.service-archive-card:hover .service-tag               { background: rgba(26,54,93,0.07); color: #1a365d; }
.service-archive-card:hover .service-icon-wrap         { background: linear-gradient(135deg,#1a365d,#2a4a7f); }

/* Arka plan görseli aktifleşince (JS veya CSS :has ile) metin beyaza döner */
.service-archive-card:has(.service-card-bg):hover .service-card-content h3,
.service-archive-card.has-bg:hover .service-card-content h3 { color: rgba(255,255,255,0.95); }
.service-archive-card:has(.service-card-bg):hover .service-excerpt,
.service-archive-card.has-bg:hover .service-excerpt           { color: rgba(255,255,255,0.8); }
.service-archive-card:has(.service-card-bg):hover .service-tag,
.service-archive-card.has-bg:hover .service-tag               { background: rgba(255,255,255,0.15); color: #fff; }

/* === HİZMET KART HOVER — METİN GÖRÜNÜRLÜĞܠ===
   Öne çıkan görseli olmayan service-card'larda hover'da metin koyu kalsın */

/* Varsayılan: arka plan görseli yoksa hover'da metin koyu */
.service-card:hover h3 a {
    color: #1a365d !important;
}
.service-card:hover p {
    color: #555 !important;
}
.service-card:hover .service-link {
    color: #c9a96e !important;
}

/* Arka plan görseli olan kartlarda hover'da metin beyaz */
.service-card:has(.service-card-bg):hover h3 a,
.service-card.has-bg:hover h3 a {
    color: rgba(255,255,255,0.95) !important;
}
.service-card:has(.service-card-bg):hover p,
.service-card.has-bg:hover p {
    color: rgba(255,255,255,0.85) !important;
}
.service-card:has(.service-card-bg):hover .service-link,
.service-card.has-bg:hover .service-link {
    color: #fff !important;
}
/* === İLETİŞİM SAYFASI === */

/* Bilgi Kartları */
.iletisim-cards-section {
    background: var(--bg-light);
    padding: 70px 0 50px;
}

.iletisim-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.iletisim-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.iletisim-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--accent-color);
}

.iletisim-card-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--accent-color);
    transition: var(--transition);
}

.iletisim-card:hover .iletisim-card-icon {
    background: var(--accent-color);
    color: #fff;
}

.iletisim-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.iletisim-card p,
.iletisim-card a {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

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

/* Form Bölümü */
.iletisim-form-section {
    background: #fff;
    padding: 80px 0;
}

.iletisim-form-inner {
    max-width: 800px;
    margin: 0 auto;
}

.iletisim-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.iletisim-form-header .section-title::after {
    margin: 15px auto 0;
}

.iletisim-form-header .section-description {
    margin-top: 20px;
}

.iletisim-form-box {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow-sm);
}

/* Contact Form 7 override — tema renklerine uyumlu */
.iletisim-form-box .wpcf7-form p {
    margin-bottom: 20px;
}

.iletisim-form-box .wpcf7-form input[type="text"],
.iletisim-form-box .wpcf7-form input[type="email"],
.iletisim-form-box .wpcf7-form input[type="tel"],
.iletisim-form-box .wpcf7-form textarea,
.iletisim-form-box .wpcf7-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 15px;
    background: #fff;
    color: var(--text-color);
    transition: var(--transition);
}

.iletisim-form-box .wpcf7-form input:focus,
.iletisim-form-box .wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}

.iletisim-form-box .wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

.iletisim-form-box .wpcf7-form input[type="submit"] {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    width: auto;
}

.iletisim-form-box .wpcf7-form input[type="submit"]:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.iletisim-form-box .wpcf7-not-valid-tip {
    color: var(--error-color);
    font-size: 13px;
    margin-top: 5px;
}

.iletisim-form-box .wpcf7-response-output {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    font-size: 15px;
    border: none !important;
}

.iletisim-form-box .wpcf7-mail-sent-ok {
    background: #e6f4ea;
    color: #2d6a4f;
}

.iletisim-form-box .wpcf7-validation-errors,
.iletisim-form-box .wpcf7-mail-sent-ng {
    background: #fce8e8;
    color: #c0392b;
}

/* CF7 yok uyarısı */
.cf7-not-found {
    background: #fff8e1;
    border-left: 4px solid var(--accent-color);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-size: 15px;
}

.cf7-not-found i {
    color: var(--accent-color);
    margin-right: 8px;
}

.cf7-not-found a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Harita */
.iletisim-map-section {
    line-height: 0;
}

.iletisim-map-section iframe {
    width: 100%;
    height: 480px;
    display: block;
    border: 0;
    filter: grayscale(20%);
}

/* Responsive */
@media (max-width: 1024px) {
    .iletisim-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .iletisim-cards-grid {
        grid-template-columns: 1fr;
    }

    .iletisim-form-box {
        padding: 30px 20px;
    }

    .iletisim-map-section iframe {
        height: 320px;
    }
}

/* === HAKKIMIZDA SAYFASI === */

/* Bölüm 1: Hikaye */
.hakkimizda-hikaye-section {
    background: #fff;
}

.hakkimizda-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hakkimizda-split-image {
    position: relative;
}

.hakkimizda-split-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: block;
}

.hakkimizda-split-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

.hakkimizda-img-placeholder {
    width: 100%;
    min-height: 420px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--accent-color);
    opacity: 0.4;
}

.hakkimizda-yil-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--accent-color);
    color: var(--primary-color);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    line-height: 1.2;
}

.badge-sayi {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.badge-yazi {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hakkimizda-baslik {
    text-align: left;
    font-size: 36px;
}

.hakkimizda-baslik::after {
    margin: 15px 0 0;
}

.hakkimizda-metin p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 15px;
}

/* Misyon & Vizyon kartları */
.misyon-vizyon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.misyon-vizyon-kart {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 25px 20px;
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.misyon-vizyon-kart:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.mv-icon {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.misyon-vizyon-kart h4 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.misyon-vizyon-kart p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Bölüm 2: Neden Biz */
.hakkimizda-neden-section {
    background: var(--bg-light);
}

.neden-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.neden-kart {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.neden-kart:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--accent-color);
}

.neden-kart-ikon {
    width: 72px;
    height: 72px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 28px;
    color: var(--accent-color);
    transition: var(--transition);
}

.neden-kart:hover .neden-kart-ikon {
    background: var(--accent-color);
    color: #fff;
}

.neden-kart h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.neden-kart p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Bölüm 3: Ekip */
.hakkimizda-ekip-section {
    background: #fff;
}

.lawyer-img-placeholder {
    width: 100%;
    height: 300px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--accent-color);
    opacity: 0.4;
}

.ekip-bos-uyari {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 18px;
}

.ekip-bos-uyari i {
    display: block;
    font-size: 50px;
    color: var(--accent-color);
    opacity: 0.4;
    margin-bottom: 20px;
}

.ekip-bos-uyari a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .neden-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hakkimizda-split {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hakkimizda-split-image::before {
        display: none;
    }

    .hakkimizda-yil-badge {
        bottom: -20px;
        right: 20px;
        width: 90px;
        height: 90px;
    }

    .badge-sayi {
        font-size: 22px;
    }

    .misyon-vizyon-grid {
        grid-template-columns: 1fr;
    }

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