/*
Theme Name: Mehmet Şenoğlu
Theme URI: https://www.mehmetsenoglu.com
Author: Prof. Dr. Mehmet Şenoğlu
Author URI: https://www.mehmetsenoglu.com
Description: Prof. Dr. Mehmet Şenoğlu - Beyin ve Sinir Cerrahisi Uzmanı kişisel web sitesi teması. Polylang çoklu dil desteğine uyumludur.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mehmetsenoglu
Domain Path: /languages
Tags: one-column, two-columns, custom-header, custom-menu, featured-images, translation-ready, blog, medical
*/

/* ===== CSS VARIABLES ===== */
:root {
    --primary-dark: #1A365D;
    --primary-light: #0077B6;
    --accent: #00B4D8;
    --bg-light: #F8F9FA;
    --text-dark: #333;
    --text-light: #666;
    --footer-bg: #0f172a;
    --footer-text: #94a3b8;
}

/* ===== RESET & GENEL ===== */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }

/* ===== WhatsApp Float ===== */
.wa-float-btn { position: fixed; bottom: 30px; right: 30px; background-color: #25d366; color: #fff !important; width: 60px; height: 60px; border-radius: 50%; text-align: center; font-size: 30px; box-shadow: 0 4px 15px rgba(0,0,0,.2); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: all .3s ease; }
.wa-float-btn:hover { transform: scale(1.1); background-color: #128c7e; }
.wa-post-banner { display: flex; justify-content: space-between; align-items: center; background: linear-gradient(135deg, #25D366, #128C7E); color: #fff !important; padding: 15px 25px; border-radius: 20px; text-decoration: none !important; margin: 30px 0; box-shadow: 0 10px 20px rgba(37,211,102,.2); transition: .3s; }
.wa-post-banner:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(37,211,102,.3); }
.wa-banner-left { display: flex; align-items: center; gap: 15px; }
.wa-banner-icon { font-size: 32px; background: rgba(255,255,255,.2); width: 55px; height: 55px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.wa-banner-text { display: flex; flex-direction: column; }
.wa-banner-text strong { font-size: 20px; line-height: 1.2; }
.wa-banner-text span { font-size: 14px; opacity: .9; }
.wa-banner-right { font-size: 18px; font-weight: 700; background: rgba(255,255,255,.15); padding: 8px 15px; border-radius: 12px; }

/* ===== TOP BAR ===== */
.top-bar { background: #1A365D; padding: 7px 50px; display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.top-bar nav ul { list-style: none; display: flex; gap: 20px; align-items: center; margin: 0; padding: 0; }
.top-bar nav ul li a { font-weight: 600; font-size: 13px; color: rgba(255,255,255,.82); transition: color .3s; text-decoration: none; }
.top-bar nav ul li a:hover { color: #00B4D8; }
.top-bar nav ul li.current-menu-item a,
.top-bar nav ul li.current_page_item a { color: #00B4D8; }

/* ===== Header aksiyon butonları ===== */
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-randevu-nav { background: #0077B6; color: #fff !important; padding: 10px 22px; border-radius: 6px; font-weight: 600; font-size: 15px; transition: background .3s; text-decoration: none; display: inline-flex; align-items: center; }
.btn-randevu-nav:hover { background: #1A365D !important; color: #fff !important; }
.btn-phone-nav { display: flex; align-items: center; gap: 8px; background: transparent; color: var(--primary-dark) !important; padding: 10px 18px; border-radius: 6px; font-size: 15px; font-weight: 700; border: 2px solid var(--primary-dark); transition: .3s; text-decoration: none; }
.btn-phone-nav:hover { background: var(--primary-dark); color: #fff !important; }
.btn-ikinci-gorus { background: transparent; color: #1A365D !important; padding: 10px 18px; border-radius: 6px; font-weight: 600; font-size: 14px; border: 2px solid #00B4D8; transition: .3s; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.btn-ikinci-gorus:hover { background: #00B4D8; color: #fff !important; }

/* ===== ARAMA BUTONU ===== */
.btn-search-toggle { background: transparent; border: 2px solid #1A365D; color: #1A365D; width: 42px; height: 42px; border-radius: 6px; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: .3s; }
.btn-search-toggle:hover { background: #1A365D; color: #fff; }

/* ===== ARAMA OVERLAY ===== */
.search-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 99999; align-items: flex-start; justify-content: center; padding-top: 120px; backdrop-filter: blur(5px); }
.search-overlay.active { display: flex; }
.search-box { background: #fff; border-radius: 16px; padding: 30px; width: 90%; max-width: 600px; box-shadow: 0 20px 60px rgba(0,0,0,.3); animation: fadeUp .3s ease; }
.search-box h3 { font-size: 20px; color: #1A365D; margin-bottom: 15px; font-weight: 700; }
.search-box form { display: flex; gap: 10px; }
.search-box input[type="text"],
.search-box input[type="search"] { flex: 1; padding: 14px 18px; border: 2px solid #e2e8f0; border-radius: 10px; font-size: 16px; font-family: 'Poppins', sans-serif; outline: none; transition: border-color .3s; }
.search-box input[type="text"]:focus,
.search-box input[type="search"]:focus { border-color: #0077B6; }
.search-box button[type="submit"] { background: #0077B6; color: #fff; border: none; padding: 14px 24px; border-radius: 10px; font-size: 16px; font-weight: 600; cursor: pointer; transition: .3s; font-family: 'Poppins', sans-serif; }
.search-box button[type="submit"]:hover { background: #1A365D; }
.search-close { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: #fff; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 22px; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); transition: .2s; }
.search-close:hover { background: rgba(255,255,255,.3); }

/* ===== COOKIE BANNER GİZLE ===== */
.cookie-choices-info, .cookieChoiceInfo, #cookieChoiceInfo, .cc-window, .cc-banner, .cookie-consent, .gdpr-banner, [id*="cookie"], [class*="cookie-consent"], [class*="cookie-notice"] { display: none !important; }

/* ===== Header ===== */
header.site-header { background: #fff; padding: 20px 50px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,.05); position: sticky; top: 0; z-index: 1000; }
.header-logo-section { display: flex; flex-direction: column; justify-content: center; }
.header-logo-section h1 { font-size: 26px; font-weight: 800; color: var(--primary-dark); margin: 0; line-height: 1.1; letter-spacing: -.5px; }
.header-logo-section p { color: var(--accent); font-weight: 400; font-size: 15px; margin-top: 4px; letter-spacing: -.2px; }
.header-logo-section a { color: inherit; text-decoration: none; }

/* ===== Hero ===== */
.hero { background: linear-gradient(rgba(26,54,93,.8), rgba(0,119,182,.8)), url('') center/cover; color: #fff; padding: 100px 50px; text-align: center; }
.hero h1 { font-size: 48px; margin-bottom: 20px; font-weight: 700; letter-spacing: -1px; }
.hero p { font-size: 18px; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }
.btn-main { background: var(--accent); color: #fff; padding: 15px 30px; border-radius: 5px; font-size: 18px; font-weight: 600; display: inline-block; transition: background .3s; }
.btn-main:hover { background: #fff; color: var(--primary-dark); }

/* ===== Hakkımda ===== */
.about-section-wrap { padding: 80px 20px 40px; background: #fff; }
.section-title { text-align: center; font-size: 32px; color: var(--primary-dark); margin-bottom: 40px; font-weight: 700; }
.section-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--accent); margin: 10px auto 0; }
.about-grid { display: grid; grid-template-columns: 300px 1fr; gap: 50px; align-items: stretch; max-width: 1200px; margin: 0 auto; }

/* Kartvizit Tetikleyici */
.kartvizit-col { display: flex; align-items: stretch; justify-content: center; min-width: 0; }
.kartvizit-trigger { cursor: pointer; background: linear-gradient(180deg, #1a4a6e 0%, #1e6fa0 50%, #2389c4 100%); border: 1px solid rgba(255,255,255,.15); border-radius: 18px; width: 100%; padding: 34px 24px; text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,.25); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; align-items: center; gap: 12px; justify-content: flex-start; }
.kartvizit-trigger:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,74,110,.5); }
.kv-trig-photo { width: 110px; height: 110px; border-radius: 50%; border: 3px solid rgba(255,255,255,.5); object-fit: cover; object-position: center 10%; box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.kv-trig-name { color: #ffffff; font-family: 'Jost', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: .03em; line-height: 1.3; }
.kv-trig-spec { color: rgba(255,255,255,.8); font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.kv-trig-btn { margin-top: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.35); border-radius: 8px; color: #ffffff; font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 10px 14px; width: 100%; cursor: pointer; transition: .2s; }
.kv-trig-btn:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.6); }
.about-text-content { color: var(--text-light); font-size: 16px; text-align: justify; line-height: 1.8; }

/* ===== Kartvizit Modal ===== */
.kv-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.78); z-index: 99998; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(5px); }
.kv-overlay.active { display: flex; }
.kv-modal-wrap { position: relative; max-width: 500px; width: 100%; max-height: 92vh; overflow-y: auto; border-radius: 24px; scrollbar-width: thin; scrollbar-color: rgba(201,160,44,.4) transparent; }
.kv-close { position: fixed; top: 14px; right: 14px; z-index: 99999; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: #fff; width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 20px; display: flex; align-items: center; justify-content: center; transition: .2s; backdrop-filter: blur(4px); line-height: 1; }
.kv-close:hover { background: rgba(255,255,255,.3); }

/* Kartvizit Card İçi */
.kv-modal-wrap .card { position: relative; z-index: 1; width: 100%; max-width: 480px; background: linear-gradient(160deg, #161952 0%, #0e1240 60%, #0a0c2e 100%); border-radius: 24px; border: 1px solid rgba(201,160,44,.35); box-shadow: 0 0 0 1px rgba(201,160,44,.12), 0 32px 80px rgba(0,0,0,.7), inset 0 1px 0 rgba(201,160,44,.25); padding: 40px 32px 32px; animation: fadeUp .7s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.kv-modal-wrap .card::before, .kv-modal-wrap .card::after { content: ''; position: absolute; width: 28px; height: 28px; border-color: #c9a02c; border-style: solid; opacity: .55; }
.kv-modal-wrap .card::before { top: 14px; left: 14px; border-width: 1.5px 0 0 1.5px; border-radius: 4px 0 0 0; }
.kv-modal-wrap .card::after { bottom: 14px; right: 14px; border-width: 0 1.5px 1.5px 0; border-radius: 0 0 4px 0; }
.kv-modal-wrap .header { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0; animation: fadeUp .7s .1s ease both; }
.kv-modal-wrap .logo-wrap { width: 110px; height: 110px; border-radius: 50%; background: rgba(201,160,44,.08); border: 1px solid rgba(201,160,44,.3); display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 20px; box-shadow: 0 0 32px rgba(201,160,44,.18); transition: box-shadow .3s; }
.kv-modal-wrap .logo-wrap:hover { box-shadow: 0 0 48px rgba(201,160,44,.35); }
.kv-modal-wrap .logo-wrap img { width: 92px; height: 92px; object-fit: cover; object-position: center 10%; border-radius: 50%; }
.kv-modal-wrap .specialty { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; color: #e4c164; letter-spacing: .04em; margin-bottom: 6px; opacity: .85; }
.kv-modal-wrap .title-row { font-family: 'Jost', sans-serif; font-size: 11.5px; font-weight: 500; letter-spacing: .22em; color: #e4c164; text-transform: uppercase; opacity: .75; margin-bottom: 5px; }
.kv-modal-wrap .name { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 700; color: #ffffff; letter-spacing: .01em; line-height: 1.1; margin-bottom: 6px; }
.kv-modal-wrap .sub { font-family: 'Cormorant Garamond', serif; font-size: 14.5px; font-style: italic; color: rgba(228,193,100,.95); letter-spacing: .03em; }
.kv-modal-wrap .divider { width: 100%; display: flex; align-items: center; gap: 12px; margin: 22px 0 18px; animation: fadeUp .7s .2s ease both; }
.kv-modal-wrap .divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,160,44,.45), transparent); }
.kv-modal-wrap .divider-diamond { width: 6px; height: 6px; background: #c9a02c; transform: rotate(45deg); opacity: .7; flex-shrink: 0; }
.kv-modal-wrap .contacts { display: flex; flex-direction: column; gap: 8px; margin-bottom: 6px; animation: fadeUp .7s .25s ease both; }
.kv-modal-wrap .contact-item { display: flex; align-items: center; gap: 13px; padding: 11px 15px; border-radius: 10px; border: 1px solid rgba(201,160,44,.2); background: rgba(255,255,255,.06); text-decoration: none; color: #ffffff; transition: background .2s, border-color .2s, transform .18s; cursor: pointer; }
.kv-modal-wrap .contact-item:hover { background: rgba(201,160,44,.1); border-color: rgba(201,160,44,.35); transform: translateX(4px); }
.kv-modal-wrap .contact-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 17px; }
.kv-modal-wrap .contact-text { flex: 1; min-width: 0; }
.kv-modal-wrap .contact-label { font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #e4c164; opacity: .7; margin-bottom: 1px; }
.kv-modal-wrap .contact-value { font-size: 13.5px; font-weight: 400; color: #ffffff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kv-modal-wrap .contact-arrow { color: #c9a02c; opacity: .4; font-size: 13px; transition: opacity .2s, transform .2s; flex-shrink: 0; }
.kv-modal-wrap .contact-item:hover .contact-arrow { opacity: .9; transform: translateX(2px); }
.kv-modal-wrap .ic-phone { background: rgba(34,197,94,.15); color: #4ade80; }
.kv-modal-wrap .ic-web { background: rgba(56,189,248,.15); color: #7dd3fc; }
.kv-modal-wrap .ic-address { background: rgba(251,146,60,.15); color: #fdba74; }
.kv-modal-wrap .ic-spotify { background: rgba(29,185,84,.15); color: #1db954; }
.kv-modal-wrap .ic-dt { background: rgba(239,68,68,.15); color: #f87171; }
.kv-modal-wrap .ic-ds { background: rgba(168,85,247,.15); color: #c084fc; }
.kv-modal-wrap .ic-ig { background: linear-gradient(135deg, rgba(253,186,116,.2), rgba(244,63,94,.2)); color: #f9a8d4; }
.kv-modal-wrap .ic-scholar { background: rgba(59,130,246,.15); color: #93c5fd; }
.kv-modal-wrap .ic-li { background: rgba(10,102,194,.2); color: #60a5fa; }
.kv-modal-wrap .section-label { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #c9a02c; opacity: .6; margin: 18px 0 8px 4px; animation: fadeUp .7s .3s ease both; }
.kv-modal-wrap .footer { margin-top: 24px; text-align: center; animation: fadeUp .7s .45s ease both; }
.kv-modal-wrap .footer p { font-size: 11px; color: rgba(255,255,255,.65); letter-spacing: .06em; }
.kv-modal-wrap .footer strong { color: #e4c164; font-weight: 500; }
.kv-modal-wrap .save-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 16px; padding: 11px 20px; background: linear-gradient(135deg, rgba(201,160,44,.18), rgba(201,160,44,.08)); border: 1px solid rgba(201,160,44,.4); border-radius: 10px; color: #e4c164; font-family: 'Jost', sans-serif; font-size: 12.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background .2s, border-color .2s; text-decoration: none; }
.kv-modal-wrap .save-btn:hover { background: linear-gradient(135deg, rgba(201,160,44,.28), rgba(201,160,44,.14)); border-color: rgba(201,160,44,.7); }

/* ===== Yatay Link Bar ===== */
.horizontal-links-bar { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; padding: 40px 20px; background: #fff; width: 100%; }
.box-link { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #e5e7eb; padding: 12px 24px; border-radius: 50px; text-decoration: none; color: var(--primary-dark); font-size: 14px; font-weight: 600; box-shadow: 0 4px 6px rgba(0,0,0,.02); transition: .3s; }
.box-link:hover { border-color: var(--primary-light); transform: translateY(-3px); box-shadow: 0 8px 15px rgba(0,0,0,.05); }
.box-link i.fa-calendar-check { color: #00d1b2; font-size: 18px; }
.box-link i.fa-user-md { color: #138dd9; font-size: 18px; }
.box-link i.fa-google { color: #ea4335; font-size: 18px; }
.review-stars { color: #f1c40f; display: flex; gap: 3px; font-size: 14px; margin-left: 5px; }

/* ===== Uzmanlık Alanları ===== */
.services { padding: 40px 20px 80px; background: var(--bg-light); }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.service-card { background: #fff; padding: 35px 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,.05); transition: transform .3s; border-top: 4px solid var(--primary-light); display: block; text-decoration: none; }
.service-card:hover { transform: translateY(-10px); }
.service-card h3 { color: var(--primary-dark); margin-bottom: 15px; font-size: 20px; font-weight: 700; line-height: 1.4; }
.service-card p { color: var(--text-light); font-size: 15px; line-height: 1.6; }

/* ===== İstatistik Bar ===== */
.stats-bar { background: linear-gradient(rgba(26,54,93,.95), rgba(26,54,93,.95)), url('') center/cover fixed; padding: 60px 20px; color: #fff; }
.stats-grid { display: flex; justify-content: space-between; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; text-align: center; }
.stat-item { flex: 1; min-width: 200px; padding: 15px; border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 36px; margin-bottom: 15px; color: var(--accent); }
.stat-number { font-size: 42px; font-weight: 800; margin-bottom: 5px; line-height: 1; }
.stat-text { font-size: 15px; font-weight: 500; opacity: .9; }

/* ===== Çalışma Saatleri & Form ===== */
.info-grids-wrap { padding: 60px 20px; background: var(--bg-light); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; }
.card-box { background: #fff; border-radius: 15px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,.05); display: flex; flex-direction: column; justify-content: space-between; }
.card-box h2, .card-box .title { color: var(--primary-dark); border-bottom: 2px solid var(--accent); padding-bottom: 10px; margin-bottom: 25px; font-size: 24px; margin-top: 0; font-weight: 700; display: flex; align-items: center; }
.hours-title::before { content: '\f017'; font-family: 'Font Awesome 6 Free'; font-weight: 400; margin-right: 10px; color: var(--primary-dark); }
.appointment-title::before { content: '\f073'; font-family: 'Font Awesome 6 Free'; font-weight: 400; margin-right: 10px; color: var(--primary-dark); }
.hours-table { width: 100%; border-collapse: separate; border-spacing: 0 6px; margin-bottom: 15px; }
.hours-table td { padding: 12px 16px; font-size: 15px; color: #4b5563; background: var(--bg-light); transition: background .3s; }
.hours-table tr:hover td { background: #e2e8f0; }
.hours-table tr td:first-child { font-weight: 600; color: var(--primary-dark); text-align: left; border-radius: 8px 0 0 8px; border-left: 3px solid var(--primary-light); }
.hours-table tr td:last-child { text-align: right; font-weight: 600; color: var(--accent); border-radius: 0 8px 8px 0; }
.hours-note { font-size: 13.5px; color: #666; text-align: left; margin-bottom: 25px; line-height: 1.5; }
.hours-note i { color: var(--primary-light); margin-right: 5px; }
.btn-phone-thick { background: var(--primary-light); color: #fff; padding: 20px 15px; width: 100%; font-size: 18px; border-radius: 8px; font-weight: 700; transition: .3s; display: flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; box-shadow: 0 4px 15px rgba(0,119,182,.2); }
.btn-phone-thick:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,119,182,.3); color: #fff; }

/* Docplanner randevu kutusu */
#contact-form-section { overflow: hidden; padding: 0 !important; border-radius: 15px; }
#contact-form-section h2 { padding: 28px 28px 12px !important; margin: 0 !important; border-bottom: 2px solid var(--accent); }
#contact-form-section .zl-url { display: block; width: 100%; }
#contact-form-section iframe { max-width: 100% !important; width: 100% !important; border: 0 !important; display: block !important; margin: 0 !important; padding: 0 !important; min-height: 500px; }

/* ===== Blog Galerisi ===== */
.home-blog-grid-sec { padding: 80px 20px; background: #fff; max-width: 1200px; margin: 0 auto; }
.home-post-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-bottom: 40px; }
.home-post-card { background: var(--bg-light); border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,.04); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.home-post-card:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(0,0,0,.08); }
.home-post-img { display: block; width: 100%; height: 180px; background-size: cover; background-position: center; background-color: #e2e8f0; position: relative; }
.home-post-img img { width: 100%; height: 100%; object-fit: cover; }
.home-post-content { padding: 25px 20px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.home-post-content h3 { font-size: 16px; font-weight: 700; color: var(--primary-dark); margin-bottom: 15px; line-height: 1.5; margin-top: 0; }
.home-post-content h3 a { color: inherit; text-decoration: none; transition: .3s; }
.home-post-content h3 a:hover { color: var(--primary-light); }
.read-more-link { font-size: 14px; font-weight: 700; color: var(--primary-light); text-decoration: none; margin-top: auto; display: inline-block; }
.read-more-link:hover { color: var(--primary-dark); }
#load-more-posts { background: var(--primary-dark); color: #fff; border: none; padding: 12px 30px; font-size: 16px; font-weight: 600; border-radius: 30px; cursor: pointer; transition: .3s; display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
#load-more-posts:hover { background: var(--primary-light); transform: translateY(-2px); }

/* ===== Harita & Sosyal Medya ===== */
.map-social-wrap { padding: 60px 20px; background: var(--bg-light); }
.map-container { height: 100%; }
.map-container iframe { width: 100%; height: 100%; min-height: 380px; border: none; border-radius: 15px; box-shadow: 0 4px 15px rgba(0,0,0,.05); }
.social-panel { background: #fff; border-radius: 20px; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,.08); margin-bottom: 25px; border: 1px solid #f3f4f6; }
.social-header { font-size: 20px; font-weight: 800; color: #111827; margin-bottom: 25px; display: flex; align-items: center; letter-spacing: -.5px; }
.social-header span { width: 4px; height: 24px; background: #a855f7; margin-right: 12px; border-radius: 4px; }
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.soc-btn { padding: 12px 10px; border-radius: 15px; text-align: center; font-weight: 700; font-size: 14px; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: .3s; text-decoration: none; }
.soc-btn i { font-size: 24px; }
.soc-btn.ig { background: #fff0f5; color: #c13584; }
.soc-btn.yt { background: #ffebee; color: red; }
.soc-btn.fb { background: #e3f2fd; color: #1877f2; }
.soc-btn.li { background: #e1f5fe; color: #0077b5; }
.soc-btn.sp { background: #e8fce8; color: #1DB954; }
.soc-btn.dt { background: #e6f9f6; color: #00d1b2; }
.soc-btn.gs { background: #e8f0fe; color: #4285F4; }
.soc-btn.ds { background: #e1f0fa; color: #138dd9; }
.soc-btn:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,.08); }

/* WhatsApp Panel */
.wa-panel { display: flex; justify-content: space-between; align-items: center; background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; padding: 20px 25px; border-radius: 20px; text-decoration: none; box-shadow: 0 10px 30px rgba(37,211,102,.25); transition: transform .3s, box-shadow .3s; margin-top: 25px; }
.wa-panel:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(37,211,102,.4); color: #fff; }
.wa-left { display: flex; align-items: center; gap: 15px; }
.wa-icon-wrapper { font-size: 30px; background: rgba(255,255,255,.2); width: 55px; height: 55px; display: flex; justify-content: center; align-items: center; border-radius: 50%; }
.wa-text { display: flex; flex-direction: column; }
.wa-text strong { font-size: 18px; font-weight: 700; margin-bottom: 2px; }
.wa-text span { font-size: 13px; opacity: .9; }
.wa-right { font-size: 17px; font-weight: 700; background: rgba(255,255,255,.15); padding: 8px 15px; border-radius: 12px; letter-spacing: .5px; white-space: nowrap; }

/* ===== Blog/Makale Görünümü ===== */
.blog-post-container { max-width: 1260px; margin: 40px auto; padding: 0 20px; background: transparent; border-radius: 0; box-shadow: none; }
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 30px; align-items: start; max-width: 1260px; margin: 0 auto; overflow: visible; }
.blog-main-col { background: #fff; border-radius: 12px; box-shadow: 0 5px 25px rgba(0,0,0,.04); padding: 40px 40px 40px; }
.blog-sidebar { position: sticky; top: 90px; align-self: start; }
.blog-sidebar-inner { background: #fff; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,.06); overflow: hidden; display: flex; flex-direction: column; width: 100%; }
.blog-sidebar-inner h3 { padding: 22px 24px 14px; margin: 0; font-size: 20px; font-weight: 700; color: var(--primary-dark); border-bottom: 2px solid var(--accent); display: flex; align-items: center; gap: 10px; }
.blog-sidebar-inner h3 i { color: var(--primary-light); }
.blog-sidebar-widget { padding: 0; }
.blog-sidebar-widget .zl-url { display: block; width: 100%; }
.blog-sidebar-widget iframe { width: 100% !important; max-width: 100% !important; border: 0 !important; display: block !important; margin: 0 !important; padding: 0 !important; }
.post-title { font-size: 34px; color: var(--primary-dark); font-weight: 800; margin-bottom: 30px; line-height: 1.3; text-align: center; }
.post-title a { color: var(--primary-dark); text-decoration: none; transition: .3s; }
.post-title a:hover { color: var(--primary-light); }

/* Post Body */
.post-body { font-size: 17px; color: #444; line-height: 1.8; margin-bottom: 40px; }
.post-body p { margin-bottom: 18px; }
.post-body img { display: block !important; margin: 0 auto !important; width: 100% !important; max-width: 100% !important; height: auto !important; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,.08); }
.post-body iframe, .post-body object, .post-body embed { display: block !important; margin: 0 auto !important; width: 100% !important; max-width: 100% !important; aspect-ratio: 16/9 !important; height: auto !important; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,.08); border: none; }
.post-body ul { list-style-type: disc !important; padding-left: 40px !important; margin-top: 15px !important; margin-bottom: 25px !important; }
.post-body ol { list-style-type: decimal !important; padding-left: 40px !important; margin-top: 15px !important; margin-bottom: 25px !important; }
.post-body li { margin-bottom: 10px !important; line-height: 1.8; display: list-item !important; }
.post-body h2, .post-body h3, .post-body h4 { margin-top: 30px; margin-bottom: 15px; }

/* ===== Önceki / Sonraki Yazı ===== */
.post-nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; padding-top: 30px; border-top: 2px solid #e2e8f0; }
.post-nav-link { display: flex; flex-direction: column; padding: 20px; background: var(--bg-light); border-radius: 12px; text-decoration: none; transition: all .3s; border: 1px solid #e2e8f0; }
.post-nav-link:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.08); border-color: var(--primary-light); }
.post-nav-link.prev { align-items: flex-start; }
.post-nav-link.next { align-items: flex-end; text-align: right; }
.post-nav-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.post-nav-title { font-size: 15px; font-weight: 600; color: var(--primary-dark); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-nav-link:hover .post-nav-title { color: var(--primary-light); }

/* ===== Yorum Alanı ===== */
#comments, .comments-area { margin-top: 50px; padding: 40px; background: #f8f9fa; border-radius: 15px; border: 1px solid #e5e7eb; }
.comments-title { font-size: 24px; color: var(--primary-dark); font-weight: 700; margin-bottom: 30px; border-bottom: 3px solid var(--accent); padding-bottom: 10px; display: inline-block; }
.comment-list .comment { background: #fff; padding: 25px; border-radius: 12px; margin-bottom: 20px; box-shadow: 0 3px 15px rgba(0,0,0,.03); border: 1px solid #f1f5f9; list-style: none; }
.comment-author { font-weight: 700; color: var(--primary-dark); font-size: 16px; margin-bottom: 8px; }
.comment-content { color: #475569; font-size: 15px; line-height: 1.7; }

/* ===== Footer ===== */
.site-footer { background-color: var(--footer-bg); color: var(--footer-text); padding: 70px 0 20px; font-size: 14px; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-col h2 { color: #fff; margin-bottom: 20px; font-size: 18px; font-weight: 700; margin-top: 0; }
.footer-col .widget-content { line-height: 1.6; }
.footer-subtitle { color: var(--accent); font-size: 14px; margin-bottom: 15px; display: block; font-weight: 500; }
.footer-social-icons { display: grid; grid-template-columns: repeat(5, 42px); gap: 12px; margin-top: 25px; }
.footer-social-icons a { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; font-size: 17px; background: rgba(255,255,255,.05); border-radius: 50%; color: #fff; transition: all .3s; text-decoration: none; }
.footer-social-icons a:hover { background: var(--primary-light); transform: translateY(-3px); }
.footer-col ul { list-style-type: none !important; padding: 0 !important; margin: 0 !important; }
.footer-col ul li { margin-bottom: 15px; position: relative; }
.footer-col ul li::before { content: none !important; display: none !important; }
.contact-info-list { font-size: 14px; letter-spacing: -.2px; }
.contact-info-list li { display: flex; align-items: center; gap: 12px; color: #94a3b8; }
.contact-info-list i { font-size: 16px; width: 20px; text-align: center; color: var(--accent); }
.footer-col a { color: var(--footer-text); text-decoration: none; transition: color .3s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); margin-top: 50px; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 20px; padding-right: 20px; }
.legal-links { text-align: right; }
.legal-links a { color: var(--footer-text); text-decoration: none; font-size: 13px; letter-spacing: -.2px; transition: color .3s; margin-left: 20px; display: inline-block; }
.legal-links a:hover { color: #fff; }
.legal-links-bottom { margin-top: 8px; }

/* ===== WordPress Specifics ===== */
.wp-block-image img { border-radius: 12px; }
.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.wp-caption { max-width: 100%; }
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }

/* ===== Pagination ===== */
.pagination { display: flex; justify-content: center; gap: 8px; margin: 40px 0; }
.pagination .page-numbers { padding: 10px 16px; border-radius: 8px; background: #fff; border: 1px solid #e2e8f0; color: var(--primary-dark); font-weight: 600; transition: .3s; }
.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--primary-light); color: #fff; border-color: var(--primary-light); }

/* ===== MOBİL UYUMLULUK ===== */
@media(max-width:992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .kartvizit-col { width: 100%; justify-content: center; margin-top: 20px; }
    .map-container iframe { min-height: 300px; }
    .home-post-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { flex-direction: column; gap: 30px; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 30px; }
    .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
}

@media(max-width:768px) {
    .top-bar { padding: 6px 15px; gap: 6px; flex-wrap: wrap; justify-content: center; }
    .top-bar nav ul { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .top-bar nav ul li a { font-size: 11px; }
    .header-actions { gap: 8px; margin-top: 8px; }
    .btn-phone-nav, .btn-randevu-nav { font-size: 13px; padding: 8px 12px; }
    .btn-ikinci-gorus { display: none !important; }
    header.site-header { flex-direction: column; text-align: center; padding: 15px; gap: 10px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
    .legal-links { text-align: center; }
    .legal-links a { margin: 0 10px; }
    .blog-post-container { padding: 0 10px; margin: 20px 10px; }
    .blog-layout { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; margin-top: 20px; }
    .blog-main-col { padding: 25px 20px; }
    .home-post-grid { grid-template-columns: 1fr; }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
    .horizontal-links-bar { flex-direction: column; padding: 20px; }
    .box-link { width: 100%; justify-content: center; }
    .header-logo-section h1 { font-size: 21px; }
    .header-logo-section p { font-size: 12px; }
    .hero h1 { font-size: 26px; }
    .hero p { font-size: 14px; }
    .btn-main { font-size: 15px; padding: 12px 24px; }
    .section-title { font-size: 26px; }
    .about-text-content { font-size: 14px; }
    .service-card { padding: 25px 20px; }
    .service-card h3 { font-size: 16px; }
    .service-card p { font-size: 13px; }
    .card-box { padding: 25px 20px; }
    .card-box h2 { font-size: 19px; }
    .hours-table td { font-size: 13px; }
    .post-title { font-size: 22px; text-align: center; }
    .post-body { font-size: 14px; line-height: 1.6; }
    .home-post-content h3 { font-size: 13px; }
    .read-more-link { font-size: 12px; }
    .footer-col h2 { font-size: 15px; }
    .contact-info-list { font-size: 12px; }
    .footer-subtitle { font-size: 12px; }
    .wa-panel { flex-direction: column; gap: 15px; text-align: center; padding: 20px; }
    .wa-left { flex-direction: column; gap: 10px; }
    .wa-right { width: 100%; }
    .wa-post-banner { flex-direction: column; text-align: center; gap: 15px; }
    .wa-banner-left { flex-direction: column; }
    .wa-banner-right { width: 100%; }
    .kv-overlay { padding: 10px; }
    .post-nav-links { grid-template-columns: 1fr; gap: 12px; }
    .post-nav-link.next { align-items: flex-start; text-align: left; }
}

/* ===== MODERN YORUM FORMU ===== */
.comment-respond { margin-top: 30px; }
.comment-respond .comment-reply-title {
    font-size: 22px; font-weight: 700; color: var(--primary-dark); margin-bottom: 20px;
    border-bottom: 3px solid var(--accent); padding-bottom: 10px; display: inline-block;
}
.comment-respond .comment-notes { font-size: 13px; color: #94a3b8; margin-bottom: 20px; }
.comment-respond label { display: block; font-size: 14px; font-weight: 600; color: var(--primary-dark); margin-bottom: 6px; }
.comment-respond .comment-form-comment textarea,
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"] {
    width: 100%; padding: 14px 18px; border: 2px solid #e2e8f0; border-radius: 10px;
    font-size: 15px; font-family: 'Poppins', sans-serif; outline: none; transition: border-color .3s;
    background: #fff; color: #333; box-sizing: border-box;
}
.comment-respond .comment-form-comment textarea { min-height: 150px; resize: vertical; }
.comment-respond input:focus,
.comment-respond textarea:focus { border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(0,119,182,.1); }
.comment-respond .comment-form-cookies-consent { display: flex; align-items: center; gap: 8px; margin: 15px 0; font-size: 13px; color: #64748b; }
.comment-respond .comment-form-cookies-consent input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--primary-light); }
.comment-respond .form-submit { margin-top: 20px; }
.comment-respond .submit {
    background: var(--primary-light); color: #fff; border: none; padding: 14px 30px;
    border-radius: 10px; font-size: 16px; font-weight: 600; font-family: 'Poppins', sans-serif;
    cursor: pointer; transition: all .3s; display: inline-flex; align-items: center; gap: 8px;
}
.comment-respond .submit:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,119,182,.25); }
.comment-respond p { margin-bottom: 18px; }
.comment-list { list-style: none !important; padding: 0 !important; }
.comment-list .comment-body { background: #fff; padding: 25px; border-radius: 12px; margin-bottom: 20px; box-shadow: 0 3px 15px rgba(0,0,0,.03); border: 1px solid #f1f5f9; }
.comment-list .comment-author { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.comment-list .comment-author .fn { font-weight: 700; color: var(--primary-dark); font-size: 16px; }
.comment-list .comment-author .avatar { border-radius: 50%; }
.comment-list .comment-metadata { font-size: 12px; color: #94a3b8; margin-bottom: 12px; }
.comment-list .comment-metadata a { color: #94a3b8; text-decoration: none; }
.comment-list .comment-content p { color: #475569; font-size: 15px; line-height: 1.7; }
.comment-list .reply a {
    font-size: 13px; font-weight: 600; color: var(--primary-light); text-decoration: none;
    padding: 4px 12px; border: 1px solid var(--primary-light); border-radius: 6px; transition: .3s;
}
.comment-list .reply a:hover { background: var(--primary-light); color: #fff; }

/* ===== Docplanner Widget iframe fix ===== */
.zl-url { display: block; width: 100%; }
[class*="zl"] iframe { width: 100% !important; max-width: 100% !important; border: 0 !important; display: block !important; min-height: 500px; }

/* ===== Google Maps iframe responsive ===== */
.map-container { position: relative; }
.map-container iframe { width: 100% !important; height: 100% !important; min-height: 380px; border: none !important; border-radius: 15px; }

/* ---- Polylang Bayrak Fix ---- */
.ms-lang-dropdown img,
.ms-lang-dropdown__toggle img,
.ms-lang-dropdown__menu img {
    width: 16px !important;
    height: 11px !important;
    max-width: 16px !important;
    border-radius: 2px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
    object-fit: cover !important;
}
