/*!
Theme Name: Zeynep Atik
Theme URI: https://dkt.zeynepatik.com
Author: Özel Tasarım
Description: Zeynep Atik - Dil ve Konuşma Terapisti için özel tasarım WordPress teması. Yeşil-doğa tonları, SEO optimize.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.5
Requires PHP: 7.4
License: Private
Text Domain: zeynep-atik
Tags: one-column, two-columns, custom-logo, custom-menu, featured-images, full-width-template, threaded-comments, translation-ready
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    /* Ana Renkler */
    --clr-primary:       #1C5838;
    --clr-primary-hover: #144729;
    --clr-primary-mid:   #2D7A52;
    --clr-sage:          #6BAA8A;
    --clr-sage-light:    #A8CDB8;
    --clr-sage-pale:     #C8E4D4;

    /* Arka Plan Renkleri */
    --clr-cream:         #F7F4EF;
    --clr-green-light:   #EBF5EE;
    --clr-section-alt:   #F0F7F2;
    --clr-dark-section:  #0E2C1C;
    --clr-footer-bg:     #101F16;

    /* Metin Renkleri */
    --clr-dark:          #1A1A1A;
    --clr-body:          #4D4D4D;
    --clr-muted:         #888888;
    --clr-white:         #FFFFFF;

    /* Border */
    --clr-border:        #D0E8DC;
    --clr-border-light:  #E8F5EE;

    /* Tipografi */
    --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:   'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Boyutlar */
    --container-max: 1240px;
    --container-pad: clamp(1rem, 4vw, 2.5rem);

    /* Boşluklar */
    --sp-xs:  0.5rem;
    --sp-sm:  1rem;
    --sp-md:  2rem;
    --sp-lg:  4rem;
    --sp-xl:  7rem;

    /* Border Radius */
    --r-sm:   8px;
    --r-md:   16px;
    --r-lg:   32px;
    --r-full: 9999px;

    /* Gölgeler */
    --shadow-sm: 0 2px 8px rgba(28,88,56,.08);
    --shadow-md: 0 8px 32px rgba(28,88,56,.12);
    --shadow-lg: 0 20px 60px rgba(28,88,56,.18);

    /* Geçiş */
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--clr-body);
    background-color: var(--clr-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a { color: var(--clr-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-primary-hover); }
a:focus-visible { outline: 2px solid var(--clr-primary); outline-offset: 3px; border-radius: 3px; }

ul, ol { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

input, textarea, select {
    font-family: inherit;
    font-size: 1rem;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--r-sm);
    padding: .75rem 1.1rem;
    width: 100%;
    color: var(--clr-dark);
    background: var(--clr-white);
    transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--clr-sage);
    box-shadow: 0 0 0 3px rgba(107,170,138,.2);
}
textarea { min-height: 140px; resize: vertical; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--clr-dark);
    line-height: 1.25;
    font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

.lead {
    font-size: 1.15rem;
    color: var(--clr-body);
    line-height: 1.8;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--clr-primary);
    display: block;
    margin-bottom: .65rem;
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-family: var(--font-serif);
    color: var(--clr-dark);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.section-title-white { color: var(--clr-white); }

.section-desc {
    font-size: 1.05rem;
    color: var(--clr-body);
    max-width: 560px;
    line-height: 1.8;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.container-wide { max-width: 1400px; margin-inline: auto; padding-inline: var(--container-pad); }

.section {
    padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.section-sm { padding-block: clamp(2rem, 4vw, 3.5rem); }

.text-center { text-align: center; }
.text-white  { color: var(--clr-white) !important; }
.text-primary { color: var(--clr-primary) !important; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: .5rem; }
.gap-md { gap: 1.5rem; }

.bg-cream     { background-color: var(--clr-cream); }
.bg-green-light { background-color: var(--clr-green-light); }
.bg-section-alt { background-color: var(--clr-section-alt); }
.bg-primary   { background-color: var(--clr-primary); }
.bg-dark      { background-color: var(--clr-dark-section); }

/* Görünürlük animasyonu */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    font-family: var(--font-sans);
    font-size: .95rem;
    font-weight: 700;
    border-radius: var(--r-full);
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .02em;
}

.btn-primary {
    background: var(--clr-primary);
    color: var(--clr-white);
    border: 2px solid var(--clr-primary);
    box-shadow: 0 4px 16px rgba(28,88,56,.25);
}
.btn-primary:hover {
    background: var(--clr-primary-hover);
    border-color: var(--clr-primary-hover);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(28,88,56,.30);
}

.btn-outline {
    background: transparent;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
}
.btn-outline:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--clr-white);
    color: var(--clr-primary);
    border: 2px solid var(--clr-white);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    background: var(--clr-cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-sm { padding: .6rem 1.4rem; font-size: .875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ============================================================
   STICKY HEADER
   ============================================================ */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--clr-white);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
    border-bottom-color: var(--clr-border-light);
    box-shadow: 0 2px 20px rgba(28,88,56,.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 1.5rem;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: .8rem;
    flex-shrink: 0;
    text-decoration: none;
}

.site-logo .logo-mark {
    width: 46px;
    height: 46px;
    background: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.site-logo .logo-mark svg { width: 26px; height: 26px; fill: none; stroke: white; stroke-width: 1.5; }

.site-logo .logo-text { line-height: 1.2; }
.site-logo .logo-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-primary);
    display: block;
}
.site-logo .logo-subtitle {
    font-size: .7rem;
    color: var(--clr-muted);
    letter-spacing: .05em;
    display: block;
    text-transform: uppercase;
}

