/*
Theme Name: Erdinc
Theme URI: https://drkubrabagci.com
Author: Erdinc
Author URI: #
Description: Dr. Kübra Bağcı - Kadın Hastalıkları ve Doğum Uzmanı WordPress Teması
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
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: erdinc
Tags: medical, responsive, custom-menu
*/

/* ========================================
   RESET & BASE
======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #333;
    background-color: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

embed,
iframe,
object,
video {
    max-width: 100%;
}

.entry-content {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.entry-content img {
    height: auto;
    max-width: 100%;
}

.entry-content iframe,
.entry-content video {
    max-width: 100%;
}

/* ========================================
   CSS VARIABLES
======================================== */
:root {
    --color-primary: #004080;
    --color-primary-dark: #002b5a;
    --color-primary-light: #0056b3;
    --color-accent: #007bff;
    --color-bg: #f0f4f8;
    --color-bg-light: #ffffff;
    --color-topbar: #f8fafc;
    --color-white: #ffffff;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-border: #e2e8f0;
    --color-nav-bg: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --container-width: 1240px;
    --nav-height: 80px;
    --topbar-height: 46px;
}

/* ========================================
   CONTAINER
======================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ========================================
   TOP BAR
======================================== */
#topbar {
    background-color: var(--color-topbar);
    height: var(--topbar-height);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-contact a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 400;
    transition: color 0.2s;
    white-space: nowrap;
}

.topbar-contact a:hover {
    color: var(--color-primary-dark);
}

.topbar-contact a .icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    fill: var(--color-primary);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--color-primary);
    transition: color 0.2s, transform 0.2s;
}

.topbar-social a:hover {
    color: var(--color-primary-dark);
    transform: scale(1.1);
}

.topbar-social svg {
    width: 17px;
    height: 17px;
    fill: var(--color-primary);
}

.topbar-lang {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 6px;
    padding-left: 10px;
    border-left: 1px solid var(--color-border);
}

.topbar-lang a {
    display: flex;
    align-items: center;
    gap: 3px;
}

.topbar-lang img,
.polylang-flags img {
    width: 30px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
}

.polylang-flags {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.polylang-flags li {
    display: flex;
    align-items: center;
}

/* ========================================
   NAVIGATION
======================================== */
#navbar {
    background-color: var(--color-nav-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--nav-height);
    height: auto;
}

#navbar .container {
    height: 100%;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

/* Logo */
.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    text-align: center;
}

.nav-logo img {
    height: 80px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.logo-text .logo-op {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-text .logo-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-text .logo-sub {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 2px;
}

/* Nav menus */
.nav-menu-left,
.nav-menu-right {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-mobile-lang-nav {
    display: none;
}

.nav-menu-left {
    margin-right: auto;
}

.nav-menu-right {
    margin-left: auto;
}

.nav-menu-left li,
.nav-menu-right li {
    position: relative;
}

.nav-menu-left>li>a,
.nav-menu-right>li>a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-heading);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 14px;
    height: var(--nav-height);
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-menu-left>li>a:hover,
.nav-menu-right>li>a:hover {
    color: var(--color-primary-dark);
}

/* Separator between menu items */
.nav-menu-left>li+li>a::before,
.nav-menu-right>li+li>a::before {
    content: '|';
    position: absolute;
    left: 0;
    color: var(--color-border);
    font-weight: 300;
}

/* Dropdown arrow */
.nav-menu-left>li>a .arrow,
.nav-menu-right>li>a .arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--color-primary);
    margin-top: 1px;
    transition: transform 0.2s;
}

/* Dropdown menus */
.nav-menu-left .submenu,
.nav-menu-right .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-top: 2px solid var(--color-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 100;
}

.nav-menu-left li:hover>a .arrow,
.nav-menu-right li:hover>a .arrow {
    transform: rotate(180deg);
}

.nav-menu-left li:hover>.submenu,
.nav-menu-right li:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 2. seviye ve sonrası alt menüler için sağa açılma */
.nav-menu-left .submenu .submenu,
.nav-menu-right .submenu .submenu {
    top: 0;
    left: 100%;
    margin-left: 0;
    transform: translateX(10px);
}

.nav-menu-left .submenu li:hover>.submenu,
.nav-menu-right .submenu li:hover>.submenu {
    transform: translateX(0);
}

/* Arrow in submenu */
.submenu li>a .arrow {
    transform: rotate(-90deg);
    float: right;
    margin-top: 5px;
    border-top-color: var(--color-text-light);
}

.submenu li:hover>a .arrow {
    transform: rotate(-90deg);
    border-top-color: var(--color-primary);
}

.submenu li a {
    display: block;
    padding: 10px 18px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text);
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.submenu li a:hover {
    background-color: var(--color-bg);
    color: var(--color-primary);
    padding-left: 24px;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
}

.nav-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 999;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    padding: 80px 24px 40px;
}

.nav-mobile.open {
    transform: translateX(0);
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-mobile ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.nav-mobile ul li a:hover {
    color: var(--color-primary-dark);
}

.nav-mobile ul li a .arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--color-primary);
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.nav-mobile ul li.active>a .arrow {
    transform: rotate(180deg);
}

