/*
Theme Name: Av. Halil Emir Değirmenci
Theme URI: https://degirmenci.av.tr
Author: Değirmenci Hukuk
Author URI: https://degirmenci.av.tr
Description: Av. Halil Emir Değirmenci için özel tasarlanmış profesyonel avukat teması. Koyu lacivert ve altın sarısı renk şeması, responsive tasarım, blog/makale desteği, SSS modülü ve Google Maps entegrasyonu.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: av-degirmenci
Tags: one-column, custom-menu, featured-images, theme-options, translation-ready

Av. Halil Emir Değirmenci WordPress Teması
*/

/* =============== CSS VARIABLES =============== */
:root {
    /* Ana Renkler */
    --lacivert: #0a1628;
    --lacivert-light: #142238;
    --lacivert-dark: #060d17;
    --altin: #c9a227;
    --altin-light: #d4b84a;
    --altin-dark: #a6851f;
    
    /* Nötr Renkler */
    --beyaz: #ffffff;
    --buz-gri: #f8f9fa;
    --acik-gri: #e9ecef;
    --antrasit: #2c3e50;
    --koyu-metin: #1a2533;
    
    /* Tipografi */
    --font-baslik: 'Cormorant Garamond', serif;
    --font-govde: 'Source Sans Pro', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-govde);
    font-size: 17px;
    line-height: 1.8;
    color: var(--koyu-metin);
    background-color: var(--beyaz);
}

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

ul, ol {
    list-style: none;
}

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

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

/* =============== HEADER =============== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--lacivert);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-top {
    background: var(--lacivert-dark);
    padding: 8px 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--altin);
    font-size: 16px;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--altin);
    font-size: 14px;
}

.contact-info i {
    color: var(--altin-light);
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-title {
    font-family: var(--font-baslik);
    font-size: 24px;
    font-weight: 600;
    color: var(--altin);
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* =============== NAVIGATION =============== */
.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--beyaz);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 5px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--altin);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--altin);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Only apply current-menu-item on non-anchor links */
.nav-menu .current-menu-item:not([class*="anchor"]) > a,
.nav-menu .current_page_item:not([class*="anchor"]) > a {
    color: var(--altin);
}

.nav-menu .current-menu-item:not([class*="anchor"]) > a::after,
.nav-menu .current_page_item:not([class*="anchor"]) > a::after {
    width: 100%;
}

/* Sub-menu */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--lacivert);
    min-width: 220px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-menu .sub-menu li {
    display: block;
}

.nav-menu .sub-menu a {
    display: block;
    padding: 10px 25px;
    font-size: 14px;
    text-transform: none;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--altin);
    transition: var(--transition);
}

/* =============== HERO SECTION =============== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--lacivert);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--lacivert);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(201,162,39,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(201,162,39,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid var(--altin);
    border-radius: 30px;
    color: var(--altin);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero h1 {
    font-family: var(--font-baslik);
    font-size: 60px;
    font-weight: 600;
    color: var(--beyaz);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--altin);
}

.hero-text {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* =============== BUTTONS =============== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--altin);
    color: var(--lacivert);
}

.btn-primary:hover {
    background: var(--altin-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--beyaz);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--altin);
    color: var(--altin);
}

.btn-dark {
    background: var(--lacivert);
    color: var(--altin);
}

.btn-dark:hover {
    background: var(--lacivert-light);
}

/* =============== SECTION STYLES =============== */
section {
    padding: var(--section-padding);
}

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

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 20px;
    color: var(--altin-dark);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-baslik);
    font-size: 42px;
    font-weight: 600;
    color: var(--lacivert);
    margin-bottom: 20px;
}

.section-desc {
    color: var(--antrasit);
    font-size: 18px;
}

.bg-light {
    background: var(--buz-gri);
}

.bg-dark {
    background: var(--lacivert);
}

.bg-dark .section-badge {
    background: rgba(201, 162, 39, 0.2);
    color: var(--altin);
}

