/*
Theme Name: Bahadir CETIN Corporate Theme
Theme URI: https://bahadirweb.com
Author: Bahadır Web
Author URI: https://bahadirweb.com
Description: Kurumsal, modern, zarif ve mobil uyumlu özel WordPress tema.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: bahadir-theme
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-logo, custom-menu, featured-images, editor-style, translation-ready
*/


/* =========================================================
   TEMEL AYARLAR
========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1 0 auto;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

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

.screen-reader-text:focus {
    left: 20px;
    top: 20px;
    z-index: 99999;
    background: #ffffff;
    color: #111827;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

/* =========================================================
   TOP BAR
========================================================= */
.site-topbar {
    display: none;
    background: #0d458a;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-topbar-container {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-topbar-left,
.site-topbar-right {
    display: flex;
    align-items: center;
}

.site-topbar-text {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
}

.site-topbar-phone {
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 700;
}

.site-topbar-phone:hover {
    color: #dbeafe;
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.header-inner {
    min-height: 62px;
}

.header-container {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.site-branding {
    display: flex;
    align-items: center;
    min-width: 0;
    padding-left: 2px;
    gap: 10px;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.site-logo .custom-logo {
    max-height: 40px;
    width: auto;
}

.site-title-link {
    display: inline-flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.2px;
}

.mobile-header-brand-text {
    display: none;
    min-width: 0;
    text-decoration: none;
}

.mobile-header-brand-main {
    display: block;
    color: #123e7c;
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.desktop-navigation {
    display: none;
    align-items: center;
    margin-left: auto;
}

.desktop-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 18px;
}

.desktop-menu li {
    position: relative;
    list-style: none;
}

.desktop-menu li a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    color: #123e7c;
    font-size: 0.96rem;
    font-weight: 700;
    padding: 2px 0;
}

.desktop-menu li a:hover,
.desktop-menu li.current-menu-item > a,
.desktop-menu li.current_page_item > a,
.desktop-menu li.current-menu-parent > a,
.desktop-menu li.current-menu-ancestor > a {
    color: #0d458a;
}

.desktop-menu .sub-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 240px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    overflow-x: hidden;
    background: #ffffff;
    border: 1px solid rgba(13, 69, 138, 0.10);
    border-radius: 16px;
    padding: 12px 0;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 50;
}

.desktop-menu .sub-menu::-webkit-scrollbar {
    width: 8px;
}

.desktop-menu .sub-menu::-webkit-scrollbar-track {
    background: transparent;
}

.desktop-menu .sub-menu::-webkit-scrollbar-thumb {
    background: rgba(13, 69, 138, 0.22);
    border-radius: 999px;
}

.desktop-menu .sub-menu {
    scrollbar-width: thin;
    scrollbar-color: rgba(13, 69, 138, 0.22) transparent;
}

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

.desktop-menu .sub-menu li {
    width: 100%;
}

.desktop-menu .sub-menu li a {
    display: block;
    width: 100%;
    min-height: auto;
    padding: 11px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #123e7c;
}

.mobile-menu-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(18, 62, 124, 0.10);
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.mobile-menu-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 10px;
    background: #123e7c;
}

/* =========================================================
   MOBIL MENU PANEL
========================================================= */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1090;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: min(340px, 88vw);
    height: 100vh;
    background: #ffffff;
    box-shadow: 20px 0 50px rgba(15, 23, 42, 0.12);
    transform: translateX(-100%);
    transition: transform 0.32s ease;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.mobile-menu-open .mobile-menu-panel {
    transform: translateX(0);
}

body.mobile-menu-open {
    overflow: hidden;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 18px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.mobile-menu-branding {
    min-width: 0;
    display: flex;
    align-items: center;
}

.mobile-site-logo .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.mobile-site-logo .custom-logo {
    max-height: 46px;
    width: auto;
}

.mobile-site-title-link {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.mobile-menu-close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    border-radius: 12px;
    color: #111827;
    font-size: 1.8rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.mobile-menu-body {
    padding: 16px 0 26px;
    flex: 1;
}

.mobile-navigation {
    width: 100%;
}

.mobile-menu {
    list-style: none;
}

.mobile-menu li {
    list-style: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.mobile-menu li a {
    display: block;
    width: 100%;
    padding: 15px 18px;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 500;
}

.mobile-menu li a:hover,
.mobile-menu li.current-menu-item > a,
.mobile-menu li.current_page_item > a {
    color: #0f4c81;
    background: rgba(15, 76, 129, 0.04);
}

.mobile-menu .sub-menu {
    list-style: none;
    background: #f8fafc;
    padding-left: 0;
}

.mobile-menu .sub-menu li a {
    padding-left: 32px;
    font-size: 0.96rem;
}

/* =========================================================
   HERO ALANI
========================================================= */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 0;
    display: block;
    background-color: #0f172a;
    overflow: hidden;
}

.hero-media {
    position: relative;
    width: 100%;
    line-height: 0;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
}

.hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-section .hero-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.48) 42%, rgba(15, 23, 42, 0.22) 100%);
    z-index: 1;
}