/* Mobile Submenu Styling */
.nav-mobile ul .submenu {
    display: none;
    padding-left: 15px;
    background-color: #f9f9f9;
    border-left: 2px solid var(--color-primary);
}

.nav-mobile ul li.active>.submenu {
    display: block;
}

.nav-mobile ul .submenu li a {
    font-size: 13px;
    text-transform: none;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    color: var(--color-text);
}

.nav-mobile ul .sub-menu li:last-child a {
    border-bottom: none;
}

.nav-mobile .mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    color: var(--color-primary);
    line-height: 1;
}

/* Mobile Nav: Marka Bloğu */
.nav-mobile-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-border);
}

.nav-mobile-brand .logo-text {
    align-items: flex-start;
}

.nav-mobile-brand .logo-text .logo-op {
    font-size: 9px;
}

.nav-mobile-brand .logo-text .logo-name {
    font-size: 20px;
}

.nav-mobile-brand .logo-text .logo-sub {
    font-size: 8px;
}

.nav-mobile-contact a {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-white);
    background-color: var(--color-primary);
    padding: 10px 16px;
    border-radius: 6px;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.nav-mobile-contact a:hover {
    background-color: var(--color-primary-dark);
}

.nav-mobile-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.nav-mobile-lang .polylang-flags {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-end;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-mobile-lang .polylang-flags img {
    width: 24px;
    height: 18px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile Nav: Alt menü öğeleri */
.nav-mobile ul li.mobile-sub-item a {
    padding-left: 24px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--color-primary-light);
    border-bottom-color: #f0f0f0;
    position: relative;
}

.nav-mobile ul li.mobile-sub-item a::before {
    content: '–';
    position: absolute;
    left: 10px;
    color: var(--color-border);
}

.nav-mobile ul li.mobile-parent>a {
    color: var(--color-primary-dark);
    font-weight: 700;
}

/* ========================================
   HERO SECTION
======================================== */
#hero {
    background-color: #002B5A;
    padding: 60px 0 0;
    overflow: hidden;
    position: relative;
}

/* Mobil Arkaplan Beyaz */
@media (max-width: 768px) {
    #hero {
        background-color: #ffffff !important;
        padding-bottom: 40px;
    }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 500px;
}

/* Hero - Doctor Photo */
.hero-image-col {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-image-wrap {
    position: relative;
    width: 440px;
    max-width: 100%;
}

.hero-image-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, var(--color-primary-light) 0%, var(--color-primary) 45%, transparent 72%);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
}

.hero-arch-frame {
    position: relative;
    z-index: 1;
    width: 420px;
    margin: 0 auto;
    /* Arch-shaped container */
    border-radius: 210px 210px 0 0;
    overflow: hidden;
    background: transparent;

}

.hero-arch-frame::before {
    content: none;
}

.hero-arch-img {
    width: 100%;
    height: 540px;
    object-fit: cover;

    margin-top: -40px;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 0;
}

/* Hero - Center Content */
.hero-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
}

.hero-title {
    color: #ffff;
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: 0.5px;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 12.5px;
    font-weight: 700;
    color: #ffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-top: 2px solid var(--color-primary);
    padding-top: 10px;
    width: 100%;
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: #ffff;
    line-height: 1.75;
    max-width: 420px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffff;
    color: #002B5A;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: background-color 0.25s, transform 0.2s;
    border: 2px solid var(--color-primary-dark);
}

.btn-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-1px);
    color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    border: 2px solid var(--color-primary-dark);
    transition: all 0.25s;
}

.btn-outline:hover {
    background-color: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-1px);
}

/* Hero - Appointment Form */
.hero-form-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.hero-form-card {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    padding: 32px 28px;
    width: 100%;
    max-width: 360px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #DDD;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--color-text);
    background-color: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input::placeholder {
    color: #AAA;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 64, 128, 0.08);
}

.form-group.select-wrap {
    position: relative;
}

.form-group.select-wrap::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--color-primary);
    pointer-events: none;
}

.form-group select {
    cursor: pointer;
    color: #AAA;
}

.form-group select option {
    color: var(--color-text);
}

.btn-form-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--color-primary-dark);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.25s, transform 0.2s;
    margin-top: 4px;
}

.btn-form-submit:hover {
    background-color: var(--color-primary);
    transform: translateY(-1px);
}

.btn-form-submit svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

/* ========================================
   ABOUT (KİMDİR) SECTION
======================================== */
.kimdir-title-area {
    text-align: center;
    position: relative;
    margin-bottom: 60px;
}

.kimdir-watermark {
    font-family: var(--font-heading);
    font-size: 8vw;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}

.kimdir-main-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary-dark);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kimdir-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.kimdir-text-col p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.kimdir-text-col strong {
    color: var(--color-primary-dark);
}

.kimdir-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.kimdir-list li {
    font-size: 15px;
    color: var(--color-text-light);
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}

.kimdir-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.kimdir-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.kimdir-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kimdir-buttons a svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.kimdir-buttons a:hover svg {
    transform: translateX(3px);
}

.btn-outline-blue {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background-color: transparent;
}

.btn-outline-blue:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-blue {
    background-color: var(--color-primary-dark);
    color: #fff;
    border: 2px solid var(--color-primary-dark);
}