/* Primary Navigation */
#primary-nav { display: flex; align-items: center; }

#primary-nav ul {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
}

#primary-nav ul li a {
    display: block;
    padding: .5rem .9rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--clr-dark);
    border-radius: var(--r-sm);
    transition: all var(--transition);
    position: relative;
}
#primary-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: .9rem;
    right: .9rem;
    height: 2px;
    background: var(--clr-primary);
    transform: scaleX(0);
    transition: transform var(--transition);
    border-radius: 1px;
}
#primary-nav ul li a:hover,
#primary-nav ul li.current-menu-item a,
#primary-nav ul li.current_page_item a { color: var(--clr-primary); }
#primary-nav ul li a:hover::after,
#primary-nav ul li.current-menu-item a::after,
#primary-nav ul li.current_page_item a::after { transform: scaleX(1); }

.header-cta { margin-left: .75rem; }

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--clr-border);
    cursor: pointer;
    background: transparent;
    transition: all var(--transition);
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-dark);
    border-radius: 2px;
    transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    background-color: var(--clr-cream);
    overflow: hidden;
    min-height: clamp(520px, 88vh, 820px);
    display: grid;
    align-items: center;
}

.hero-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Botanical SVG decorations positioned absolutely */
.hero-bg-decor .leaf-tl {
    position: absolute;
    top: -20px;
    left: -10px;
    width: 220px;
    opacity: .22;
    color: var(--clr-primary);
}
.hero-bg-decor .leaf-br {
    position: absolute;
    bottom: -20px;
    right: 48%;
    width: 180px;
    opacity: .15;
    color: var(--clr-primary);
    transform: rotate(180deg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: inherit;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4rem) clamp(3rem, 6vw, 6rem) var(--container-pad);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
    max-width: 660px;
}

.hero-eyebrow {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--clr-primary);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    line-height: 1.1;
    color: var(--clr-dark);
}
.hero-title em {
    font-style: normal;
    color: var(--clr-primary);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--clr-body);
    line-height: 1.8;
    max-width: 420px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: stretch;
}
.hero-actions .btn {
    justify-content: center;
    text-align: center;
}

/* Hero Image - fotoğraf kutu içinde değil, bütünleşik */
.hero-image-wrap {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--clr-green-light) 0%, var(--clr-sage-pale) 100%);
    z-index: 0;
}

.hero-image-wrap .hero-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center top;
    /* Organic blend - sol tarafa yumuşak geçiş */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
    mask-image: linear-gradient(to right, transparent 0%, black 25%);
}

/* Eğer fotoğraf yoksa placeholder */
.hero-image-wrap.no-photo {
    background: linear-gradient(135deg, var(--clr-green-light), var(--clr-sage-pale));
    min-height: 480px;
}
.hero-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--clr-primary);
    opacity: .4;
}
.hero-image-placeholder svg { width: 80px; height: 80px; }
.hero-image-placeholder p { font-size: .85rem; font-weight: 600; text-align: center; }

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features {
    background: var(--clr-green-light);
    padding-block: clamp(2.5rem, 4vw, 3.5rem);
    border-top: 1px solid var(--clr-border-light);
    border-bottom: 1px solid var(--clr-border-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    text-align: center;
    padding: 1.75rem 1.5rem;
    background: var(--clr-white);
    border-radius: var(--r-md);
    border: 1px solid var(--clr-border-light);
    transition: all var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-sage-pale);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--clr-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--clr-primary);
    font-size: 1.4rem;
    transition: all var(--transition);
}
.feature-card:hover .feature-icon {
    background: var(--clr-primary);
    color: var(--clr-white);
}

.feature-card h3 {
    font-size: .95rem;
    font-weight: 700;
    font-family: var(--font-sans);
    color: var(--clr-dark);
    margin-bottom: .4rem;
}
.feature-card p {
    font-size: .85rem;
    color: var(--clr-muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   ABOUT SECTION (Ana Sayfa & Hakkımda)
   ============================================================ */
.about {
    background: var(--clr-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

/* Fotoğraf bütünleşik - kutu değil */
.about-photo-wrap {
    position: relative;
}

.about-photo-wrap::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    background: var(--clr-green-light);
    border-radius: var(--r-lg) var(--r-lg) 0 var(--r-lg);
    z-index: 0;
}

.about-photo-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: var(--r-md) var(--r-md) 0 var(--r-md);
    object-fit: cover;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
}

/* Eğer fotoğraf yoksa */
.about-photo-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--clr-green-light), var(--clr-sage-pale));
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    opacity: .5;
    position: relative;
    z-index: 1;
}
.about-photo-placeholder svg { width: 80px; }

.about-content {}

.about-content .therapist-name {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    color: var(--clr-primary);
    line-height: 1.2;
    margin-top: .25rem;
    margin-bottom: 1.1rem;
}