.bg-dark .section-title {
    color: var(--beyaz);
}

.bg-dark .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.2);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--altin);
    border-radius: 8px;
    z-index: -1;
}

.about-content h2 {
    font-family: var(--font-baslik);
    font-size: 38px;
    color: var(--lacivert);
    margin-bottom: 25px;
}

.about-content h2 span {
    color: var(--altin-dark);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--antrasit);
}

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

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.highlight-icon {
    width: 45px;
    height: 45px;
    background: var(--lacivert);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--altin);
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 16px;
    color: var(--lacivert);
    margin-bottom: 5px;
}

.highlight-text p {
    font-size: 14px;
    color: var(--antrasit);
    margin: 0;
}

/* =============== SERVICES =============== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--beyaz);
    border: 1px solid var(--acik-gri);
    border-radius: 8px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--altin);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Service Card Link */
a.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--altin-dark);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.service-card:hover .service-link {
    color: var(--altin);
    gap: 12px;
}

.service-link-placeholder {
    display: block;
    margin-top: 15px;
    font-size: 12px;
    color: #999;
    font-style: italic;
}

/* =============== SERVICE MODAL =============== */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.9);
    z-index: 9999;
    overflow-y: auto;
    padding: 40px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.service-modal-content {
    background: var(--beyaz);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--buz-gri);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: var(--antrasit);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-modal-close:hover {
    background: var(--lacivert);
    color: var(--altin);
}

.service-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--lacivert) 0%, var(--lacivert-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-modal-icon i {
    font-size: 32px;
    color: var(--altin);
}

.service-modal-content h2 {
    font-family: var(--font-baslik);
    font-size: 32px;
    color: var(--lacivert);
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--altin);
}

.service-modal-body {
    color: var(--koyu-metin);
    font-size: 16px;
    line-height: 1.8;
}

.service-modal-body p {
    margin-bottom: 20px;
}

.service-modal-body h4 {
    font-family: var(--font-baslik);
    font-size: 20px;
    color: var(--lacivert);
    margin: 25px 0 15px;
}

.service-modal-body ul {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.service-modal-body ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.service-modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--altin);
    font-weight: bold;
}

.service-modal-footer {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--acik-gri);
    text-align: center;
}

@media (max-width: 768px) {
    .service-modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .service-modal-content h2 {
        font-size: 24px;
    }
}

/* =============== SERVICE DETAIL PAGE =============== */
.service-header .service-header-icon {
    width: 80px;
    height: 80px;
    background: rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-header .service-header-icon i {
    font-size: 32px;
    color: var(--altin);
}

.service-detail {
    padding: 80px 0;
    background: var(--buz-gri);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
}

.service-main-content {
    background: var(--beyaz);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(10, 22, 40, 0.1);
}

.service-featured-image {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.service-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content-text {
    padding: 50px;
    font-size: 17px;
    line-height: 1.9;
    color: var(--koyu-metin);
}

.service-content-text h2,
.service-content-text h3,
.service-content-text h4 {
    font-family: var(--font-baslik);
    color: var(--lacivert);
    margin: 30px 0 15px;
}

.service-content-text h2 { font-size: 28px; }
.service-content-text h3 { font-size: 24px; }
.service-content-text h4 { font-size: 20px; }

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

.service-content-text ul,
.service-content-text ol {
    margin: 20px 0;
    padding-left: 25px;
}

.service-content-text li {
    margin-bottom: 10px;
    list-style: disc;
}

.service-content-text ol li {
    list-style: decimal;
}

.service-content-text blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background: var(--buz-gri);
    border-left: 4px solid var(--altin);
    font-style: italic;
    color: var(--antrasit);
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: var(--beyaz);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(10, 22, 40, 0.08);
}

.sidebar-widget h4 {
    font-family: var(--font-baslik);
    font-size: 20px;
    color: var(--lacivert);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--altin);
}

.service-list {
    list-style: none;
}