.btn-blue:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.kimdir-arch-image {
    width: 100%;
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.kimdir-arch-image img {
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.3;
}

.section-desc {
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ========================================
   TREATMENTS SECTION
======================================== */
#treatments {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.treatments-header {
    text-align: center;
    margin-bottom: 50px;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.treatment-card {
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.treatment-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.treatment-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.treatment-card:hover .treatment-card-img img {
    transform: scale(1.05);
}

.treatment-card-body {
    padding: 20px;
}

.treatment-card-body h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.treatment-card-body p {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.treatment-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 12px;
    transition: gap 0.2s;
}

.treatment-card-link:hover {
    gap: 10px;
    color: var(--color-primary-dark);
}

/* ========================================
   WHY SECTION
======================================== */
#why {
    padding: 80px 0;
    background-color: var(--color-primary-dark);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content .section-tag,
.why-content .section-title {
    color: var(--color-bg);
}

.why-content .section-desc {
    color: rgba(255, 255, 255, 0.75);
}

.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-white);
    display: block;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
#testimonials {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    position: relative;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.star {
    color: #F4A300;
    font-size: 16px;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.testimonial-date {
    font-family: var(--font-body);
    font-size: 11.5px;
    color: #AAA;
    margin-top: 2px;
}

/* ========================================
   APPOINTMENT SECTION
======================================== */
#appointment {
    padding: 80px 0;
    background-color: var(--color-white);
}

.appointment-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.appointment-form-large {
    background-color: var(--color-bg-light);
    border-radius: 12px;
    padding: 40px;
}

.appointment-form-large .form-group {
    margin-bottom: 16px;
}

.appointment-form-large .form-group input,
.appointment-form-large .form-group select,
.appointment-form-large .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
    background-color: #fff;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.appointment-form-large .form-group input:focus,
.appointment-form-large .form-group select:focus,
.appointment-form-large .form-group textarea:focus {
    border-color: var(--color-primary);
}

.appointment-form-large .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.appointment-form-large .btn-form-submit {
    width: 100%;
}

.appointment-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.appointment-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--color-border);
}

.info-icon-wrap svg {
    width: 22px;
    height: 22px;
    fill: var(--color-primary);
}

.info-text h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 4px;
}

.info-text p,
.info-text a {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.info-text a:hover {
    color: var(--color-primary);
}

/* ========================================
   BLOG SECTION
======================================== */
#blog {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    display: block;
    text-decoration: none;
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 22px;
}

.blog-card-meta {
    font-family: var(--font-body);
    font-size: 11.5px;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.blog-card-body h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-body p {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.65;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 14px;
    transition: gap 0.2s;
}

.blog-card-link:hover {
    gap: 10px;
    color: var(--color-primary-dark);
}

/* ========================================
   MAP SECTION
======================================== */
#map-section {
    border-top: 1px solid var(--color-border);
    line-height: 0;
}

/* ========================================
   FOOTER
======================================== */
#footer {
    background-color: #001a33;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
    align-items: flex-start;
    text-align: left;
}

.footer-brand .logo-text .logo-op,
.footer-brand .logo-text .logo-name,
.footer-brand .logo-text .logo-sub {
    color: rgba(255, 255, 255, 0.9);
}

.footer-brand-desc {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 20px 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    transition: background-color 0.25s;
}

.footer-social a:hover {
    background-color: var(--color-primary);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.8);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s, padding-left 0.2s;
}

.footer-col ul li a:hover {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-contact-item svg {
    width: 15px;
    height: 15px;
    fill: var(--color-primary-light);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item span,
.footer-contact-item a {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-contact-item a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   WHATSAPP BUTTON
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: wa-pulse 2.5s ease infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
    animation: none;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ========================================
   SCROLL TO TOP
======================================== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
}

.scroll-top svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* ========================================
   SECTION CENTER / UTILITY
======================================== */
.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-48 {
    margin-top: 48px;
}

.mb-8 {
    margin-bottom: 8px;
}

.section-center-btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ========================================
   READING PROGRESS BAR
======================================== */
#reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background-color: var(--color-primary);
    z-index: 99999;
    width: 0%;
    transition: width 0.1s linear;
}

/* ========================================
   GALLERY SECTION
======================================== */
#gallery {
    background-color: var(--color-white);
}

#gallery-press {
    padding: 80px 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background-color: #f0f0f0;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.mobile-gallery-btn-wrapper {
    display: none;
}

@media (max-width: 768px) {
    .mobile-gallery-btn-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    #gallery .gallery-item:nth-child(n+5) {
        display: none !important;
    }
}

/* ========================================
   HOMEPAGE TABS SYSTEM
   ======================================== */
.tabs-section {
    padding: 100px 0;
    background-color: #fff;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.tab-btn.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 10px 20px rgba(0, 43, 90, 0.15);
}

