/* ============================================================
   AVUKAT TEMA — Kurumsal & Şık
   Renk Paleti:
     Koyu Lacivert : #0d1b2a
     Orta Lacivert : #1b2d45
     Altın          : #c9a84c
     Açık Altın     : #e6c97a
     Beyaz          : #ffffff
     Açık Gri       : #f4f6f8
     Metin          : #2c2c2c
============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #2c2c2c;
    background: #f4f6f8;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s; }
ul { list-style: none; }

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .5px;
    transition: all .3s;
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-gold {
    background: #c9a84c;
    color: #0d1b2a;
    border-color: #c9a84c;
}
.btn-gold:hover {
    background: transparent;
    color: #c9a84c;
    border-color: #c9a84c;
}
.btn-dark {
    background: #0d1b2a;
    color: #fff;
    border-color: #0d1b2a;
}
.btn-dark:hover {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #0d1b2a;
}
.btn-outline {
    background: transparent;
    color: #c9a84c;
    border-color: #c9a84c;
}
.btn-outline:hover {
    background: #c9a84c;
    color: #0d1b2a;
}

/* ===== SECTION HELPERS ===== */
.section-header {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}
.section-label {
    display: block;
    color: #c9a84c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.section-header h2 {
    font-size: 28px;
    color: #0d1b2a;
    font-weight: 700;
    flex: 1;
}
.section-header .section-more {
    font-size: 13px;
    color: #c9a84c;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}
.section-header .section-more:hover { color: #0d1b2a; }

/* ===== HEADER TOP ===== */
#site-header { position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,.15); }

.header-top {
    background: #0d1b2a;
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255,255,255,.7);
}
.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-top-left {
    display: flex;
    gap: 24px;
    align-items: center;
}
.header-top-left span { display: flex; align-items: center; gap: 7px; }
.header-top-left a { color: rgba(255,255,255,.7); }
.header-top-left a:hover { color: #c9a84c; }
.header-top-left i { color: #c9a84c; }
.header-top-right {
    display: flex;
    gap: 14px;
}
.header-top-right a {
    width: 28px; height: 28px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: 12px;
    transition: all .3s;
}
.header-top-right a:hover { background: #c9a84c; color: #0d1b2a; }

/* ===== HEADER MAIN ===== */
.header-main {
    background: #1b2d45;
    padding: 0;
}
.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.site-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}
.logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, #c9a84c, #e6c97a);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: #0d1b2a;
    flex-shrink: 0;
}
.logo-text {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .3px;
}
.header-logo-img {
    height: 52px;
    width: auto;
    display: block;
    /* Logo koyu arka planda görünsün diye filtre */
    filter: brightness(0) invert(1);
}

#main-nav ul {
    display: flex;
    gap: 4px;
}
#main-nav ul li a {
    display: block;
    padding: 8px 14px;
    color: rgba(255,255,255,.85);
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 4px;
    transition: all .25s;
    position: relative;
}
#main-nav ul li a:hover,
#main-nav ul li a.active {
    color: #c9a84c;
    background: rgba(201,168,76,.08);
}
#main-nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 14px; right: 14px;
    height: 2px;
    background: #c9a84c;
    border-radius: 2px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-menu-btn span {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}

/* ===== HERO SLIDER ===== */
#hero { position: relative; height: 600px; overflow: hidden; }

.hero-slider { position: relative; width: 100%; height: 100%; }

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity .8s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide-fallback { background: linear-gradient(135deg, #0d1b2a 0%, #1b2d45 50%, #0f3d6e 100%); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,27,42,.85) 40%, rgba(13,27,42,.4) 100%);
}
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}
.hero-content .container { padding-top: 20px; }
.hero-sub {
    color: #c9a84c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 620px;
}
.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,.8);
    margin-bottom: 34px;
    max-width: 480px;
}