.service-list li {
    margin-bottom: 12px;
}

.service-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--buz-gri);
    border-radius: 8px;
    color: var(--koyu-metin);
    font-size: 15px;
    transition: var(--transition);
}

.service-list a:hover {
    background: var(--lacivert);
    color: var(--altin);
}

.service-list a i {
    color: var(--altin);
    width: 20px;
    text-align: center;
}

/* Sidebar Contact */
.sidebar-contact {
    background: var(--lacivert);
    color: var(--beyaz);
}

.sidebar-contact h4 {
    color: var(--altin);
    border-bottom-color: rgba(201, 162, 39, 0.3);
}

.sidebar-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 25px;
}

.sidebar-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: var(--altin);
    color: var(--lacivert);
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.sidebar-contact-btn:hover {
    background: var(--altin-light);
    transform: translateY(-2px);
}

.sidebar-contact-btn.whatsapp {
    background: #25D366;
    color: var(--beyaz);
}

.sidebar-contact-btn.whatsapp:hover {
    background: #20bd5a;
}

.sidebar-contact-btn.outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--beyaz);
}

.sidebar-contact-btn.outline:hover {
    border-color: var(--altin);
    color: var(--altin);
}

/* Service Navigation */
.service-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--acik-gri);
}

@media (max-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .service-content-text {
        padding: 30px;
    }
    
    .service-navigation {
        flex-direction: column;
    }
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--lacivert) 0%, var(--lacivert-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 28px;
    color: var(--altin);
}

.service-card h3 {
    font-family: var(--font-baslik);
    font-size: 22px;
    color: var(--lacivert);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--antrasit);
    font-size: 15px;
}

/* =============== BLOG / POSTS =============== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--lacivert-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

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

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--lacivert-dark) 0%, var(--lacivert) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-image i {
    font-size: 50px;
    color: var(--altin);
    opacity: 0.3;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: var(--altin);
    color: var(--lacivert);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}

.blog-category a {
    color: var(--lacivert);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 13px;
    color: var(--altin);
    margin-bottom: 10px;
}

.blog-card h3 {
    font-family: var(--font-baslik);
    font-size: 20px;
    color: var(--beyaz);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--beyaz);
}

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

.blog-card p,
.blog-card .excerpt {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--altin);
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
}

.blog-link:hover {
    gap: 12px;
}

/* Blog Archive / Single Post Styles */
.blog-archive,
.single-post-content {
    padding: 150px 0 100px;
    background: var(--buz-gri);
}

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

.archive-card {
    background: var(--beyaz);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(10, 22, 40, 0.08);
    transition: var(--transition);
}

.archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 22, 40, 0.15);
}

.archive-card .card-image {
    height: 200px;
    overflow: hidden;
}

.archive-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.archive-card .card-content {
    padding: 25px;
}

.archive-card .card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--antrasit);
}

.archive-card .card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.archive-card .card-meta i {
    color: var(--altin);
}

.archive-card h2 {
    font-family: var(--font-baslik);
    font-size: 22px;
    color: var(--lacivert);
    margin-bottom: 12px;
    line-height: 1.4;
}

.archive-card h2 a:hover {
    color: var(--altin-dark);
}

.archive-card .excerpt {
    color: var(--antrasit);
    font-size: 15px;
    margin-bottom: 20px;
}

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

.archive-card .read-more:hover {
    color: var(--lacivert);
}

/* Single Post */
.single-article {
    max-width: 800px;
    margin: 0 auto;
    background: var(--beyaz);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(10, 22, 40, 0.1);
}

.single-article .featured-image {
    height: 400px;
    overflow: hidden;
}

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

.single-article .article-content {
    padding: 50px;
}

.single-article .article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--acik-gri);
    font-size: 14px;
    color: var(--antrasit);
}

.single-article .article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-article .article-meta i {
    color: var(--altin);
}

.single-article h1 {
    font-family: var(--font-baslik);
    font-size: 36px;
    color: var(--lacivert);
    margin-bottom: 30px;
    line-height: 1.3;
}