.tab-pane {
    display: none;
    animation: fadeInTab 0.5s ease both;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .tabs-section {
        padding: 60px 0;
    }

    .tabs-nav {
        gap: 8px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        margin-bottom: 30px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .tabs-nav::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* ========================================
   HOMEPAGE FAQ (SSS) SECTION
   ======================================== */
.home-faq {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.faq-grid {
    max-width: 900px;
    margin: 40px auto 0;
}

/* Lightbox Premium Styles */
.bwu-lightbox {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.bwu-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.bwu-lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.bwu-lightbox.active .bwu-lightbox-content {
    transform: scale(1);
}

.bwu-lightbox-container {
    width: 90%;
    height: 80%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#bwu-lightbox-video-container {
    width: 100%;
    height: 100%;
    max-height: 100%;
}

.bwu-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.bwu-lightbox-close:hover {
    color: var(--color-primary);
}

#bwu-lightbox-caption {
    margin-top: 20px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 1px;
}

.bwu-lightbox-prev,
.bwu-lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    user-select: none;
    z-index: 10001;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.bwu-lightbox-prev:hover,
.bwu-lightbox-next:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.bwu-lightbox-prev {
    left: 20px;
}

.bwu-lightbox-next {
    right: 20px;
}

/* Responsive Grid Adjustments */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .bwu-lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }

    .bwu-lightbox-prev,
    .bwu-lightbox-next {
        width: 36px;
        height: 36px;
        font-size: 20px;
        background-color: transparent;
    }

    .bwu-lightbox-prev {
        left: 5px;
    }

    .bwu-lightbox-next {
        right: 5px;
    }
}

/* ========================================
   VIDEO GALLERY SECTION
======================================== */
#video-gallery {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.video-gallery-header {
    text-align: center;
    margin-bottom: 48px;
}

.video-gallery-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.video-gallery-line {
    width: 60px;
    height: 2px;
    background-color: var(--color-primary);
    margin: 0 auto;
    opacity: 0.5;
}

/* 2 sütun grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Video kart */
.video-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    background-color: #fff;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* Thumbnail wrapper */
.video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
    opacity: 0.85;
}

/* YouTube play butonu overlay */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 52px;
    pointer-events: none;
    transition: transform 0.25s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.12);
}

.video-play-btn svg {
    width: 100%;
    height: 100%;
}

/* "Tüm Videoları İncele" butonu */
.btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-primary-dark);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: background-color 0.25s, transform 0.2s;
    text-decoration: none;
}

.btn-youtube svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    flex-shrink: 0;
}

.btn-youtube:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ========================================
   PRESS SECTION
======================================== */
#press {
    padding: 80px 0;
    background-color: var(--color-white);
}

.press-header {
    text-align: center;
    margin-bottom: 50px;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.press-card {
    display: block;
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.press-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
}

.press-card-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.press-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.press-card:hover .press-card-img img {
    transform: scale(1.06);
}

/* Kaynak rozeti – resim üzerine */
.press-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: var(--color-primary-dark);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 2;
}

.press-card-body {
    padding: 18px 20px 20px;
    border-top: 2px solid var(--color-bg-light);
}

.press-card-body h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.45;
    transition: color 0.2s;
}

.press-card:hover .press-card-body h3 {
    color: var(--color-primary);
}

/* ========================================
   WHY CHOOSE US SECTION
======================================== */
#why-choose-us {
    padding: 100px 0;
    background-color: #f7fbff;
    position: relative;
    overflow: hidden;
}

/* Decorative icons in background */
#why-choose-us::before,
#why-choose-us::after {
    content: '+';
    position: absolute;
    font-size: 80px;
    font-family: var(--font-heading);
    color: rgba(0, 43, 90, 0.04);
    pointer-events: none;
}

#why-choose-us::before {
    top: 10%;
    left: 5%;
    transform: rotate(15deg);
}

#why-choose-us::after {
    bottom: 10%;
    right: 5%;
    transform: rotate(-15deg);
}

.why-us-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.why-us-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-us-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s;
}

.why-us-item:hover {
    transform: translateX(5px);
}

.side-left .why-us-item:hover {
    transform: translateX(-5px);
}

.why-us-text h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.why-us-text p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-light);
}

.side-left .why-us-item {
    text-align: right;
}

.why-us-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: 0 10px 25px rgba(0, 43, 90, 0.08);
    flex-shrink: 0;
}

.why-us-icon svg {
    width: 28px;
    height: 28px;
}

.why-us-center {
    flex-shrink: 0;
    width: 420px;
    position: relative;
}

.why-us-doctor-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 10px solid #fff;
    box-shadow: 0 20px 60px rgba(0, 43, 90, 0.15);
    overflow: visible;
}

.why-us-doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.why-us-btn {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 43, 90, 0.25);
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 5;
}

.why-us-btn:hover {
    background: var(--color-primary-dark);
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 43, 90, 0.35);
}