.about-content .about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem .85rem;
    background: var(--clr-green-light);
    color: var(--clr-primary);
    font-size: .78rem;
    font-weight: 700;
    border-radius: var(--r-full);
    border: 1px solid var(--clr-border);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
    background: var(--clr-cream);
}

.services-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(180px, 100%), 1fr));
    gap: 1rem;
}

.service-card {
    background: var(--clr-white);
    border: 1.5px solid var(--clr-border-light);
    border-radius: var(--r-md);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: all var(--transition);
    cursor: default;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-sage-pale);
    box-shadow: var(--shadow-md);
    background: var(--clr-white);
}
.service-card.featured {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
}
.service-card.featured .service-icon,
.service-card.featured h3 { color: var(--clr-white); }
.service-card.featured .service-icon { background: rgba(255,255,255,.15); }

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--clr-green-light);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .85rem;
    color: var(--clr-primary);
    font-size: 1.3rem;
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--clr-primary);
    color: var(--clr-white);
}
.service-card.featured:hover .service-icon { background: rgba(255,255,255,.25); }

.service-card h3 {
    font-family: var(--font-sans);
    font-size: .88rem;
    font-weight: 700;
    color: var(--clr-dark);
    line-height: 1.4;
}

.services-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ============================================================
   PARALLAX PHOTO SECTION (yazıların arkasına giren fotoğraf)
   ============================================================ */
.photo-section {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.photo-section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.photo-section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Eğer görsel yoksa placeholder gradient */
.photo-section-bg.no-photo {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-mid) 100%);
}

.photo-section-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(15, 40, 25, .92) 0%,
        rgba(15, 40, 25, .75) 55%,
        rgba(15, 40, 25, .45) 100%
    );
    z-index: 1;
}

.photo-section-content {
    position: relative;
    z-index: 2;
    color: var(--clr-white);
    padding-block: clamp(3rem, 5vw, 5rem);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    background: var(--clr-section-alt);
}

.testimonials-header { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--clr-white);
    border-radius: var(--r-md);
    padding: 1.75rem;
    border: 1px solid var(--clr-border-light);
    position: relative;
    transition: all var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: .5;
    color: var(--clr-sage-pale);
    position: absolute;
    top: 1.25rem;
    left: 1.75rem;
}

.testimonial-card blockquote {
    font-size: .95rem;
    color: var(--clr-body);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    padding-top: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
    border-top: 1px solid var(--clr-border-light);
    padding-top: 1rem;
}
.testimonial-author-avatar {
    width: 42px;
    height: 42px;
    background: var(--clr-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-serif);
    flex-shrink: 0;
}
.testimonial-author-info { line-height: 1.3; }
.testimonial-author-name { font-weight: 700; font-size: .88rem; color: var(--clr-dark); }
.testimonial-author-role { font-size: .78rem; color: var(--clr-muted); }

.stars { color: #f9a825; font-size: .85rem; margin-bottom: .75rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: var(--clr-primary);
    padding-block: clamp(2rem, 3.5vw, 3rem);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='29' stroke='white' stroke-opacity='0.04'/%3E%3C/svg%3E") repeat;
    background-size: 60px;
}

.cta-banner-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cta-banner-text .cta-eyebrow {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--clr-sage-pale);
    display: block;
    margin-bottom: .35rem;
}
.cta-banner-text h2 {
    color: var(--clr-white);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    line-height: 1.2;
}

.cta-banner-contacts {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-contact-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--clr-white);
    font-weight: 600;
    font-size: .95rem;
}
.cta-contact-item i { color: var(--clr-sage-pale); font-size: 1.1rem; }
.cta-contact-item small { display: block; font-size: .72rem; font-weight: 400; color: rgba(255,255,255,.7); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.contact-info-card {
    background: var(--clr-primary);
    border-radius: var(--r-lg);
    padding: 2.5rem 2rem;
    color: var(--clr-white);
}
.contact-info-card h2 { color: var(--clr-white); margin-bottom: .75rem; }
.contact-info-card p { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: .95rem; }

.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-info-item .icon-wrap {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,.15);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: .1rem;
}
.contact-info-item .info-text { color: rgba(255,255,255,.9); font-size: .9rem; line-height: 1.6; }
.contact-info-item .info-text strong { display: block; color: var(--clr-white); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .15rem; }
/* Koyu yeşil arka plan üzerinde link rengi (telefon, e-posta) */
.contact-info-item .info-text a { color: #A8D5BA; text-decoration: none; transition: color var(--transition); }
.contact-info-item .info-text a:hover { color: var(--clr-white); text-decoration: underline; }

.contact-social {
    display: flex;
    gap: .75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.15);
}
.contact-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.15);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 1rem;
    transition: all var(--transition);
}
.contact-social a:hover {
    background: var(--clr-white);
    color: var(--clr-primary);
}