.hero-section-no-overlay .hero-overlay {
    display: none;
}

.hero-section-no-content .hero-container {
    display: none;
}

.hero-section-no-content .hero-overlay {
    display: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 72px;
    padding-bottom: 72px;
}

.hero-content {
    max-width: 720px;
    color: #ffffff;
}

.hero-title {
    margin: 0 0 20px;
    font-size: 2.2rem;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero-text {
    max-width: 640px;
    font-size: 1.04rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.94);
}

.hero-text p {
    margin-top: 0;
    margin-bottom: 16px;
}

.hero-text p:last-child {
    margin-bottom: 0;
}

.hero-actions {
    margin-top: 28px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 14px;
    background: #ffffff;
    color: #0f4c81;
    font-weight: 700;
    font-size: 0.98rem;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
}

.hero-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
}

/* =========================================================
   HERO BÖLGE ARAMA ALANI
========================================================= */
.hero-location-search {
    position: relative;
    z-index: 6;
    padding: 34px 0 0;
}

.hero-location-search.hero-location-search-overlap,
.hero-location-search.hero-location-search-below {
    margin-top: 0;
}

.hero-location-search-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.front-page-content + .hero-location-search {
    padding-top: 34px;
    padding-bottom: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-location-search-heading {
    margin-bottom: 18px;
}

.hero-location-search-title {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 1.35rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-location-search-text {
    margin: 0;
    color: #6b7280;
    line-height: 1.75;
}

.hero-location-search-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    position: relative;
}

.district-search-input {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border: 1px solid #dbe3ee;
    border-radius: 16px;
    background: #ffffff;
    color: #111827;
    outline: none;
    transition: all 0.2s ease;
}

.district-search-input:focus {
    border-color: #0d458a;
    box-shadow: 0 0 0 4px rgba(13, 69, 138, 0.08);
}

.district-search-button {
    min-height: 56px;
    border: 0;
    border-radius: 16px;
    background: #0d458a;
    color: #ffffff;
    font-weight: 700;
    padding: 0 20px;
    box-shadow: 0 14px 28px rgba(13, 69, 138, 0.18);
}

.district-search-button:hover {
    background: #123e7c;
}

.district-search-results {
    margin-top: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.district-search-result-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    text-decoration: none;
}

.district-search-result-item:last-child {
    border-bottom: 0;
}

.district-search-result-item:hover {
    background: #f8fbff;
}

.district-search-result-title {
    color: #123e7c;
    font-weight: 700;
    line-height: 1.4;
}

.district-search-result-meta {
    color: #6b7280;
    font-size: 0.92rem;
    line-height: 1.4;
}

.district-search-empty {
    padding: 14px 16px;
    color: #6b7280;
    font-size: 0.95rem;
}

.hero-location-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.hero-location-tag {
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(13, 69, 138, 0.12);
    border-radius: 999px;
    background: #ffffff;
    color: #123e7c;
    font-weight: 600;
}

.hero-location-tag:hover {
    background: #f8fbff;
    border-color: rgba(13, 69, 138, 0.22);
}

/* =========================================================
   HERO ALT BILGI KARTLARI
========================================================= */
.hero-feature-strip {
    position: relative;
    margin-top: 22px;
    z-index: 5;
}

.hero-feature-strip-container {
    position: relative;
}

.hero-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.hero-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    padding: 22px 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0d458a 0%, #123e7c 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
    flex-shrink: 0;
    box-shadow: 0 10px 22px rgba(13, 69, 138, 0.22);
}