.single-article .entry-content {
    color: var(--koyu-metin);
    font-size: 17px;
    line-height: 1.9;
}

.single-article .entry-content p {
    margin-bottom: 20px;
}

.single-article .entry-content h2,
.single-article .entry-content h3,
.single-article .entry-content h4 {
    font-family: var(--font-baslik);
    color: var(--lacivert);
    margin: 35px 0 20px;
}

.single-article .entry-content h2 {
    font-size: 28px;
}

.single-article .entry-content h3 {
    font-size: 24px;
}

.single-article .entry-content ul,
.single-article .entry-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.single-article .entry-content li {
    margin-bottom: 10px;
    list-style: disc;
}

.single-article .entry-content ol li {
    list-style: decimal;
}

.single-article .entry-content blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background: var(--buz-gri);
    border-left: 4px solid var(--altin);
    font-style: italic;
    color: var(--antrasit);
}

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

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--beyaz);
    border: 1px solid var(--acik-gri);
    border-radius: 8px;
    color: var(--koyu-metin);
    font-weight: 600;
    transition: var(--transition);
}

.pagination a:hover,
.pagination .current {
    background: var(--altin);
    border-color: var(--altin);
    color: var(--lacivert);
}

/* =============== FAQ ACCORDION =============== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--beyaz);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 15px rgba(10, 22, 40, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-baslik);
    font-size: 19px;
    color: var(--lacivert);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--altin-dark);
}

.faq-question i {
    color: var(--altin);
    transition: var(--transition);
    font-size: 14px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: var(--antrasit);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* =============== CONTACT SECTION =============== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-box {
    background: var(--lacivert);
    border-radius: 12px;
    padding: 50px;
    color: var(--beyaz);
}

.contact-info-box h3 {
    font-family: var(--font-baslik);
    font-size: 32px;
    color: var(--altin);
    margin-bottom: 30px;
}

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

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    color: var(--altin);
    font-size: 20px;
}

.contact-item-text h4 {
    font-size: 16px;
    color: var(--altin);
    margin-bottom: 5px;
}

.contact-item-text p,
.contact-item-text a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

.contact-item-text a:hover {
    color: var(--altin);
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social a {
    width: 45px;
    height: 45px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--altin);
}

.contact-social a:hover {
    background: var(--altin);
    color: var(--lacivert);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 450px;
    box-shadow: 0 10px 40px rgba(10, 22, 40, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =============== FOOTER =============== */
.footer {
    background: var(--lacivert-dark);
    padding: 60px 0 30px;
}

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

.footer-brand h3 {
    font-family: var(--font-baslik);
    font-size: 24px;
    color: var(--altin);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.8;
}

.footer-links h4 {
    color: var(--beyaz);
    font-size: 16px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--altin);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
}

.footer-social a:hover {
    color: var(--altin);
}

/* =============== PAGE HEADER =============== */
.page-header {
    background: linear-gradient(135deg, var(--lacivert) 0%, var(--lacivert-dark) 100%);
    padding: 180px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-baslik);
    font-size: 48px;
    color: var(--beyaz);
    margin-bottom: 15px;
}

.page-header .breadcrumb {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.page-header .breadcrumb a {
    color: var(--altin);
}

.page-header .breadcrumb a:hover {
    text-decoration: underline;
}

/* =============== WORDPRESS SPECIFIC =============== */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

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

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

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

.wp-caption {
    max-width: 100%;
}

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

/* =============== RESPONSIVE =============== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

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

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

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

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--lacivert);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 25px;
        transition: var(--transition);
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

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

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 36px;
    }

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

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

    .btn {
        text-align: center;
        justify-content: center;
    }

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

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

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-image::before {
        display: none;
    }

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

    .contact-info-box {
        padding: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .single-article .article-content {
        padding: 30px;
    }

    .single-article h1 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 36px;
    }
}

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

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

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