.contact-form-wrap {
    background: var(--clr-white);
    border-radius: var(--r-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--clr-border-light);
    box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 { margin-bottom: .35rem; font-size: 1.8rem; }
.contact-form-wrap .form-subtitle { color: var(--clr-muted); margin-bottom: 1.5rem; font-size: .9rem; }

/* ── Sekme Navigasyon (Tab UI) ────────────────────────────── */
.form-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--clr-border-light);
}
.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 1rem;
    border: none;
    background: transparent;
    font-size: .9rem;
    font-weight: 600;
    color: var(--clr-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color var(--transition), border-color var(--transition);
    border-radius: 0;
    font-family: inherit;
}
.tab-btn:hover { color: var(--clr-primary); }
.tab-btn.active,
.tab-btn[aria-selected="true"] {
    color: var(--clr-primary);
    border-bottom-color: var(--clr-primary);
}
.tab-btn i { font-size: 1rem; }

/* Hızlı arama butonu (iletişim kartı alt kısmı) */
.contact-quick-call {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.15);
}
.contact-quick-call .btn-white {
    background: rgba(255,255,255,.15);
    color: var(--clr-white);
    border: 1.5px solid rgba(255,255,255,.35);
    transition: all var(--transition);
}
.contact-quick-call .btn-white:hover {
    background: var(--clr-white);
    color: var(--clr-primary);
    border-color: var(--clr-white);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .82rem; font-weight: 700; color: var(--clr-dark); letter-spacing: .03em; }

.form-submit { margin-top: .5rem; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-note {
    text-align: center;
    font-size: .78rem;
    color: var(--clr-muted);
    margin-top: .75rem;
}
.form-note i { color: var(--clr-primary); }

/* ============================================================
   APPOINTMENT PAGE
   ============================================================ */
.appointment-hero {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-mid));
    color: var(--clr-white);
    text-align: center;
    padding-block: clamp(3.5rem, 6vw, 5rem);
}
.appointment-hero h1 { color: var(--clr-white); }
.appointment-hero p  { color: rgba(255,255,255,.85); max-width: 520px; margin-inline: auto; font-size: 1.05rem; }

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.appointment-info {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.info-card {
    background: var(--clr-white);
    border: 1.5px solid var(--clr-border-light);
    border-radius: var(--r-md);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all var(--transition);
}
.info-card:hover { border-color: var(--clr-sage-pale); box-shadow: var(--shadow-sm); }
.info-card .icon-wrap {
    width: 46px;
    height: 46px;
    background: var(--clr-green-light);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.info-card-text h4 { font-family: var(--font-sans); font-size: .9rem; font-weight: 700; color: var(--clr-dark); }
.info-card-text p  { font-size: .85rem; color: var(--clr-muted); margin: .2rem 0 0; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page-hero {
    position: relative;
    overflow: hidden;
    background: var(--clr-cream);
    padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.about-page-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.education-section { background: var(--clr-green-light); }

.timeline { display: flex; flex-direction: column; gap: 1.5rem; }

.timeline-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.timeline-dot {
    width: 14px;
    height: 14px;
    background: var(--clr-primary);
    border-radius: 50%;
    margin-top: .35rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px var(--clr-sage-pale);
}
.timeline-content h4 { font-family: var(--font-sans); font-size: .95rem; font-weight: 700; color: var(--clr-dark); }
.timeline-content p  { font-size: .88rem; color: var(--clr-muted); margin: .2rem 0 0; }
.timeline-content .year {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    color: var(--clr-primary);
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--r-full);
    padding: .1rem .65rem;
    margin-bottom: .3rem;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.cert-item {
    background: var(--clr-white);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--r-md);
    padding: 1.25rem;
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    transition: all var(--transition);
}
.cert-item:hover { box-shadow: var(--shadow-sm); border-color: var(--clr-sage-pale); }
.cert-item i { color: var(--clr-primary); font-size: 1.1rem; margin-top: .1rem; flex-shrink: 0; }
.cert-item-text h4 { font-family: var(--font-sans); font-size: .88rem; font-weight: 700; color: var(--clr-dark); line-height: 1.3; }
.cert-item-text p  { font-size: .78rem; color: var(--clr-muted); margin: .2rem 0 0; }

/* ============================================================
   HIZMETLER (SERVICES) PAGE
   ============================================================ */
.hizmetler-hero {
    background: var(--clr-primary);
    padding-block: clamp(3.5rem, 6vw, 5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hizmetler-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.2) 0%, transparent 100%);
}
.hizmetler-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hizmetler-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .25;
}
.hizmetler-hero-content { position: relative; z-index: 1; color: var(--clr-white); }
.hizmetler-hero-content h1 { color: var(--clr-white); }
.hizmetler-hero-content p  { color: rgba(255,255,255,.85); max-width: 600px; margin-inline: auto; font-size: 1.05rem; }

.service-detail-card {
    background: var(--clr-white);
    border: 1.5px solid var(--clr-border-light);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.service-detail-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--clr-sage-pale);
    transform: translateY(-4px);
}
.service-detail-card-image {
    aspect-ratio: 16/9;
    background: var(--clr-green-light);
    position: relative;
    overflow: hidden;
}
.service-detail-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.service-detail-card:hover .service-detail-card-image img { transform: scale(1.04); }
.service-detail-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--clr-green-light) 0%, var(--clr-sage-pale) 100%);
    color: var(--clr-primary);
    font-size: 3rem;
    transition: color var(--transition);
}
.service-detail-card:hover .service-detail-card-image-placeholder {
    color: var(--clr-primary-mid)
    transition: color var(--transition);
}
.service-detail-card:hover .service-detail-card-image-placeholder {
    color: var(--clr-primary-mid);
}
.service-detail-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-detail-card-body h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.service-detail-card-body p  { font-size: .88rem; color: var(--clr-muted); flex: 1; margin-bottom: 1.25rem; }
.service-detail-card-body .btn { align-self: flex-start; }

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section { background: var(--clr-cream); }
.map-embed {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-sm);
}
.map-embed iframe { display: block; width: 100%; height: 400px; border: 0; }