.why-us-btn svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   RESPONSIVE - TABLET
======================================== */
@media (max-width: 1024px) {
    :root {
        --container-width: 95%;
    }

    /* Tablette topbar adresini gizle */
    .topbar-contact .topbar-address {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr 1fr;
    }

    .hero-image-col {
        display: none;
    }

    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item:nth-child(1) img {
        height: 200px;
    }

    /* Video gallery tablette 2 sütun */
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .press-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .press-card-img {
        height: 200px;
    }

    .why-inner,
    .about-inner,
    .kimdir-grid,
    .appointment-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Harita tablette yüksekliği azalt */
    #map-section iframe {
        height: 340px;
    }

    /* Why Choose Us Tablet */
    .why-us-center {
        width: 340px;
    }

    .why-us-side {
        gap: 25px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
======================================== */
@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
        --topbar-height: auto;
    }

    /* === TOPBAR: mobilden tamamen gizle === */
    #topbar {
        display: none;
    }

    /* === NAVBAR === */
    .nav-menu-left,
    .nav-menu-right {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-mobile {
        display: block;
    }

    .nav-logo {
        position: static;
        transform: none;
        margin: 0;
    }

    .navbar-inner {
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 10px;
    }

    .nav-mobile-lang-nav {
        display: block !important;
        margin-left: auto;
    }

    .nav-mobile-lang-nav .polylang-flags {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-mobile-lang-nav .polylang-flags img {
        width: 60px;
        height: 30px;
        border-radius: 3px;
        display: block;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .logo-text .logo-name {
        font-size: 18px;
    }

    /* === SECTION SPACING === */
    section {
        padding: 60px 0 !important;
    }

    /* === TYPOGRAPHY MOBILE OPTIMIZATION === */
    .section-title {
        font-size: 26px;
    }

    .page-title {
        font-size: 26px;
    }

    h1,
    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    h5,
    h6 {
        font-size: 16px;
    }

    /* Why Choose Us Mobile */
    .why-us-content {
        flex-direction: column;
        gap: 40px;
    }

    .why-us-center {
        width: 280px;
        order: -1;
    }

    .why-us-side {
        width: 100%;
    }

    .side-left .why-us-item {
        text-align: left;
        flex-direction: row-reverse;
    }

    .why-us-text {
        width: 100%;
    }

    .why-us-item {
        justify-content: flex-end;
    }

    .side-left .why-us-item {
        justify-content: flex-end;
    }

    /* === HERO MOBILE === */
    #hero {
        padding-top: 20px !important;
    }

    .hero-inner {
        display: flex;
        flex-direction: column;
    }

    .hero-image-col {
        display: flex;
        order: 1;
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
        justify-content: center;
    }

    .hero-image-wrap {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-arch-frame {
        width: auto !important;
        max-width: 100% !important;
    }

    .hero-content-col {
        order: 2;
        padding: 0;
        width: 100%;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        color: var(--color-primary-dark);
    }

    .hero-subtitle {
        color: var(--color-primary);
    }

    .hero-desc {
        color: var(--color-text);
        font-size: 14px;
        margin-top: 15px;
    }

    .post-detail-title {
        font-size: 24px;
    }

    .topbar-contact a {
        gap: 4px;
        font-size: 11px;
    }

    .hero-buttons {
        margin-top: 25px;
    }

    .hero-buttons .btn-primary {
        background-color: var(--color-primary-dark);
        color: #fff;
    }

    .hero-buttons .btn-outline {
        background-color: transparent;
        color: var(--color-primary-dark);
    }

    .hero-form-col {
        display: flex;
        order: 3;
        width: 100%;
        margin-top: 40px;
        padding: 0;
    }

    /* === TREATMENTS GRID === */
    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* === VIDEO GRID === */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-play-btn {
        width: 55px;
        height: 38px;
    }

    /* === GALLERY-PRESS === */
    #gallery-press {
        padding: 60px 0 !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* === TESTIMONIALS === */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* === PRESS === */
    .press-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* === BLOG === */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* === FOOTER === */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col h4::after {
        left: 0;
        transform: none;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-contact-item {
        justify-content: flex-start;
    }

    .scroll-top {
        bottom: 85px;
        width: 40px;
        height: 40px;
        z-index: 9999;
    }

    .whatsapp-float {
        bottom: 25px;
        width: 50px;
        height: 50px;
        z-index: 9999;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .topbar-contact a {
        font-size: 10px;
    }

    .nav-logo img {
        height: 44px;
    }

    .logo-text .logo-name {
        font-size: 16px;
    }

    .topbar-lang img {
        width: 18px;
        height: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
    }

    .kimdir-buttons {
        flex-direction: column;
        width: 100%;
    }

    .kimdir-buttons a {
        width: 100%;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 22px;
    }

    .page-title {
        font-size: 22px;
    }

    h1,
    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    h4,
    h5,
    h6 {
        font-size: 15px;
    }

    .container {
        padding: 0 14px;
    }

    /* Logo metni çok küçük ekranda daha da küçük */
    .logo-text .logo-name {
        font-size: 15px;
    }

    .logo-text .logo-sub {
        display: none;
    }

    /* Butonlar küçük ekranda tam genişlik */
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .why-stats {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   HAKKIMDA SAYFA ŞABLONU
======================================== */

/* ---- Utility ---- */
.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

/* ---- Hero ---- */
#hakkimda-hero {
    padding: 80px 0 60px;
    background: var(--color-bg-light);
}

.hakkimda-hero-inner {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 64px;
    align-items: flex-start;
}

.hakkimda-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 64, 128, 0.15);
    position: relative;
}

.hakkimda-image-wrap img {
    width: 100%;
    height: 420px;
    /* Hakkımda sayfası için ideal uzunluk */
    object-fit: cover;
    display: block;
}

/* Sadece Anasayfa Neden Biz için ayrı ayar */
.why-us-image-wrap img {
    height: 420px !important;
}

.hakkimda-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.hakkimda-stat {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 64, 128, 0.07);
}

.hakkimda-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.hakkimda-stat-label {
    font-size: 11px;
    color: var(--color-text-light);
    font-family: var(--font-body);
}

.hakkimda-hero-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-top: 12px;
    line-height: 1.2;
}

.hakkimda-hero-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary-light);
    margin-top: 6px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.hakkimda-uzmanlik-etiketler {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.uzmanlik-etiket {
    display: inline-block;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.2px;
}

/* ---- ÖZGEÇMİŞ ---- */
#ozgecmis {
    padding: 80px 0;
    background: #fff;
}