/* Hero arrows */
.hero-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 10;
    width: 48px; height: 48px;
    background: rgba(201,168,76,.2);
    border: 2px solid rgba(201,168,76,.5);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all .3s;
}
.hero-arrow:hover { background: #c9a84c; border-color: #c9a84c; color: #0d1b2a; }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }

/* Hero dots */
.hero-dots {
    position: absolute;
    bottom: 24px; left: 50%; transform: translateX(-50%);
    z-index: 10;
    display: flex; gap: 8px;
}
.hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none;
    cursor: pointer;
    transition: all .3s;
}
.hero-dot.active { background: #c9a84c; width: 28px; border-radius: 5px; }

/* ===== SERVICES BAND ===== */
#services-band {
    background: #0d1b2a;
    padding: 50px 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
}
.service-card {
    background: #1b2d45;
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: background .3s, transform .3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: #c9a84c;
    transform: scaleX(0);
    transition: transform .3s;
}
.service-card:hover { background: #243d5c; transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 52px; height: 52px;
    background: rgba(201,168,76,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #c9a84c;
    font-size: 20px;
    transition: all .3s;
}
.service-card:hover .service-icon { background: #c9a84c; color: #0d1b2a; }
.service-card h3 { font-size: 13px; color: #fff; font-weight: 600; line-height: 1.3; }
.service-arrow { color: rgba(201,168,76,0); font-size: 12px; transition: color .3s; }
.service-card:hover .service-arrow { color: #c9a84c; }

/* ===== LATEST ARTICLES ===== */
#latest-articles {
    padding: 80px 0;
    background: #fff;
}
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.article-card {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow .3s, transform .3s;
}
.article-card:hover {
    box-shadow: 0 12px 40px rgba(13,27,42,.12);
    transform: translateY(-4px);
}
.article-thumb {
    display: block;
    position: relative;
    overflow: hidden;
    height: 200px;
}
.article-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.article-card:hover .article-thumb img { transform: scale(1.06); }
.article-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,27,42,.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    color: #fff;
    font-size: 22px;
}
.article-card:hover .article-thumb-overlay { opacity: 1; }
.article-body { padding: 22px; }
.article-body h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #0d1b2a;
}
.article-body h3 a:hover { color: #c9a84c; }
.article-body p { font-size: 13.5px; color: #666; margin-bottom: 16px; line-height: 1.6; }
.read-more {
    font-size: 13px;
    color: #c9a84c;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.read-more:hover { color: #0d1b2a; }

/* ===== WHY US ===== */
#why-us {
    padding: 90px 0;
    background: #f4f6f8;
}
.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.why-us-text h2 { font-size: 32px; color: #0d1b2a; margin-bottom: 16px; }
.why-us-text > p { color: #555; margin-bottom: 28px; font-size: 15px; }
.why-list { margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.why-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 14.5px; color: #2c2c2c; font-weight: 500;
}
.why-list li i { color: #c9a84c; font-size: 16px; }
.why-us-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.stat-card {
    background: #fff;
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    border: 1px solid #e8ecf0;
    box-shadow: 0 4px 16px rgba(13,27,42,.06);
    transition: transform .3s, box-shadow .3s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(13,27,42,.1); }
.stat-number {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: #c9a84c;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: #666; font-weight: 600; }

/* ===== PAGE BANNER ===== */
#page-banner {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b2d45 100%);
    padding: 60px 0;
}
#page-banner h1 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 12px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,.6);
}
.breadcrumb a { color: #c9a84c; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 10px; }

/* ===== PAGE CONTENT ===== */
#page-content {
    padding: 70px 0;
    background: #fff;
    min-height: 400px;
}

/* Eski temadan gelen sınıflar için uyumluluk */
#page-content .post {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid #eef0f3;
    align-items: flex-start;
}
#page-content .post:last-child { border-bottom: none; }
#page-content .post img {
    width: 180px !important; height: 135px !important;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
#page-content .post h2 { font-size: 17px; color: #0d1b2a; margin-bottom: 8px; }
#page-content .post h2 span { color: #999; font-weight: 400; font-size: 13px; }
#page-content .post h2 a:hover { color: #c9a84c; }
#page-content .post .konu p { color: #666; font-size: 14px; margin-bottom: 12px; }
#page-content .post a.detail { font-size: 13px; color: #c9a84c; font-weight: 600; }
#page-content .post a.detail:hover { color: #0d1b2a; }

#page-content .son_makaleler_baslik {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 2px solid #c9a84c;
    margin-bottom: 32px;
}
#page-content .son_makaleler_baslik img { display: none; }
#page-content .son_makaleler_baslik h1 { font-size: 22px; color: #0d1b2a; }
#page-content .son_makaleler_baslik .line { flex: 1; }

#page-content .empty { color: #999; padding: 30px; text-align: center; font-size: 15px; }

#page-content #map { width: 100%; height: 400px; border-radius: 8px; margin-top: 30px; }

/* İletişim formu */
#page-content .contact-form input,
#page-content .contact-form textarea,
#page-content input[type="text"],
#page-content input[type="email"],
#page-content textarea,
#page-content select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dde1e7;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 16px;
    color: #2c2c2c;
    background: #fafbfc;
    transition: border-color .3s;
}
#page-content input:focus,
#page-content textarea:focus { border-color: #c9a84c; outline: none; background: #fff; }
#page-content input[type="submit"],
#page-content button[type="submit"] {
    background: #c9a84c; color: #0d1b2a;
    border: none; padding: 12px 32px;
    border-radius: 6px; font-weight: 700; cursor: pointer;
    font-size: 14px; width: auto; transition: background .3s;
}
#page-content input[type="submit"]:hover { background: #0d1b2a; color: #fff; }

/* Hizmetler */
#page-content .services-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
#page-content .service-item {
    background: #f4f6f8;
    border-radius: 8px;
    padding: 28px 24px;
    transition: box-shadow .3s;
}
#page-content .service-item:hover { box-shadow: 0 8px 28px rgba(13,27,42,.1); }
#page-content .service-item h2 a { color: #0d1b2a; font-size: 17px; }
#page-content .service-item h2 a:hover { color: #c9a84c; }