/* map-wrapper: new fallback+iframe container */
.map-wrapper {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
    height: 420px;
}

/* ============================================================
   PAGE HERO (Generic)
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--clr-green-light), var(--clr-cream));
    padding-block: clamp(3rem, 5vw, 4.5rem);
    text-align: center;
    border-bottom: 1px solid var(--clr-border-light);
}
.page-hero h1 { margin-bottom: .5rem; }
.page-hero p { color: var(--clr-muted); max-width: 520px; margin-inline: auto; }

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--clr-muted);
    margin-bottom: 1rem;
}
.breadcrumb a { color: var(--clr-primary); }
.breadcrumb-sep { color: var(--clr-sage); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--clr-footer-bg);
    color: rgba(255,255,255,.7);
}

.footer-main {
    padding-block: clamp(3rem, 5vw, 4.5rem);
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    margin-bottom: 1.25rem;
}
.footer-brand .logo-mark {
    width: 42px;
    height: 42px;
    background: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-brand .logo-mark svg { width: 22px; height: 22px; fill: none; stroke: white; stroke-width: 1.5; }
.footer-brand .footer-logo-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.2;
}
.footer-brand .footer-logo-sub {
    font-size: .68rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.footer-brand .footer-desc { font-size: .88rem; line-height: 1.75; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: .6rem; }
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    transition: all var(--transition);
    text-decoration: none;
}
.footer-social a:hover { background: var(--clr-primary); color: var(--clr-white); }

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--clr-white);
    margin-bottom: 1.1rem;
}

.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a {
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: .35rem;
}
.footer-links a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--clr-sage);
    border-radius: 50%;
    flex-shrink: 0;
    transition: background var(--transition);
}
.footer-links a:hover { color: var(--clr-white); }
.footer-links a:hover::before { background: var(--clr-sage-light); }

.footer-contact-list { display: flex; flex-direction: column; gap: .85rem; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .88rem;
}
.footer-contact-item i { color: var(--clr-sage); font-size: .9rem; margin-top: .2rem; flex-shrink: 0; }
.footer-contact-item span { color: rgba(255,255,255,.7); line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,.7); text-decoration: none; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--clr-white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-block: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    font-size: .8rem;
}
.footer-bottom p { color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--clr-white); }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem var(--container-pad);
}
.error-code {
    font-family: var(--font-serif);
    font-size: clamp(6rem, 15vw, 12rem);
    line-height: 1;
    color: var(--clr-sage-pale);
    display: block;
    margin-bottom: .5rem;
}
.error-icon { font-size: 4rem; margin-bottom: 1rem; }

/* ============================================================
   WORDPRESS DEFAULT STYLES OVERRIDES
   ============================================================ */
.wp-block-image img { border-radius: var(--r-md); }
.aligncenter { text-align: center; }
.alignright { float: right; margin-left: 1.5rem; }
.alignleft  { float: left;  margin-right: 1.5rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .82rem; color: var(--clr-muted); text-align: center; margin-top: .5rem; }

/* Gutenberg Content */
.entry-content h2 { margin: 2rem 0 1rem; color: var(--clr-primary); }
.entry-content h3 { margin: 1.75rem 0 .75rem; }
.entry-content p  { margin-bottom: 1.25rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content li { margin-bottom: .4rem; }
.entry-content blockquote {
    border-left: 4px solid var(--clr-primary);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--clr-body);
}

/* Screen reader text */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    word-wrap: normal;
    white-space: nowrap;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--clr-primary);
    color: var(--clr-white);
    padding: .5rem 1rem;
    border-radius: 0 0 var(--r-sm) var(--r-sm);
    font-size: .88rem;
    font-weight: 700;
    z-index: 9999;
    transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* ============================================================
   RESPONSIVE — Kapsamlı Multi-Breakpoint Sistemi
   Breakpoints: 1200 | 1024 | 900 | 768 | 600 | 480 | 360
   ============================================================ */