.ozgecmis-header {
    text-align: center;
    margin-bottom: 56px;
}

.ozgecmis-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.ozgecmis-col-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-bg);
}

.ozgecmis-icon {
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ozgecmis-icon svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.ozgecmis-col-header h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Timeline */
.ozgecmis-timeline {
    position: relative;
    padding-left: 28px;
}

.ozgecmis-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 6px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-border) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 28px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -24px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--color-primary);
    z-index: 1;
}

.timeline-year {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--color-bg);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 5px;
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 3px;
}

.timeline-content p {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* ---- YAYINLAR ---- */
#yayinlar {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.yayinlar-header {
    text-align: center;
    margin-bottom: 56px;
}

.yayinlar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.yayin-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.yayin-card:hover {
    box-shadow: 0 8px 30px rgba(0, 64, 128, 0.12);
    transform: translateY(-2px);
}

.yayin-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--color-border);
    line-height: 1;
    flex-shrink: 0;
    width: 44px;
}

.yayin-type {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--color-bg);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.yayin-content h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-dark);
    line-height: 1.4;
    margin-bottom: 6px;
}

.yayin-journal {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: var(--color-text-light);
    font-style: italic;
}

/* ---- FOTOĞRAF GALERİSİ ---- */
#hakkimda-galeri {
    padding: 80px 0;
    background: #fff;
}

.galeri-header {
    text-align: center;
    margin-bottom: 48px;
}

.hakkimda-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hakkimda-gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-bg);
}

.hakkimda-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hakkimda-gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 64, 128, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hakkimda-gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay svg {
    width: 36px;
    height: 36px;
    fill: #fff;
}

/* ---- VİDEOLAR ---- */
#hakkimda-videolar {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.videolar-header {
    text-align: center;
    margin-bottom: 48px;
}

.hakkimda-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.video-thumb-placeholder {
    background: var(--color-bg);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 10px;
    border: 2px dashed var(--color-border);
}

.video-thumb-placeholder svg {
    width: 60px;
    height: auto;
    opacity: 0.6;
}

.video-thumb-placeholder span {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text-light);
}

/* ---- BASINDA ---- */
#hakkimda-basin {
    padding: 80px 0;
    background: #fff;
}

.basin-header {
    text-align: center;
    margin-bottom: 48px;
}

.hakkimda-basin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hakkimda-basin-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hakkimda-basin-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 64, 128, 0.15);
}

.hakkimda-basin-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.basin-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 43, 90, 0.9), transparent);
    color: #fff;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    padding: 32px 14px 14px;
}

/* ---- RANDEVU ---- */
#hakkimda-randevu {
    padding: 80px 0;
    background: var(--color-bg-light);
}

/* ========================================
   HAKKIMDA – RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .hakkimda-hero-inner {
        grid-template-columns: 340px 1fr;
        gap: 40px;
    }

    .ozgecmis-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .yayinlar-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    #hakkimda-hero {
        padding: 48px 0 40px;
    }

    .hakkimda-hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hakkimda-image-wrap img {
        height: 320px;
    }

    .hakkimda-stats-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .hakkimda-hero-title {
        font-size: 26px;
    }

    #ozgecmis,
    #yayinlar,
    #hakkimda-galeri,
    #hakkimda-videolar,
    #hakkimda-basin,
    #hakkimda-randevu {
        padding: 56px 0;
    }

    .hakkimda-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hakkimda-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hakkimda-basin-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hakkimda-stats-row {
        grid-template-columns: 1fr;
    }

    .hakkimda-gallery-grid,
    .hakkimda-video-grid,
    .hakkimda-basin-grid {
        grid-template-columns: 1fr;
    }

    .yayin-card {
        flex-direction: column;
        gap: 8px;
    }
}

/* ========================================
   BLOG & PAGE HEADER STYLES
======================================== */
#page-header {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #2c160d 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

#page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

#page-header .section-tag {
    color: var(--color-primary-light);
    border-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--color-primary-light);
}

.breadcrumb .sep {
    font-size: 10px;
    opacity: 0.5;
}

.breadcrumb .current {
    color: var(--color-primary-light);
    font-weight: 600;
}

#blog-page {
    padding: 80px 0 100px;
    background-color: var(--color-bg-light);
    min-height: 400px;
}

/* Pagination */
.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination .page-numbers {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-primary-dark);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.pagination .page-numbers.current {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.pagination .page-numbers.dots {
    border: none;
    background: transparent;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 40px 0;
}

.no-posts h2 {
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }

    #blog-page,
    #press-page,
    #clinic-gallery-page {
        padding: 60px 0;
    }
}

/* ========================================
   PRESS PAGE STYLES
======================================== */
#press-page,
#video-page-gallery,
#clinic-gallery-page {
    padding: 80px 0 100px;
    background-color: var(--color-bg-light);
}