.hero-feature-body h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 1.08rem;
    line-height: 1.3;
    font-weight: 700;
}

.hero-feature-body p {
    margin: 0;
    color: #4b5563;
    font-size: 0.97rem;
    line-height: 1.7;
}

/* =========================================================
   ANA SAYFA İÇERİK ALANI
========================================================= */
.front-page-content {
    position: relative;
    padding: 40px 0 78px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.front-page-content-container {
    width: 100%;
}
.front-page-layout {
    display: block;
}

.front-page-article {
    margin: 0;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 26px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
    overflow: hidden;
}

.entry-content {
    color: #374151;
    font-size: 1rem;
    line-height: 1.9;
}
.front-entry-content {
    padding: 34px 34px 36px;
}

.entry-content > *:first-child {
    margin-top: 0;
}

.entry-content > *:last-child {
    margin-bottom: 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #0f172a;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 18px;
    font-weight: 700;
}

.entry-content h1 {
    font-size: 2rem;
}

.entry-content h2 {
    font-size: 1.65rem;
}

.entry-content h3 {
    font-size: 1.35rem;
}

.entry-content h4 {
    font-size: 1.15rem;
}

.entry-content p {
    margin-top: 0;
    margin-bottom: 18px;
}

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

.entry-content li {
    margin-bottom: 8px;
}

.entry-content a {
    color: #0f4c81;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.entry-content blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    border-left: 4px solid #0f4c81;
    background: #f8fafc;
    color: #374151;
    border-radius: 12px;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.entry-content table th,
.entry-content table td {
    border: 1px solid #e5e7eb;
    padding: 12px 14px;
    text-align: left;
}

.entry-content table th {
    background: #f8fafc;
    color: #111827;
}

.entry-content .wp-block-image,
.entry-content .wp-block-gallery,
.entry-content .wp-block-columns,
.entry-content .wp-block-group {
    margin-bottom: 24px;
}

.entry-content .wp-block-button__link {
    border-radius: 12px;
    padding: 14px 22px;
    font-weight: 600;
}

.front-page-main {
    min-width: 0;
}

.front-page-sidebar {
    min-width: 0;
}

.front-page-sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.front-widget {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    padding: 24px 22px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}

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

.front-widget-title {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: 1.12rem;
    line-height: 1.35;
    font-weight: 700;
}

.front-widget-highlight {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-color: rgba(13, 69, 138, 0.10);
}

.front-widget-highlight p {
    margin: 0 0 16px;
    color: #4b5563;
    line-height: 1.75;
}

.front-widget-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    background: #0d458a;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(13, 69, 138, 0.18);
}

.front-widget-button:hover {
    background: #123e7c;
    color: #ffffff;
}

.front-page-sidebar .widget ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.front-page-sidebar .widget ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.front-page-sidebar .widget ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.front-page-sidebar .widget a {
    color: #123e7c;
    text-decoration: none;
}

.front-page-sidebar .widget a:hover {
    color: #0d458a;
}

.front-page-sidebar .widget p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   İÇ SAYFA HERO
========================================================= */
.page-hero {
    position: relative;
    padding: 0;
    background: transparent;
    border-bottom: 0;
}

.page-hero-container {
    padding-top: 0;
    padding-bottom: 0;
}

.page-hero-content {
    max-width: 820px;
}

.page-hero-visual {
    overflow: hidden;
    border-radius: 0 0 24px 24px;
    border: 0;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
    background: transparent;
}

.page-hero-image {
    display: block;
    width: 100%;
    height: auto;
}
.page-title {
    margin: 0;
    color: #0f172a;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.page-entry-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 26px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
    overflow: hidden;
}

.page-entry-header {
    padding: 34px 34px 0;
}

.page-entry-title {
    margin: 0;
    color: #0f172a;
    font-size: 2rem;
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.page-entry-content {
    padding: 28px 34px 36px;
}

.page-content-section {
    padding: 24px 0 70px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.page-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

.page-main {
    min-width: 0;
}

.page-sidebar {
    min-width: 0;
}

.page-sidebar-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    padding: 24px 22px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}
.page-sidebar {
    align-self: start;
}

.page-sidebar-title {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: 1.1rem;
    line-height: 1.35;
    font-weight: 700;
}

.page-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-sidebar-list li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.page-sidebar-list li:last-child {
    border-bottom: 0;
}

.page-sidebar-list li a {
    display: block;
    padding: 14px 0;
    color: #123e7c;
    text-decoration: none;
    line-height: 1.5;
}

.page-sidebar-list li a:hover {
    color: #0d458a;
}

.page-sidebar-list .current_page_item > a,
.page-sidebar-list .current_page_ancestor > a {
    color: #0d458a;
    font-weight: 700;
}

/* =========================================================
   POST LIST / INDEX
========================================================= */
.post-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.post-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.post-card-thumbnail {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f3f4f6;
}

.post-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-content {
    padding: 22px 22px 24px;
}

.post-card-title {
    margin: 0 0 10px;
    font-size: 1.3rem;
    line-height: 1.35;
    color: #0f172a;
}

.post-card-title a {
    color: inherit;
}

.post-card-title a:hover {
    color: #0f4c81;
}

.post-card-meta {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #6b7280;
}

.post-card-excerpt {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 18px;
}

.post-card-excerpt > *:last-child {
    margin-bottom: 0;
}

.post-card-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    background: #0f4c81;
    color: #ffffff;
    font-weight: 600;
}

.post-card-link:hover {
    background: #123f68;
}

.pagination-wrap {
    margin-top: 34px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-links .page-numbers {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    color: #1f2937;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
    background: #0f4c81;
    color: #ffffff;
    border-color: #0f4c81;
}

.no-content-box {
    padding: 26px 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    background: #ffffff;
    color: #4b5563;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
    margin-top: auto;
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.footer-top {
    padding: 42px 0 20px;
}

.footer-top-container {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1fr;
    gap: 42px;
    align-items: start;
}

.footer-brand {
    max-width: 460px;
}
.footer-brand-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #123e7c;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}

.footer-brand-title {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.footer-brand-text {
    margin: 0;
    color: #667085;
    font-size: 1rem;
    line-height: 1.9;
}

.footer-column {
    min-width: 0;
}

.footer-heading {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

.footer-links li,
.footer-contact-list li {
    margin-bottom: 12px;
    color: #667085;
    font-size: 0.96rem;
    line-height: 1.75;
}

.footer-links li:last-child,
.footer-contact-list li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: #344054;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact-list a:hover {
    color: #123e7c;
}

.footer-links a:hover {
    color: #0f4c81;
}

.footer-bottom {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.footer-bottom-container {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.footer-bottom-minimal {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.footer-credit-link {
    color: #123e7c;
    font-weight: 600;
}

.footer-credit-link:hover {
    color: #0d458a;
}

.footer-bottom-left,
.footer-bottom-right {
    display: flex;
    align-items: center;
}

.footer-text {
    margin: 0;
    color: #667085;
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-link {
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
}

.footer-link:hover {
    color: #0f4c81;
}

/* =========================================================
   WORDPRESS ORTAK SINIFLAR
========================================================= */
.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

.wp-caption-text {
    font-size: 0.92rem;
    color: #6b7280;
    margin-top: 8px;
}

.gallery-caption,
.bypostauthor {
    display: block;
}

/* =========================================================
   FORM ALANLARI
========================================================= */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="password"],
input[type="search"],
textarea,
select {
    width: 100%;
    min-height: 52px;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    background: #ffffff;
    color: #111827;
    outline: none;
    transition: all 0.2s ease;
}

textarea {
    min-height: 140px;
    resize: vertical;
    padding-top: 14px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #0f4c81;
    box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.08);
}

input[type="submit"],
button[type="submit"],
.wp-element-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 14px;
    background: #0f4c81;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.25s ease;
}

input[type="submit"]:hover,
button[type="submit"]:hover,
.wp-element-button:hover {
    background: #123f68;
}

/* =========================================================
   RESPONSIVE - TABLET
========================================================= */
@media (min-width: 768px) {
    .container {
        padding-left: 28px;
        padding-right: 28px;
    }

.hero-section {
    min-height: 0;
}

.hero-container {
    padding-top: 56px;
    padding-bottom: 56px;
}

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

    .hero-text {
        font-size: 1.08rem;
    }

    .front-page-content {
        padding-top: 64px;
        padding-bottom: 80px;
    }

    .page-hero {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .page-title {
        font-size: 2.3rem;
    }

    .page-content-section {
        padding-top: 50px;
        padding-bottom: 80px;
    }

    .post-list {
        gap: 28px;
    }

.footer-top-container {
    grid-template-columns: 1.25fr 0.9fr 1fr;
    gap: 34px;
    align-items: start;
}

.footer-bottom-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.front-entry-content {
    padding: 38px 38px 40px;
}

.hero-location-search-card {
    padding: 28px;
}

.hero-location-search.hero-location-search-overlap {
    margin-top: -38px;
}

.hero-location-search.hero-location-search-below {
    margin-top: 22px;
}

.hero-location-search-box {
    grid-template-columns: 1fr 180px;
    align-items: center;
}

.hero-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-content {
    padding-top: 56px;
    padding-bottom: 56px;
}

.page-layout {
    grid-template-columns: minmax(0, 1.7fr) 320px;
    gap: 32px;
}

.page-sidebar {
    position: sticky;
    top: 96px;
}
.page-entry-title {
    font-size: 2.25rem;
}

.page-layout {
    grid-template-columns: minmax(0, 1.7fr) 320px;
    gap: 32px;
}

.page-sidebar {
    position: sticky;
    top: 96px;
}

}

/* =========================================================
   RESPONSIVE - DESKTOP
========================================================= */
@media (min-width: 992px) {
.header-inner,
.header-container {
    min-height: 68px;
}

.mobile-header-brand-text {
    display: none;
}

        .site-topbar {
        display: block;
    }

.site-logo .custom-logo {
    max-height: 42px;
}

    .desktop-navigation {
        display: flex;
    }

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

    .mobile-menu-overlay,
    .mobile-menu-panel {
        display: none;
    }

.hero-section {
    min-height: 0;
}

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(15, 23, 42, 0.70) 0%, rgba(15, 23, 42, 0.42) 42%, rgba(15, 23, 42, 0.10) 100%);
    }

    .hero-container {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .hero-content {
        max-width: 620px;
    }

.hero-title {
    font-size: 3.2rem;
    line-height: 1.08;
    margin-bottom: 18px;
}

.hero-text {
    font-size: 1rem;
    max-width: 560px;
}

    .hero-actions {
        margin-top: 34px;
    }

    .hero-button {
        min-height: 58px;
        padding: 0 28px;
        border-radius: 16px;
    }

    .page-hero {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .page-title {
        font-size: 2.6rem;
    }

    .post-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

.front-page-layout.has-sidebar {
        display: grid;
        grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.82fr);
        gap: 30px;
        align-items: start;
    }

    .front-page-layout.no-sidebar {
        display: block;
    }

    .front-page-sidebar {
        position: relative;
    }

    .front-page-sidebar-inner {
        position: sticky;
        top: 120px;
    }

.hero-location-search.hero-location-search-overlap {
    margin-top: -48px;
}

.hero-location-search.hero-location-search-below {
    margin-top: 26px;
}

.hero-location-search-card {
    padding: 30px 32px;
}

.hero-feature-strip {
    margin-top: 26px;
}
    .hero-feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
.hero-section {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
}

.hero-section + .hero-location-search .container,
.hero-feature-strip .container,
.front-page-content .container {
    max-width: 1280px;
}
.hero-content {
    padding-top: 64px;
    padding-bottom: 64px;
}

}
    

/* =========================================================
   RESPONSIVE - LARGE DESKTOP
========================================================= */
@media (min-width: 1200px) {
.hero-section {
    min-height: var(--hero-height-desktop, 540px);
}

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

    .hero-text {
        font-size: 1.16rem;
    }
}

/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */
@media (max-width: 767px) {
.container {
    padding-left: 14px;
    padding-right: 14px;
}


.footer-bottom-container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}

.footer-top {
    padding: 34px 0 18px;
}

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

.footer-brand-badge {
    margin-bottom: 12px;
}

.footer-brand-title {
    font-size: 1.32rem;
}

.footer-brand-text {
    font-size: 0.98rem;
    line-height: 1.85;
}

.footer-bottom-container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}

.footer-bottom-right {
    justify-content: flex-start;
}
.footer-contact-list li span {
    display: block;
    color: #98a2b3;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-contact-list a {
    color: #344054;
    text-decoration: none;
}

.footer-contact-note {
    padding-top: 6px;
}

.page-hero {
    padding: 18px 0 18px;
}

.page-hero-visual {
    border-radius: 18px;
}

.page-entry-header {
    padding: 24px 20px 0;
}

.page-entry-title {
    font-size: 1.7rem;
}

.page-entry-content {
    padding: 22px 20px 26px;
}

.page-sidebar-card {
    padding: 20px 18px;
    border-radius: 18px;
}

.page-sidebar-title {
    font-size: 1rem;
    margin-bottom: 12px;
}

.page-sidebar-list li a {
    padding: 12px 0;
    font-size: 0.96rem;
}
.header-inner,
.header-container {
    min-height: 64px;
}

.site-branding {
    gap: 8px;
    padding-left: 0;
    flex: 1 1 auto;
}

.mobile-header-brand-text {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    max-width: calc(100% - 52px);
}

.mobile-header-brand-main {
    font-size: 0.98rem;
    font-weight: 800;
    color: #123e7c;
    letter-spacing: -0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-container {
    gap: 12px;
}

.site-logo .custom-logo {
    max-height: 36px;
}

        .site-topbar {
        display: none;
    }

.hero-section {
    min-height: 0;
}

.hero-section .hero-container {
    align-items: flex-end;
}

.hero-container {
    padding-top: 0;
    padding-bottom: 0;
}

.hero-content {
    padding-top: 48px;
    padding-bottom: 24px;
}

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(15, 23, 42, 0.18) 0%, rgba(15, 23, 42, 0.42) 45%, rgba(15, 23, 42, 0.70) 100%);
    }

.hero-container {
    padding-top: 28px;
    padding-bottom: 44px;
}

    .hero-content {
        max-width: 100%;
    }

.hero-title {
    font-size: 1.55rem;
    line-height: 1.12;
    margin-bottom: 10px;
}

.hero-text {
    font-size: 0.9rem;
    line-height: 1.55;
}

.hero-actions {
    display: none;
}

    .front-page-content {
        padding-top: 40px;
        padding-bottom: 54px;
    }

    .page-hero {
        padding-top: 0px;
        padding-bottom: 0px;
    }

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

    .page-content-section {
        padding-top: 30px;
        padding-bottom: 54px;
    }

    .entry-content h1 {
        font-size: 1.7rem;
    }

    .entry-content h2 {
        font-size: 1.45rem;
    }

    .entry-content h3 {
        font-size: 1.25rem;
    }

    .post-card-content {
        padding: 18px 18px 20px;
    }

    .post-card-title {
        font-size: 1.18rem;
    }

    .footer-container {
        align-items: flex-start;
    }
.front-page-layout {
        display: block;
    }

    .front-page-main {
        margin-bottom: 22px;
    }

    .front-entry-content {
        padding: 22px 20px 24px;
    }

    .front-widget {
        border-radius: 18px;
        padding: 20px 18px;
    }
.hero-location-search.hero-location-search-overlap,
.hero-location-search.hero-location-search-below {
    margin-top: 0;
}

.hero-location-search-card {
    padding: 18px;
    border-radius: 20px;
}

.hero-location-search-title {
    font-size: 1.1rem;
}

.hero-location-search-text {
    font-size: 0.92rem;
    line-height: 1.65;
}

.district-search-input,
.district-search-button {
    min-height: 50px;
    border-radius: 14px;
}

.hero-location-search-tags {
    gap: 8px;
}

.hero-location-tag {
    min-height: 38px;
    font-size: 0.92rem;
    padding: 0 12px;
}
.hero-feature-strip {
    margin-top: 18px;
}

    .hero-feature-card {
        border-radius: 18px;
        padding: 18px 18px;
    }

    .hero-feature-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 1rem;
    }

.footer-top {
    display: none;
}

.footer-brand-title {
    font-size: 1.16rem;
}

.footer-bottom-container {
    align-items: flex-start;
}
}
    