/* ── Büyük Tablet: max 1200px ── */
@media (max-width: 1200px) {
    :root { --container-max: 1024px; }

    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
    .footer-main {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 2rem;
    }
    .services-detail-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Tablet: max 1024px ── */
@media (max-width: 1024px) {
    :root {
        --container-pad: 1.75rem;
        --section-pad:   clamp(3rem, 5vw, 4.5rem);
    }

    /* Hero: text daraltma */
    .hero-title { font-size: clamp(2.2rem, 5vw, 3.5rem); }
    .hero-content { padding-block: 3rem; }

    /* Özellikler: 2 sütun */
    .features-grid { grid-template-columns: repeat(2, 1fr); }

    /* Hizmetler kartı grid'i: 2 sütun */
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-detail-grid,
    .services-detail-grid { grid-template-columns: repeat(2, 1fr); }

    /* Yorumlar: 2 sütun */
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

    /* İletişim sayfası: tek sütun */
    .contact-page-grid { grid-template-columns: 1fr; }
    .contact-info-card { max-width: 100%; }

    /* Randevu: tek sütun */
    .appointment-grid { grid-template-columns: 1fr; }
    .appointment-info { flex-direction: row; flex-wrap: wrap; gap: 1rem; }
    .appointment-info .info-card { flex: 1 1 calc(50% - .5rem); }

    /* Footer: 2x2 */
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 3rem;
    }
    .footer-brand { grid-column: 1 / -1; }

    /* Hakkımda sayfası hero: tek sütun */
    .about-page-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-page-hero-grid .about-photo-wrap { order: -1; max-width: 360px; margin-inline: auto; }

    /* Sertifika grid: 1 sütun */
    .cert-grid { grid-template-columns: repeat(2, 1fr); }

    /* CTA banner */
    .cta-banner-inner {
        gap: 1.5rem;
    }
}

/* ── Geniş Mobil: max 900px ── */
@media (max-width: 900px) {
    /* Hero: tek sütun, fotoğraf alttan yukarı silinir */
    .hero-grid { grid-template-columns: 1fr; }
    .hero-content { max-width: 100%; padding: 3rem var(--container-pad) 2rem; }
    .hero-image-wrap {
        min-height: 300px;
        max-height: 460px;
        -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
                mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
    }
    .hero-actions { flex-wrap: wrap; gap: .75rem; }
    .hero-actions .btn { flex: 1 1 auto; min-width: 200px; justify-content: center; white-space: normal; word-break: break-word; text-align: center; }

    /* Hakkımda: tek sütun */
    .about-grid { grid-template-columns: 1fr; }
    .about-photo-wrap::before { display: none; }
    .about-grid .about-photo-wrap { order: -1; }
    .about-photo-wrap img { max-height: 380px; width: 100%; object-fit: cover; }

    /* Hizmetler hero başlık */
    .hizmetler-hero-content h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); }

    /* Section padding küçüt */
    section.section,
    .section { padding-block: clamp(2.5rem, 5vw, 4rem); }
}

/* ── Mobil: max 768px ── */
@media (max-width: 768px) {
    :root {
        --container-pad: 1.25rem;
    }

    /* ── Navigasyon ── */
    .menu-toggle { display: flex; }

    #primary-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--clr-white);
        border-bottom: 3px solid var(--clr-primary);
        padding: 1.25rem var(--container-pad) 1.75rem;
        box-shadow: 0 12px 32px rgba(0,0,0,.12);
        transform: translateY(-115%);
        transition: transform .3s cubic-bezier(.4,0,.2,1);
        z-index: 999;
        pointer-events: none;
        overflow-y: auto;
        max-height: calc(100dvh - 72px);
    }
    #primary-nav.open {
        transform: translateY(0);
        pointer-events: all;
    }
    #primary-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    #primary-nav ul li { width: 100%; }
    #primary-nav ul li a {
        display: block;
        font-size: 1rem;
        padding: .75rem .5rem;
        border-bottom: 1px solid var(--clr-border-light);
    }
    #primary-nav ul li:last-child a { border-bottom: 0; }
    #primary-nav ul li a::after { display: none; }
    #primary-nav ul li a.active-link { color: var(--clr-primary); font-weight: 700; }

    /* Randevu butonu header'da gizle (menüde zaten var) */
    .header-cta { display: none; }

    /* ── Layouts ── */
    .features-grid       { grid-template-columns: 1fr; }
    .testimonials-grid   { grid-template-columns: 1fr; }
    .services-grid       { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
    .service-detail-grid,
    .services-detail-grid { grid-template-columns: 1fr; }
    .footer-main         { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand        { grid-column: auto; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .cert-grid           { grid-template-columns: 1fr; }

    /* ── Footer ── */
    .footer-bottom { flex-direction: column; text-align: center; gap: .5rem; }
    .footer-bottom .footer-links { justify-content: center; }

    /* ── CTA Banner ── */
    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }
    .cta-banner-contacts {
        justify-content: center;
        flex-wrap: wrap;
        gap: .75rem;
    }
    .cta-banner-contact-item { justify-content: center; }

    /* ── Formlar ── */
    .form-row { grid-template-columns: 1fr; }

    /* iOS zoom önleme: input font-size >= 16px */
    input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]),
    textarea,
    select {
        font-size: 16px !important;
    }

    /* ── İletişim Sayfası ── */
    .contact-page-grid { gap: 1.5rem; }
    .contact-info-card { padding: 1.75rem 1.25rem; }
    .contact-social { margin-top: 1.25rem; padding-top: 1.25rem; }

    /* ── Randevu ── */
    .appointment-info { flex-direction: column; }
    .appointment-info .info-card { flex: none; }

    /* ── Hakkımda Sayfası ── */
    .about-page-hero-grid { grid-template-columns: 1fr; }
    .about-page-hero-grid .about-photo-wrap { max-width: 280px; margin-inline: auto; }
    .education-section .grid-2 { grid-template-columns: 1fr; }

    /* ── Photo Section ── */
    .photo-section { min-height: 340px; }
    .photo-section-content { padding-block: 3rem; }
    .photo-section-content h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .photo-section-content .btn-group { flex-direction: column; align-items: flex-start; }

    /* ── Sayfa Hero'ları ── */
    .appointment-hero,
    .hizmetler-hero,
    .about-page-hero { padding-block: clamp(2.5rem, 5vw, 3.5rem); }

    /* ── Breadcrumb ── */
    .breadcrumb { flex-wrap: wrap; justify-content: center; }

    /* ── Section Title ── */
    .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .section-eye { font-size: .72rem; }

    /* ── Harita ── */
    .map-embed iframe { height: 260px; }
    .map-wrapper { height: 260px; }

    /* ── Hero Butonları ── */
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; min-width: 0; white-space: normal; word-break: break-word; text-align: center; justify-content: center; }

    /* ── Hero ── */
    .hero-grid { grid-template-columns: 1fr; }
    .hero .hero-grid { grid-template-columns: 1fr; }

    /* ── Timeline (Hakkımda eğitim) ── */
    .timeline { gap: 1.25rem; }
    .timeline-item { gap: 1rem; }

    /* ── FAQ / Details ── */
    .faq-item summary { padding: 1rem; font-size: .92rem; }
}