.video-page-gallery .video-grid,
#clinic-gallery-page .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}



/* ========================================
   SINGLE POST DETAIL STYLES
======================================== */
#post-detail {
    padding: 80px 0 100px;
    background-color: var(--color-bg-light);
}

.post-detail-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.post-main-content {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

/* Breadcrumb for Single Post */
.post-breadcrumb {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-light);
    flex-wrap: wrap;
    line-height: 1.5;
}

.post-breadcrumb span.current {
    word-break: break-word;
    display: inline-block;
    max-width: 100%;
}

.post-breadcrumb a {
    color: var(--color-primary);
    text-decoration: none;
}

/* Post Hero */
.post-hero-img {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.post-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-meta-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 500;
    flex-wrap: wrap;
}

.post-detail-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.25;
    margin-bottom: 25px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Entry Content Typography */
.entry-content {
    font-family: var(--font-body);
    font-size: 15.5px;
    color: var(--color-text);
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h2,
.entry-content h3 {
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    margin: 35px 0 15px;
}

.entry-content blockquote {
    background: var(--color-bg);
    border-left: 4px solid var(--color-primary);
    padding: 25px;
    margin: 30px 0;
    font-style: italic;
    font-size: 17px;
    color: var(--color-primary-dark);
}

/* Sidebar Widgets */
.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-bg);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
}

/* Recent Posts Widget */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.recent-post-item:hover {
    background-color: var(--color-bg-light);
}

.recent-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-info h4 {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-primary-dark);
    line-height: 1.4;
    margin-bottom: 4px;
}

.recent-post-info span {
    font-size: 11px;
    color: var(--color-text-light);
}

/* Sidebar Contact Widget */
.sidebar-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.s-contact-item {
    display: flex;
    gap: 12px;
}

.s-contact-icon {
    width: 32px;
    height: 32px;
    background: var(--color-bg);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.s-contact-icon svg {
    width: 16px;
    height: 16px;
}

.s-contact-text h5 {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 2px;
}

.s-contact-text p,
.s-contact-text a {
    font-size: 13.5px;
    color: var(--color-primary-dark);
    font-weight: 500;
    text-decoration: none;
}

/* FAQ Block Style */
.faq-block {
    background-color: var(--color-bg);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
}

/* Appointment CTA for Post */
.post-appointment-cta {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #2c160d 100%);
    border-radius: 20px;
    color: #fff;
    text-align: center;
}

.post-appointment-cta h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin-bottom: 15px;
}