/* ===== FOOTER ===== */
#site-footer { background: #0d1b2a; }

.footer-main { padding: 70px 0 50px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    display: flex; align-items: center; gap: 12px;
    color: #fff; font-size: 18px; font-weight: 700;
    margin-bottom: 18px;
}
.footer-logo i { color: #c9a84c; font-size: 24px; }
.footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
}
.footer-brand > p { color: rgba(255,255,255,.55); font-size: 13.5px; line-height: 1.7; margin-bottom: 22px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.07);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: 13px;
    transition: all .3s;
}
.footer-social a:hover { background: #c9a84c; color: #0d1b2a; }

.footer-col h4 {
    color: #c9a84c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: rgba(255,255,255,.55);
    font-size: 13.5px;
    display: flex; align-items: center; gap: 8px;
    transition: color .25s;
}
.footer-col ul li a i { font-size: 10px; color: #c9a84c; }
.footer-col ul li a:hover { color: #c9a84c; }

.footer-contact-list li {
    color: rgba(255,255,255,.55);
    font-size: 13.5px;
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 12px;
}
.footer-contact-list li i { color: #c9a84c; margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.55); }
.footer-contact-list a:hover { color: #c9a84c; }
.footer-address-item { align-items: flex-start !important; }
.footer-address-text { flex: 1; line-height: 1.6; }
.footer-address-text p {
    margin: 0 0 2px 0 !important;
    color: rgba(255,255,255,.55) !important;
    font-size: 13px !important;
    display: block !important;
}
.footer-address-text span {
    color: rgba(255,255,255,.55) !important;
    font-size: 13px !important;
}
.footer-address-text strong {
    color: #c9a84c !important;
    font-weight: 600 !important;
}

.footer-newsletter p { color: rgba(255,255,255,.55); font-size: 13px; margin: 16px 0 10px; }
.newsletter-input-group { display: flex; }
.newsletter-input-group input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-right: none;
    border-radius: 4px 0 0 4px;
    color: #fff;
    font-size: 13px;
}
.newsletter-input-group input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-input-group input:focus { outline: none; border-color: #c9a84c; }
.newsletter-input-group button {
    background: #c9a84c;
    color: #0d1b2a;
    border: none;
    padding: 10px 16px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background .3s;
    font-size: 14px;
}
.newsletter-input-group button:hover { background: #e6c97a; }
.email-result { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 6px; display: block; }

.footer-bottom {
    background: rgba(0,0,0,.25);
    padding: 18px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,.4); font-size: 13px; }
.footer-bottom a:hover { color: #c9a84c; }

/* ===== ALT SAYFA İÇERİKLERİ ===== */

/* ---- Makale listesi sayfası ---- */
.articles-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.articles-page-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.articles-count { font-size: 14px; color: #888; }
.articles-search-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: #f4f6f8; border: 1px solid #dde1e7;
    padding: 5px 12px; border-radius: 20px; font-size: 13px; color: #555;
}
.articles-search-tag a { color: #c9a84c; font-size: 12px; }
.articles-search-tag a:hover { color: #0d1b2a; }

.articles-search-form {
    display: flex;
    border: 1px solid #dde1e7; border-radius: 8px; overflow: hidden;
    background: #fff;
}
.articles-search-form input {
    padding: 10px 16px; border: none; outline: none;
    font-size: 14px; color: #2c2c2c; width: 220px; background: transparent;
}
.articles-search-form button {
    background: #c9a84c; color: #0d1b2a;
    border: none; padding: 10px 16px; cursor: pointer;
    font-size: 15px; transition: background .25s;
}
.articles-search-form button:hover { background: #0d1b2a; color: #fff; }

/* Kart grid */
.articles-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

/* article-card zaten style.css'de tanımlı, date ekleyelim */
.article-date {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; color: #c9a84c; font-weight: 600;
    margin-bottom: 8px;
}

/* Boş durum */
.articles-empty {
    text-align: center; padding: 70px 20px; color: #aaa;
}
.articles-empty i { font-size: 52px; margin-bottom: 16px; display: block; color: #dde1e7; }
.articles-empty p { font-size: 16px; margin-bottom: 24px; }

/* Pagination */
.articles-pagination {
    display: flex; align-items: center; gap: 6px;
    flex-wrap: wrap; margin-top: 12px;
}
.articles-pagination span {
    display: inline-flex; align-items: center; justify-content: center;
}
.articles-pagination span a,
.articles-pagination span[class="active"] {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 38px; height: 38px; padding: 0 14px;
    border: 1px solid #dde1e7; border-radius: 6px;
    font-size: 14px; color: #444; transition: all .25s; text-decoration: none;
}
.articles-pagination span a:hover {
    background: #c9a84c; border-color: #c9a84c; color: #0d1b2a; font-weight: 700;
}
.articles-pagination span.active,
.articles-pagination span [class="active"] {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 38px; height: 38px; padding: 0 14px;
    background: #c9a84c; border: 1px solid #c9a84c; border-radius: 6px;
    font-size: 14px; font-weight: 700; color: #0d1b2a;
}

.articles-page-info {
    font-size: 13px; color: #aaa;
    background: #f4f6f8; padding: 4px 12px; border-radius: 20px;
}

/* Eski .post yapısı için fallback (diğer sayfalarda kullanılıyor olabilir) */
#page-content #content_wrapper { padding: 0; }
#page-content .post {
    display: flex; gap: 24px; padding: 28px 0;
    border-bottom: 1px solid #eef0f3; align-items: flex-start;
}
#page-content .post:last-of-type { border-bottom: none; }
#page-content .post img { width: 180px !important; height: 135px !important; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
#page-content .post h2 { font-size: 17px; color: #0d1b2a; margin-bottom: 8px; line-height: 1.4; }
#page-content .post h2 span { color: #999; font-weight: 400; font-size: 13px; }
#page-content .post h2 a { color: #0d1b2a; }
#page-content .post h2 a:hover { color: #c9a84c; }
#page-content .post .konu p { color: #666; font-size: 14px; margin-bottom: 12px; line-height: 1.6; }
#page-content .post a.detail { font-size: 13px; color: #c9a84c; font-weight: 600; }
#page-content .post a.detail:hover { color: #0d1b2a; }

/* Başlık bandı (son_makaleler_baslik) */
#page-content .son_makaleler_baslik {
    display: flex; align-items: center; gap: 12px;
    padding-bottom: 16px; border-bottom: 2px solid #c9a84c; margin-bottom: 32px;
}
#page-content .son_makaleler_baslik img { display: none; }
#page-content .son_makaleler_baslik h1 { font-size: 22px; color: #0d1b2a; font-weight: 700; }
#page-content .son_makaleler_baslik .line,
#page-content .son_makaleler_baslik .clear { display: none; }

/* Pagination (eski yapı fallback) */
#page-content .pagination { margin-top: 32px; display: flex; gap: 8px; flex-wrap: wrap; }
#page-content .pagination a {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 38px; height: 38px; padding: 0 10px;
    border: 1px solid #dde1e7; border-radius: 6px;
    font-size: 14px; color: #444; transition: all .25s;
}
#page-content .pagination a:hover,
#page-content .pagination a.active { background: #c9a84c; border-color: #c9a84c; color: #0d1b2a; font-weight: 700; }

/* Makale & Hizmet detay */
#page-content .article-title {
    background: #f4f6f8; padding: 16px 20px; border-radius: 8px;
    margin-bottom: 24px;
}
#page-content .article-title h2 { font-size: 18px; color: #0d1b2a; }
#page-content .article-title h2 span { color: #c9a84c; }
#page-content .article-title .left,
#page-content .article-title .right { display: inline-block; margin-right: 20px; }
#page-content .article-title .clear { display: none; }
#page-content .article {
    line-height: 1.8; color: #444; font-size: 15px;
}
#page-content .article p { margin-bottom: 16px; }
#page-content .article h2,
#page-content .article h3 { color: #0d1b2a; margin: 24px 0 12px; }
#page-content .article img { border-radius: 8px; margin-bottom: 20px; }
#page-content .article-img {
    float: left; margin: 0 24px 16px 0;
    display: block; border-radius: 8px; overflow: hidden;
}
#page-content .article-img img { border-radius: 8px; }

/* Çalışma alanları listesi (services.php) */
#page-content .ca-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
#page-content .ca-list .clear { display: none; }
#page-content .ca {
    display: flex; align-items: center; gap: 14px;
    padding: 22px 20px;
    background: #f4f6f8; border-radius: 8px;
    border-left: 4px solid #c9a84c;
    font-weight: 600; color: #0d1b2a; font-size: 15px;
    transition: all .3s;
}
#page-content .ca:hover {
    background: #0d1b2a; color: #c9a84c;
    transform: translateX(4px);
}
#page-content .ca::before {
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #c9a84c;
    font-size: 14px;
    flex-shrink: 0;
}
#page-content .ca:hover::before { color: #c9a84c; }

/* İletişim sayfası */
#page-content .contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* İletişim bilgi kutusu */
.contact-info-box {
    background: #f4f6f8;
    border-radius: 10px;
    padding: 28px 24px;
    margin-bottom: 20px;
    border-left: 4px solid #c9a84c;
}
.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #eef0f3;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-icon {
    width: 32px; height: 32px;
    background: #c9a84c;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #0d1b2a; font-size: 13px;
    flex-shrink: 0; margin-top: 1px;
}
.contact-info-row a { color: #c9a84c; }
.contact-info-row a:hover { color: #0d1b2a; }

/* Harita */
#page-content #map { width: 100%; height: 320px; border-radius: 10px; border: none; z-index: 1; }

/* Alert mesajları */
.contact-alert {
    padding: 12px 16px; border-radius: 8px;
    margin-bottom: 20px; font-size: 14px; font-weight: 500;
    display: flex; align-items: center; gap: 10px;
}
.contact-alert-error { background: #fff0f0; color: #c0392b; border: 1px solid #f5c6c6; }
.contact-alert-success { background: #f0fff4; color: #27ae60; border: 1px solid #b2dfdb; }

/* Form */
#page-content .contact .form { background: #fff; border: 1px solid #eef0f3; border-radius: 10px; padding: 32px; }
#page-content .contact .form label { display: block; margin-bottom: 16px; }
#page-content .contact .form label span {
    display: block; font-size: 13px; font-weight: 600; color: #444; margin-bottom: 6px;
}
#page-content .contact .form input[type="text"],
#page-content .contact .form input[type="email"],
#page-content .contact .form textarea {
    width: 100%; padding: 11px 14px;
    border: 1px solid #dde1e7; border-radius: 6px;
    font-size: 14px; color: #2c2c2c; background: #fafbfc;
    transition: border-color .3s; font-family: inherit;
}
#page-content .contact .form input:focus,
#page-content .contact .form textarea:focus { border-color: #c9a84c; outline: none; background: #fff; }
#page-content .contact .form textarea { height: 130px; resize: vertical; }
#page-content .contact .form input[type="submit"] {
    background: #c9a84c; color: #0d1b2a;
    border: none; padding: 13px 36px; border-radius: 6px;
    font-weight: 700; cursor: pointer; font-size: 14px;
    transition: all .3s; width: auto; letter-spacing: .3px;
}
#page-content .contact .form input[type="submit"]:hover { background: #0d1b2a; color: #fff; }

/* Site haritası */
#page-content .article ul { padding-left: 20px; }
#page-content .article ul li { margin-bottom: 8px; list-style: disc; }
#page-content .article ul li a { color: #444; font-size: 14px; }
#page-content .article ul li a:hover { color: #c9a84c; }
#page-content .article ul ul { margin-top: 8px; }

/* Genel yardımcılar */
#page-content .empty { color: #999; padding: 40px; text-align: center; font-size: 15px; }
#page-content .clear { display: none; }

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
    grid-column: 1/-1;
}
.empty-state i { font-size: 48px; margin-bottom: 16px; display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
    .why-us-inner { grid-template-columns: 1fr; gap: 40px; }
    .why-us-stats { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    #hero { height: 480px; }
    .hero-content h1 { font-size: 36px; }
}

@media (max-width: 768px) {
    .header-top { display: none; }
    .header-main .container { height: 60px; }
    .logo-text { font-size: 15px; }

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

    #main-nav {
        position: fixed;
        top: 60px; left: 0; right: 0;
        background: #1b2d45;
        padding: 16px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,.3);
        transform: translateY(-120%);
        transition: transform .35s ease;
        z-index: 999;
    }
    #main-nav.open { transform: translateY(0); }
    #main-nav ul { flex-direction: column; gap: 0; }
    #main-nav ul li a { padding: 12px 24px; border-radius: 0; font-size: 15px; }
    #main-nav ul li a.active::after { display: none; }

    #hero { height: 400px; }
    .hero-content h1 { font-size: 28px; }
    .hero-sub { font-size: 11px; }
    .hero-desc { font-size: 14px; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .articles-grid { grid-template-columns: 1fr; }
    .why-us-stats { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand { text-align: center; }
    .footer-social { justify-content: center; }
    .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }

    .articles-card-grid { grid-template-columns: 1fr; }
    .articles-page-header { flex-direction: column; align-items: flex-start; }
    .articles-search-form input { width: 160px; }
    #page-content .ca-list { grid-template-columns: 1fr; }
    #page-content .post { flex-direction: column; }
    #page-content .post img { width: 100% !important; height: 200px !important; }
    #page-content .contact { grid-template-columns: 1fr; gap: 30px; }
    #page-content .article-img { float: none; margin: 0 0 16px 0; width: 100% !important; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 24px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .why-us-stats { grid-template-columns: 1fr 1fr; }
}