/* ── Orta Mobil: max 600px ── */
@media (max-width: 600px) {
    /* Hizmetler 2 sütun → 1 sütun */
    .services-grid { grid-template-columns: 1fr; }

    /* Özellik kartları */
    .feature-card { flex-direction: row; align-items: flex-start; text-align: left; }
    .feature-card .feature-icon { margin-bottom: 0; }

    /* Testimonial kartları tam genişlik */
    .testimonial-card { padding: 1.5rem 1.25rem; }

    /* CTA banner contacts dikey */
    .cta-banner-contacts { flex-direction: column; align-items: center; }

    /* Footer linkleri wrap */
    .footer-links { flex-wrap: wrap; justify-content: center; }

    /* About badges wrap */
    .about-badges { gap: .35rem; }
    .badge { font-size: .72rem; padding: .25rem .65rem; }
}

/* ── Küçük Mobil: max 480px ── */
@media (max-width: 480px) {
    :root { --container-pad: 1rem; }

    /* Hero */
    .hero-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
    .hero-content { padding-block: 2rem; }
    .hero-desc { font-size: .9rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }

    /* Butonlar tam genişlik */
    .btn-lg { width: 100%; justify-content: center; }

    /* Photo section */
    .photo-section-content h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
    .photo-section-content .btn-group { gap: .5rem; }
    .photo-section-content .btn-group .btn { width: 100%; justify-content: center; }

    /* Hizmetler kartları */
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 1.25rem 1rem; }

    /* About */
    .about-content .therapist-name { font-size: 1.6rem; }

    /* Section */
    .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }
    .section-intro { font-size: .9rem; }

    /* Footer */
    .footer-main { padding-block: 2.5rem; gap: 1.75rem; }
    .footer-col-title { font-size: .85rem; }

    /* Randevu adımlar */
    .steps-grid, .process-grid { grid-template-columns: 1fr; }
    .step-number { width: 42px; height: 42px; font-size: 1rem; }

    /* Contact info card */
    .contact-info-card { padding: 1.5rem 1rem; border-radius: var(--r-md); }
    .contact-info-item { gap: .75rem; }

    /* Sertifika öğeleri */
    .cert-item { padding: 1rem; }
    .cert-item-text h4 { font-size: .82rem; }

    /* Harita */
    .map-embed iframe { height: 220px; }
    .map-wrapper { height: 220px; }

    /* Form */
    .contact-form-wrap { padding: 1.5rem 1rem; }
    .appointment-form-wrap { padding: 1.5rem 1rem; }
}

/* ── Çok Küçük Ekranlar: max 360px ── */
@media (max-width: 360px) {
    :root { --container-pad: .875rem; }

    .hero-title { font-size: clamp(1.5rem, 9vw, 2rem); }
    .btn { padding: .6rem 1.1rem; font-size: .82rem; }
    .header-inner { height: 64px; }
    #primary-nav { top: 64px; }

    .feature-card { padding: 1rem; }
    .service-card { padding: 1rem .875rem; }
}

/* ── Print Stili ── */
@media print {
    .site-header,
    .site-footer,
    .cta-banner,
    .menu-toggle,
    .photo-section,
    .btn,
    .contact-form-wrap,
    #form-status { display: none !important; }

    body { font-size: 12pt; color: #000; background: #fff; }
    a { color: #000; text-decoration: underline; }
    .container { max-width: 100%; padding: 0; }
}

/* ============================================================
   ANA SAYFA GALERİ (Kliniğimizden Görseller)
   Asimetrik masonry grid
   ============================================================ */
.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: .75rem;
    margin-top: 2rem;
}

.home-gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.home-gallery-item:nth-child(2) { grid-column: 3; grid-row: 1; }
.home-gallery-item:nth-child(3) { grid-column: 3; grid-row: 2; }
.home-gallery-item:nth-child(4) { grid-column: 1; grid-row: 3; }
.home-gallery-item:nth-child(5) { grid-column: 2; grid-row: 3; }
.home-gallery-item:nth-child(6) { grid-column: 3; grid-row: 3; }

.home-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-md);
    background: var(--clr-green-light);
    cursor: pointer;
    border: 1px solid var(--clr-border-light);
}