.post-appointment-cta p {
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Post Navigation V2 */
.post-navigation-v2 {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--color-bg);
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.post-navigation-v2 .nav-prev,
.post-navigation-v2 .nav-next {
    flex: 1;
    max-width: 50%;
}

.post-navigation-v2 .nav-next {
    text-align: right;
}

.post-navigation-v2 a {
    text-decoration: none;
    display: block;
}

.post-navigation-v2 .nav-label {
    display: block;
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-navigation-v2 .nav-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.4;
    transition: color 0.3s;
}

.post-navigation-v2 a:hover .nav-title {
    color: var(--color-primary);
}

@media (max-width: 1024px) {
    .post-detail-inner {
        grid-template-columns: 1fr;
    }

    .sidebar-sticky {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .post-main-content {
        padding: 25px;
    }

    .post-detail-title {
        font-size: 26px;
    }

    .post-appointment-cta {
        padding: 40px 20px;
    }

    .post-navigation-v2 {
        flex-direction: column;
        gap: 20px;
    }

    .post-navigation-v2 .nav-prev,
    .post-navigation-v2 .nav-next {
        max-width: 100%;
        text-align: left;
    }

    .post-navigation-v2 .nav-next {
        border-top: 1px solid var(--color-bg);
        padding-top: 20px;
    }
}


/* ========================================
   CONTACT PAGE STYLES
======================================== */
#contact-page {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.contact-intro {
    max-width: 800px;
    margin-bottom: 50px;
    font-size: 16px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Info Panel */
.contact-info-panel .contact-subtitle {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-primary-dark);
    margin-bottom: 30px;
}

.contact-subtitle-small {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon-v3 {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-detail-item a,
.contact-detail-item p {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    text-decoration: none;
    line-height: 1.5;
}

/* Social Links */
.contact-social-links {
    display: flex;
    gap: 12px;
}

.c-social-btn {
    width: 44px;
    height: 44px;
    background-color: var(--color-primary-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform 0.3s, background 0.3s;
}

.c-social-btn:hover {
    transform: translateY(-3px);
    background-color: var(--color-primary);
}

.c-social-btn svg {
    width: 20px;
    height: 20px;
}

/* Form Panel */
.contact-form-panel {
    display: flex;
    justify-content: flex-end;
}

.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 500px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-form-card .form-row {
    margin-bottom: 18px;
    display: block;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.3s;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.btn-contact-submit {
    width: 100%;
    background: var(--color-primary-dark);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 10px 10px 40px 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-contact-submit:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.btn-contact-submit svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-panel {
        justify-content: center;
    }
}

/* ========================================
   YAZAR PROFİLİ SAYFA ŞABLONU
======================================== */
#author-profile-page {
    background-color: #f8f9fa;
    padding-bottom: 80px;
    min-height: 100vh;
}

.author-header-bg {
    height: 300px;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #2c160d 100%);
    width: 100%;
    position: relative;
}

.author-profile-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    margin-top: -150px;
    position: relative;
    z-index: 10;
}

/* Author Card */
.author-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.author-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 25px;
    padding: 8px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.author-title {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-primary-light);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.author-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.author-social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.author-social-links svg {
    width: 20px;
    height: 20px;
    fill: var(--color-primary-dark);
}

.author-social-links a:hover svg {
    fill: #fff;
}

.author-bio {
    border-top: 1px solid #eee;
    padding-top: 25px;
    margin-bottom: 30px;
}

.author-bio p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--color-text-light);
}

.author-cta-btn {
    display: block;
    background: var(--color-primary);
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
}

.author-cta-btn:hover {
    background: var(--color-primary-dark);
}

/* Main Content Area */
.author-section-header {
    margin-bottom: 35px;
}

.author-section-header h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.author-section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.author-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.author-post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.author-post-card:hover {
    transform: translateY(-5px);
}

.post-thumb-link {
    display: block;
    height: 220px;
    overflow: hidden;
}

.post-thumb-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.author-post-card:hover .post-thumb-link img {
    transform: scale(1.08);
}

.author-post-card .post-content {
    padding: 22px;
}

.author-post-card .post-meta {
    font-size: 11px;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.author-post-card h3 {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.author-post-card h3 a {
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.author-post-card h3 a:hover {
    color: var(--color-primary);
}

.author-post-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.author-post-card .read-more {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    text-transform: uppercase;
}

/* Pagination */
.author-posts-grid .pagination {
    grid-column: 1 / -1;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .author-profile-wrapper {
        grid-template-columns: 1fr;
        margin-top: -100px;
        padding: 0 20px;
    }

    .author-card {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }

    .author-section-header {
        text-align: center;
        margin-top: 30px;
    }

    .author-section-header h2 {
        color: var(--color-primary-dark);
    }

    .author-section-header p {
        color: var(--color-text-light);
    }
}

@media (max-width: 600px) {
    .author-posts-grid {
        grid-template-columns: 1fr;
    }

    .author-avatar {
        width: 140px;
        height: 140px;
    }

    .author-name {
        font-size: 22px;
    }
}

/* ========================================
   SSS (FAQ) SAYFA ŞABLONU
======================================== */
#sss-page {
    padding-bottom: 100px;
    background-color: #fcfcfc;
}

.sss-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 60px;
}

.sss-intro-text {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 50px;
    line-height: 1.6;
}

.sss-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 0;
    line-height: 1.4;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
}

.faq-icon::after {
    left: 9px;
    top: 0;
    width: 2px;
    height: 100%;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active {
    border-color: var(--color-primary-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.5s ease-in-out;
}

.faq-answer p {
    padding: 0 30px 30px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0;
}

.sss-footer-cta {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: var(--color-bg-light);
    border-radius: 20px;
}

.sss-footer-cta p {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .sss-wrapper {
        padding-top: 40px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }
}

/* ========================================
   RANDEVU AL SAYFA ŞABLONU
======================================== */
#randevu-page {
    background-color: #f8f9fa;
    padding-bottom: 0;
}

.randevu-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 80px 0;
}

/* Form Section */
.randevu-form-section {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.randevu-form-header {
    margin-bottom: 35px;
}

.randevu-form-header h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
}

.randevu-form-header p {
    color: var(--color-text-light);
    font-size: 15px;
}

.randevu-form-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.appointment-form-large .form-group {
    margin-bottom: 20px;
}

.appointment-form-large label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.appointment-form-large input,
.appointment-form-large select,
.appointment-form-large textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    background: #fcfcfc;
    transition: all 0.3s ease;
}

.appointment-form-large input:focus,
.appointment-form-large select:focus,
.appointment-form-large textarea:focus {
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 43, 90, 0.08);
    outline: none;
}

.btn-form-submit {
    width: 100%;
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-form-submit:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 43, 90, 0.2);
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-info-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 44px;
    height: 44px;
    background: var(--color-bg-light);
    color: var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.card-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.card-link:hover {
    color: var(--color-primary-dark);
}

.social-mini-list {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.social-mini-list a {
    color: var(--color-primary-light);
    transition: color 0.3s;
}

.social-mini-list a:hover {
    color: var(--color-primary);
}

#randevu-map iframe {
    display: block;
    filter: grayscale(0.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .randevu-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        order: -1;
        /* Kartları yukarı alabiliriz veya aşağıda tutabiliriz */
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .randevu-form-section {
        padding: 30px;
    }

    .randevu-form-section .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PAGINATION STYLES
======================================== */
.pagination-wrapper {
    margin-top: 50px;
    width: 100%;
}

.pagination-wrapper ul.page-numbers {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.pagination-wrapper ul.page-numbers li {
    display: inline-block;
}

.pagination-wrapper ul.page-numbers li a,
.pagination-wrapper ul.page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--color-border);
    color: var(--color-primary-dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-wrapper ul.page-numbers li span.current {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.pagination-wrapper ul.page-numbers li a:hover {
    background: var(--color-bg-light);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Category Page Specific */
.section-desc p {
    margin-bottom: 0;
}