.home-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.home-gallery-item:hover img { transform: scale(1.07); }

.home-gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(28, 88, 56, 0);
    transition: background .3s ease;
    z-index: 1;
    pointer-events: none;
}
.home-gallery-item:hover::before { background: rgba(28, 88, 56, .35); }

.home-gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.6);
    font-size: 1.5rem;
    color: #fff;
    opacity: 0;
    z-index: 2;
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
}
.home-gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.home-gallery-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ============================================================
   GALERI SAYFASI (page-galeri.php)
   Temiz, ferah, kurumsal klinik hissi
   ============================================================ */
.galeri-hero {
    background: var(--clr-cream);
    border-bottom: 1px solid var(--clr-border-light);
    padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2rem, 3.5vw, 3rem);
    text-align: center;
}

.galeri-hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}
.galeri-hero-content h1 { color: var(--clr-dark); margin-bottom: .6rem; }
.galeri-hero-content p { color: var(--clr-muted); line-height: 1.8; font-size: .95rem; }

.galeri-count {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--clr-primary);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .85rem;
    border-radius: var(--r-full);
    margin-bottom: 1rem;
}

/* Ana Grid - 3 sutun, kare benzeri kartlar */
.galeri-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.galeri-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-md);
    background: var(--clr-cream);
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--clr-border-light);
    transition: box-shadow .3s ease, transform .25s ease, border-color .3s ease;
}
.galeri-item:hover {
    box-shadow: 0 12px 32px rgba(28, 88, 56, .15);
    transform: translateY(-4px);
    border-color: var(--clr-sage-pale);
}
.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}
.galeri-item:hover img { transform: scale(1.06); }

.galeri-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(28,88,56,0) 50%, rgba(28,88,56,.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}
.galeri-item:hover .galeri-item-overlay { opacity: 1; }

.galeri-item-overlay i {
    font-size: 1.75rem;
    color: #fff;
    transform: translateY(6px);
    transition: transform .3s ease;
}
.galeri-item:hover .galeri-item-overlay i { transform: translateY(0); }

/* Lightbox */
.lb-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(8, 20, 12, .93);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}
.lb-overlay.active { opacity: 1; pointer-events: all; }

.lb-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lb-inner img {
    max-width: 88vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--r-md);
    box-shadow: 0 24px 64px rgba(0,0,0,.6);
    display: block;
}

.lb-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 1.2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 10001;
}
.lb-close:hover { background: rgba(255,255,255,.28); }

.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 10001;
}
.lb-arrow:hover { background: rgba(255,255,255,.28); }
.lb-prev { left: 1.25rem; }
.lb-next { right: 1.25rem; }

.lb-caption {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.7);
    font-size: .82rem;
    text-align: center;
    max-width: 560px;
    padding: 0 1rem;
    z-index: 10001;
    pointer-events: none;
}

.lb-counter {
    position: absolute;
    top: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.6);
    font-size: .78rem;
    font-weight: 600;
    z-index: 10001;
    letter-spacing: .05em;
    pointer-events: none;
}

/* Galeri Responsive */
@media (max-width: 900px) {
    .home-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .home-gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
    .home-gallery-item:nth-child(2) { grid-column: 1; grid-row: 3; }
    .home-gallery-item:nth-child(3) { grid-column: 2; grid-row: 3; }
    .home-gallery-item:nth-child(4) { grid-column: 1; grid-row: 4; }
    .home-gallery-item:nth-child(5) { grid-column: 2; grid-row: 4; }
    .home-gallery-item:nth-child(6) { grid-column: 1 / 3; grid-row: 5; }

    .galeri-grid { grid-template-columns: repeat(2, 1fr); }
    .lb-prev { left: .5rem; }
    .lb-next { right: .5rem; }
}

@media (max-width: 600px) {
    .home-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .home-gallery-item,
    .home-gallery-item:nth-child(n) {
        grid-column: 1 !important;
        grid-row: auto !important;
        aspect-ratio: 4/3;
    }
    .galeri-grid { grid-template-columns: 1fr; }
    .lb-arrow { display: none; }
    .lb-inner img { max-width: 96vw; border-radius: var(--r-sm); }
}

/* ============================================================
   WHATSAPP FLOATING ACTION BUTTON
   ============================================================ */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 0 22px 0 0;
    border-radius: 100px;
    height: 56px;
    box-shadow: 0 6px 24px rgba(37,211,102,.38), 0 2px 8px rgba(0,0,0,.14);
    transition: transform .22s ease, box-shadow .22s ease;
    will-change: transform;
}
.whatsapp-fab:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 32px rgba(37,211,102,.48), 0 4px 12px rgba(0,0,0,.18);
    color: #fff;
    text-decoration: none;
}
.whatsapp-fab i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 1.65rem;
    flex-shrink: 0;
}
.whatsapp-fab-label {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
    white-space: nowrap;
}
@media (max-width: 600px) {
    .whatsapp-fab { padding: 0; width: 56px; border-radius: 50%; bottom: 20px; right: 16px; }
    .whatsapp-fab-label { display: none; }
}
