/* 
 * ODS Child Theme - Main Stylesheet 
 * Renkler: Açık Gök Mavisi (#8ECAE6) ve Okyanus Yeşili (#219EBC)
 */

:root {
    --primary-blue: #0F766E;
    /* Deep Teal / Koyu Teal */
    --primary-green: #14B8A6;
    /* Clinical Teal / Klinik Teal (Buton Rengi) */
    --primary-peach: #2DD4BF;
    /* Bright Teal / Parlak Vurgu */
    --light-bg-gradient: linear-gradient(135deg, #F0FDFA 0%, #E2E8F0 100%);
    /* Mint Wash -> Soft Slate */
    --dark-text: #042F2E;
    /* Deepest Teal - Okunabilirlik için */
    --light-text: #475569;
}

body {
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, sans-serif;
}

.page-header,
.sidebar .widget,
.site-main>* {
    margin-bottom: 0px !important;
}

/* Landing Page Şablonları için Full Width Desteği */
.page-template-lp1-template .grid-container,
.page-template-lp2-template .grid-container,
.page-template-lp3-template .grid-container,
.page-template-lp4-template .grid-container {
    max-width: 100% !important;
}

/* Header, Navigasyon iç alanlarını 1200px'de kesin sabitle (Tüm Sayfalar) */
.inside-header,
.inside-navigation {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

@media (min-width: 1025px) {

    .inside-header,
    .inside-navigation {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
    }

    .site-branding,
    .site-logo {
        flex-shrink: 0 !important;
    }

    .main-navigation {
        flex-grow: 1 !important;
    }

    .main-nav {
        display: flex !important;
        justify-content: flex-end !important;
    }

    .menu-bar-items {
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    /* RTL Header Yön Düzeltmesi */
    body.rtl .inside-header,
    body.rtl .inside-navigation {
        flex-direction: row !important;
    }
}

/* Top Bar - Full Width arka plan, içerik 1200px */
.ods-top-bar {
    width: 100% !important;
}

/* Top bar container: sadece ortalama, flex değil */
.ods-top-bar .ods-container {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* top-bar-inner: sol-sağ ayırma işini burada yapıyoruz */
.ods-top-bar .top-bar-inner {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
}

/* Landing Page Şablonları için İçerik Alanı Düzenlemesi (Yan yana dizilmeyi kesin olarak engeller) */
.page-template-lp1-template #page,
.page-template-lp2-template #page,
.page-template-lp3-template #page,
.page-template-lp4-template #page,
.page-template-lp1-template #content,
.page-template-lp2-template #content,
.page-template-lp3-template #content,
.page-template-lp4-template #content,
.page-template-lp1-template .site-main,
.page-template-lp2-template .site-main,
.page-template-lp3-template .site-main,
.page-template-lp4-template .site-main {
    display: block !important;
}

.page-template-lp1-template section,
.page-template-lp2-template section,
.page-template-lp3-template section,
.page-template-lp4-template section {
    width: 100% !important;
    float: none !important;
    display: block !important;
}

.site-content,
.inside-article,
.entry-content,
.site-main {
    padding: 0 !important;
    margin: 0 !important;
}

.inside-article {
    background: transparent !important;
}

.entry-header {
    display: none !important;
}

/* Anasayfadaki başlığı gizle */

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

.text-center {
    text-align: center;
}

/* ORTAK YARDIMCI SINIFLAR */
.sub-heading {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* TAM GENİŞLİK FIX */
.full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
}

/* ===================================== */
/* TOP-BAR (ÜST BİLGİ ALANI)             */
/* ===================================== */
.ods-top-bar {
    background: #f1f5f9;
    /* Gümüş / Açık Gri (Silver) */
    color: var(--dark-text);
    font-size: 0.85rem;
    padding: 8px 0;
    font-weight: 600;
}

/* .top-bar-inner genel - ods-top-bar içindeki !important kuralı zaten bunu yönetiyor */
.top-bar-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.ods-top-bar a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s;
}

.ods-top-bar a:hover {
    color: var(--primary-green);
}

.tb-divider {
    margin: 0 10px;
    opacity: 0.5;
}

.tb-left,
.tb-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tb-languages {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
    align-items: center;
}

.tb-languages li {
    display: flex;
    align-items: center;
}

.tb-languages li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-text);
}

.tb-languages img {
    width: 24px;
    height: auto;
    border-radius: 3px;
    display: block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tb-languages li.current-lang a {
    color: var(--primary-green);
}

/* ===================================== */
/* 0. HEADER DÜZENLEMELERİ               */
/* ===================================== */
.site-header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

/* ===================================== */
/* 0. HAREKETLİ RENKLER (MOVING COLORS)  */
/* ===================================== */
@keyframes flowBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.ods-animated-header {
    background: linear-gradient(-45deg,
            rgba(20, 184, 166, 0.15),
            rgba(45, 212, 191, 0.2),
            rgba(15, 118, 110, 0.05),
            rgba(16, 185, 129, 0.1)) !important;
    background-size: 400% 400% !important;
    animation: flowBG 15s ease infinite !important;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ods-animated-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    z-index: 1;
}

.ods-animated-header .ods-container {
    position: relative;
    z-index: 2;
}


.header-cta-btn {
    background: var(--primary-green) !important;
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(113, 192, 180, 0.3);
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
}

.header-cta-btn:hover {
    background: #59A398 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(113, 192, 180, 0.4);
    color: #ffffff !important;
    text-decoration: none;
}

.main-navigation .main-nav ul li a {
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-text);
    transition: color 0.3s;
    padding-left: 10px !important;
    padding-right: 14px;
}

.menu-item-has-children .dropdown-menu-toggle {
    display: inline-block;
    height: 100%;
    clear: both;
    padding-right: 10px;
    padding-left: 0 !important;
}

.main-navigation ul ul {
    background-color: rgb(255, 255, 255);
    padding: 10px;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, .1);
}

.main-navigation .main-nav ul li[class*="current-menu-"]>a,
.main-navigation .main-nav ul li:hover>a {
    color: var(--primary-green) !important;
}

/* ===================================== */
/* 1. HERO SECTION (Banner)              */
/* ===================================== */
.ods-hero-section {
    padding: 100px 0 80px;
    font-family: 'Inter', -apple-system, sans-serif;
    position: relative;
    z-index: 1;
}

/* Animasyonlu Renk Geçişi (Gradient Overlay) */
/* Arka plan akış animasyonu kaldırıldı, kullanıcı panelden yönetebilir */

@keyframes flowBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slider-main {
    position: relative;
    width: 100%;
    min-height: 600px;
    background: #f8fafc;
    /* Titremeyi önlemek için zemin rengi */
}

.hero-slide {
    display: none;
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    animation: fadeInSlide 0.8s ease-in-out;
}

.hero-slide.active {
    display: flex;
    align-items: center;
}

.hero-slide-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    width: 100%;
    padding: 100px 0;
}

.hero-left {
    flex: 0 0 50%;
    max-width: 50%;
    z-index: 2;
    min-width: 300px;
}

.hero-right {
    position: relative;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 50%;
    max-width: 50%;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-side-img {
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .hero-side-img {
        height: auto !important;
        max-height: 280px;
        width: 100%;
        border-radius: 20px;
    }
}


.hero-slide.full-bg {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-height: 550px;
}

.hero-slide.full-bg .hero-left {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    /* Box styles removed as per user request */
}

.hero-title {
    font-size: clamp(1.9rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--light-text);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-btn {
    background: var(--primary-green) !important;
    color: #fff !important;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(113, 192, 180, 0.4);
    display: inline-block;
    border: 2px solid transparent;
}

.hero-btn:hover {
    background: #59A398 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(113, 192, 180, 0.5);
    color: #fff !important;
    text-decoration: none;
}

.call-info {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 1rem;
    margin-top: 10px;
}

.hero-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
    padding-top: 25px;
}

.hero-features span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-features .check-icon {
    color: var(--primary-green);
    background: rgba(113, 192, 180, 0.15);
    padding: 3px 6px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-style: normal;
}

.hero-right {
    flex: 1 1 450px;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: flex-end;
}

.hero-image-slider {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

/* ===================================== */
/* 2. HİZMETLER SECTION (6 KART)         */
/* ===================================== */
.ods-services-section {
    padding: 80px 20px;
    background-color: #FAFAFA;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.services-header .section-title {
    margin-bottom: 0px;
    font-size: 2.6rem;
    color: var(--dark-text);
}

.button-outline {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s;
}

.button-outline:hover {
    background: var(--primary-green);
    color: #fff;
    text-decoration: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-item {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    text-align: left;
}

.service-item:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-green);
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-item h3 {
    font-size: 1.4rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-item p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.read-more {
    font-weight: 700;
    color: var(--dark-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--primary-blue);
    text-decoration: none;
}

/* ===================================== */
/* GÖRSEL AYIRICI BANT (VISUAL BREAK)    */
/* ===================================== */
.visual-break-banner {
    position: relative;
    background: var(--primary-blue);
    background-image: linear-gradient(120deg, var(--primary-blue), var(--primary-green));
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 1;
    background-image: radial-gradient(#ffffff 2px, transparent 2px);
    background-size: 30px 30px;
}

.visual-break-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.visual-break-content blockquote {
    font-size: 2.2rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ===================================== */
/* EĞİTİM & KAMPANYA SECTION (CPT)       */
/* ===================================== */
.ods-campaign-section {
    padding: 80px 20px;
    background-color: #F8FBFC;
}

.campaign-wrap {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.campaign-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.campaign-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.campaign-content {
    flex: 1;
    text-align: left;
}

.campaign-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.campaign-text {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.campaign-btn {
    display: inline-block;
    background: var(--primary-green) !important;
    color: #fff !important;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(113, 192, 180, 0.3);
}

.campaign-btn:hover {
    background: #59A398 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(113, 192, 180, 0.4);
    text-decoration: none;
    color: #fff;
}

/* ===================================== */
/* 3. SÜREÇ SECTION (PROCESS)            */
/* ===================================== */
.ods-process-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

@media (min-width: 993px) {
    .process-steps::before {
        content: '';
        position: absolute;
        top: 35px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: #e2e8f0;
        z-index: 1;
    }
}

.step-item {
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--light-bg-gradient);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 0 0 10px #fff;
}

.step-title {
    font-size: 1.25rem;
    color: #3b2b2b;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-item p {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.6;
}

/* ===================================== */
/* 4. GÜNCEL YAZILAR (BLOG) SECTION      */
/* ===================================== */
.ods-blog-section {
    padding: 80px 20px;
    background-color: #f7fbfd;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s;
    border: 1px solid #f1f5f9;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: #f8fafc;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    border-bottom: 1px solid #f1f5f9;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px;
}

.blog-categories {
    margin-bottom: 15px;
    font-size: 0.85rem;
    font-weight: 700;
}

.blog-categories a {
    color: var(--primary-green);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--primary-blue);
}

.blog-excerpt {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ods-blog-section .read-more {
    font-weight: 700;
    color: var(--primary-blue);
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    text-decoration: none;
}

.ods-blog-section .read-more:hover {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

/* ===================================== */
/* 5. PREFOOTER & FOOTER                 */
/* ===================================== */
.ods-prefooter {
    background: linear-gradient(-45deg, var(--primary-blue), var(--primary-green), var(--primary-peach), var(--primary-blue));
    background-size: 400% 400%;
    animation: flowBG 15s ease infinite;
    padding: 70px 20px;
    color: #fff;
    box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.03);
}

.prefooter-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.prefooter-text {
    font-size: 1.15rem;
    color: #f0fdf4;
    margin-bottom: 0px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.prefooter-custom-btn {
    display: inline-block;
    background: #ffffff !important;
    color: var(--primary-green) !important;
    padding: 18px 45px;
    border-radius: 40px;
    font-size: 1.15rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.prefooter-custom-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    color: var(--primary-blue) !important;
    text-decoration: none;
}

.ods-footer {
    background: #1a2a30;
    color: #cbd5e1;
    padding: 60px 20px 20px;
    font-family: 'Inter', -apple-system, sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.brand-col p {
    line-height: 1.7;
    max-width: 400px;
    font-size: 0.95rem;
    color: #94a3b8;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.links-col ul li a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.contact-col p {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-col a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
}

/* ===================================== */
/* 6. İÇ SAYFA HEADER (Page Header)      */
/* ===================================== */

.ods-page-header .page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.ods-page-header .page-subtitle {
    font-size: 1.15rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.ods-page-header {
    background-color: #f8fafc;
    padding: 100px 0 80px;
    font-family: 'Inter', -apple-system, sans-serif;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
}

/* Animasyonlu Renk Geçişi (Professional Teal/Slate) */
.ods-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08) 0%, rgba(15, 118, 110, 0.05) 50%, rgba(248, 250, 252, 1) 100%);
    z-index: -1;
}

.ods-page-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.05) 0%, transparent 70%);
    z-index: -1;
}


/* ===================================== */
/* 7. RANDEVU SAYFASI (Appointment)      */
/* ===================================== */
.ods-appointment-section {
    padding: 80px 20px;
    background: #ffffff;
}

.appointment-wrapper {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 60px;
    align-items: flex-start;
}

.appointment-info {
    flex: 1;
}

.appointment-info h2 {
    font-size: 2.2rem;
    color: var(--dark-text);
    margin-bottom: 25px;
    line-height: 1.3;
}

.contact-details-box {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.detail-item .d-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg-gradient);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.detail-item .d-text {
    line-height: 1.5;
    color: var(--light-text);
}

.appointment-form-box {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

/* ===================================== */
/* 8. SSS (FAQ)                          */
/* ===================================== */
.ods-faq-section {
    width: 100vw;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 100px 20px;
    background: #fff;
    min-height: 50vh;
    box-sizing: border-box;
}

.ods-faq-section .ods-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(125, 120, 152, 0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--dark-text);
}

.faq-toggle-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--light-bg-gradient);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: '';
    position: absolute;
    background: var(--primary-green);
    transition: transform 0.3s;
}

.faq-toggle-icon::before {
    width: 14px;
    height: 2px;
}

.faq-toggle-icon::after {
    width: 2px;
    height: 14px;
}

.faq-item.active .faq-toggle-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    display: none;
    padding: 22px 35px 30px;
    color: #64748b;
    line-height: 1.8;
    font-size: 1.05rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    background: linear-gradient(to bottom, #fcfdff, #ffffff);
    margin-top: 0;
}

.faq-answer p {
    margin-bottom: 0px !important;
}

/* ===================================== */
/* 10. LANDING PAGE (LP) TASARIMI         */
/* ===================================== */
.ods-hero-lp-section {
    padding: 100px 20px 80px;
    min-height: 550px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* LP'ler için de akan arka plan animasyonu */
.ods-hero-lp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 400% 400%;
    animation: flowBG 15s ease infinite;
    z-index: -1;
    opacity: 0.5;
}

/* Renk Bazlı Animasyonlu Gradyanlar */
.hero-lp-blue::before {
    background-image: linear-gradient(-45deg, #F0F7FF, #E3F2FD, #E1F5FE, #F0F7FF);
}

.hero-lp-green::before {
    background-image: linear-gradient(-45deg, #F0FAF0, #E8F5E9, #F1F8E9, #F0FAF0);
}

.hero-lp-red::before {
    background-image: linear-gradient(-45deg, #E0F2F1, #B2DFDB, #80CBC4, #E0F2F1);
}

.hero-lp-yellow::before {
    background-image: linear-gradient(-45deg, #F1F8E9, #DCEDC8, #C5E1A5, #F1F8E9);
}

.lp-hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.lp-hero-left {
    flex: 1.2;
    z-index: 2;
    text-align: left;
}

.lp-hero-right {
    flex: 0.8;
    max-width: 480px;
    z-index: 2;
}

.lp-subtitle {
    display: block;
    font-size: 1.15rem;
    color: var(--primary-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.lp-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.lp-description {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 30px;
}

.lp-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
    padding-top: 25px;
    margin-bottom: 35px;
}

.lp-features span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-features .check-icon {
    color: var(--primary-green);
    background: rgba(113, 192, 180, 0.15);
    padding: 3px 6px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-style: normal;
}

.lp-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lp-btn {
    background: var(--primary-green) !important;
    color: #fff !important;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(113, 192, 180, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.lp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(113, 192, 180, 0.5);
    color: #fff !important;
}

/* Form Kutusu Premium Görünüm */
.lp-form-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
}

.lp-form-box h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--dark-text);
}

.lp-form-box p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 25px;
}

.lp-form-box label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-text);
}

@media (max-width: 992px) {
    .ods-hero-lp-section {
        padding: 60px 20px;
    }

    .lp-hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .lp-actions {
        justify-content: center;
    }

    .lp-features {
        justify-content: center;
    }

    .lp-hero-right {
        width: 100%;
        max-width: 100%;
    }

    .lp-title {
        font-size: 2.8rem;
    }
}

/* CF7 Form Özelleştirme */
.lp-form-box .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-top: 5px;
    margin-bottom: 0;
    background: #f8fafc;
}

.lp-form-box .wpcf7-submit {
    width: 100%;
    background: var(--primary-blue);
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.lp-form-box .wpcf7-submit:hover {
    background: var(--dark-text);
}

/* ===================================== */
/* 9. ÖZEL POPUP (CUSTOM POST TYPE)      */
/* ===================================== */
.ods-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.ods-popup-overlay.show-popup {
    opacity: 1;
    visibility: visible;
}

.ods-popup-box {
    background: #fff;
    width: 90%;
    max-width: 550px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transform: translateY(30px);
    transition: transform 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.ods-popup-overlay.show-popup .ods-popup-box {
    transform: translateY(0);
}

.ods-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ods-popup-close:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: rotate(90deg);
}

.popup-image {
    background: #f8fafc;
    text-align: center;
    flex-shrink: 0;
}

.popup-image img {
    width: 100%;
    height: auto;
    max-height: 45vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.popup-content-wrap {
    padding: 30px;
    text-align: center;
    overflow-y: auto;
}

.popup-content-wrap h3 {
    font-size: 1.6rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.popup-text {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.popup-btn {
    display: inline-block;
    background: var(--primary-green) !important;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    border: none;
}

.popup-btn:hover {
    background: #59A398 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(113, 192, 180, 0.4);
    text-decoration: none;
}

/* ===================================== */
/* RESPONSIVE (MOBİL UYUMLULUK)          */
/* ===================================== */
@media (max-width: 1100px) {
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .appointment-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .appointment-form-box {
        width: 100%;
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-right {
        width: 100%;
        height: 400px;
        display: flex;
        justify-content: center;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .visual-break-content blockquote {
        font-size: 1.8rem;
    }

    .campaign-wrap {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .campaign-content {
        text-align: center;
    }

    .campaign-title {
        font-size: 2.2rem;
    }

    /* Paddingleri Düşürdük */
    .ods-hero-section {
        padding: 60px 20px;
    }

    .ods-services-section,
    .ods-process-section,
    .ods-blog-section,
    .ods-campaign-section,
    .visual-break-banner {
        padding: 50px 20px;
    }

    .ods-prefooter {
        padding: 50px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-right {
        height: 300px;
    }

    .services-header .section-title {
        font-size: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .visual-break-content blockquote {
        font-size: 1.5rem;
    }

    .prefooter-title {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .brand-col p {
        margin: 0 auto;
    }

    /* Mobil Header Ayarları */
    .header-cta-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        margin-left: auto;
        margin-right: 15px;
        /* Hamburger butonu ile aradaki mesafe */
    }

    /* Mobil Top Bar Ayarları */
    .ods-top-bar .top-bar-inner {
        flex-direction: column !important;
        gap: 6px !important;
        text-align: center !important;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .tb-divider {
        display: none;
    }

    /* Mobilde sol tarafı gizle, sadece iletişim bilgisi kalsın */
    .tb-left {
        display: none !important;
    }

    .tb-right {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }

    .tb-languages {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Hakkımda Sayfa Üstü Mobil */
    .about-header-flex {
        flex-direction: column;
        text-align: center;
        gap: 30px !important;
    }

    .about-profile-col {
        margin: 0 auto;
    }

    .header-badges {
        justify-content: center;
    }
}

/* ===================================== */
/* HAKKIMDA (ABOUT) SAYFASI ÖZEL TASARIM */
/* ===================================== */
.about-hero-img:hover {
    transform: rotate(0deg) !important;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06) !important;
}

.about-timeline {
    position: relative;
    padding: 20px 0;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    /* Center alignment with the vertical line */
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 0 6px #fff;
    transition: transform 0.3s ease, background 0.3s;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    background: var(--primary-blue);
}

.timeline-date {
    display: inline-block;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin: 0 0 5px;
    color: var(--dark-text);
    font-weight: 700;
}

.timeline-school {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 1rem;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .about-intro-wrap {
        flex-direction: column;
        text-align: center;
    }

    .about-intro-wrap .about-quote {
        text-align: left;
    }
}

/* ===================================== */
/* MAKALE / YAZI FORMATLARI (TYPOGRAPHY) */
/* ===================================== */
.format-standard-content,
.entry-content {
    color: #334155;
}

.entry-content.text-center img {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 10px solid #fff;
    border-radius: 4px;
    max-width: 90% !important;
    transition: transform 0.3s ease;
}

.entry-content.text-center img:hover {
    transform: scale(1.01);
}

.format-standard-content h2,
.entry-content h2,
.format-standard-content h3,
.entry-content h3 {
    margin-top: 60px;
    margin-bottom: 25px;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1.2;
    position: relative;
    padding-left: 25px;
}

.format-standard-content h2::before,
.entry-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 6px;
    background: var(--primary-green);
    border-radius: 10px;
}

.format-standard-content h3::before,
.entry-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--primary-blue);
    border-radius: 10px;
    opacity: 0.6;
}

.format-standard-content p,
.entry-content p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    line-height: 1.8;
}

.format-standard-content ul,
.entry-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 35px;
}

.format-standard-content ul li,
.entry-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.format-standard-content ul li::before,
.entry-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 800;
}

.format-standard-content a,
.entry-content a {
    color: var(--primary-green);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
}

.format-standard-content a:hover,
.entry-content a:hover {
    color: var(--primary-blue);
}

.format-standard-content blockquote,
.entry-content blockquote {
    border-left: 8px solid var(--primary-green);
    padding: 30px 40px;
    margin: 50px 0;
    background: #f0fdfa;
    font-style: normal;
    border-radius: 0 20px 20px 0;
    font-size: 1.25rem;
    color: #0f766e;
    line-height: 1.7;
    font-weight: 500;
}


.format-standard-content img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
    max-width: 100%;
    height: auto;
}

/* ===================================== */
/* HİZMETLER (SERVICES) KART ANİMASYONLARI*/
/* ===================================== */
.hizmet-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
}

.hizmet-card:hover .hizmet-img-wrap img {
    transform: scale(1.05) !important;
}

/* ===================================== */
/* MODERN BLOG TASARIMI                  */
/* ===================================== */
.featured-blog-post {
    display: flex;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    margin-bottom: 60px;
    transition: transform 0.4s;
    border: 1px solid #f1f5f9;
}

.featured-blog-post:hover {
    transform: translateY(-5px);
}

.featured-image {
    flex: 1 1 55%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: transform 0.6s ease;
}

.featured-blog-post:hover .featured-image img {
    transform: scale(1.05);
}

.featured-content {
    flex: 1 1 45%;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cat-tag {
    display: inline-block;
    background: var(--light-bg-gradient);
    color: var(--primary-green);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    margin-bottom: 20px;
}

.featured-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.featured-excerpt {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 30px;
}

.modern-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.modern-blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.modern-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modern-blog-card:hover .card-img-wrap img {
    transform: scale(1.05);
}

.floating-cat {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-green);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    backdrop-filter: blur(5px);
}

.card-content {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1.3;
    margin-bottom: 15px;
}

.card-excerpt {
    color: var(--light-text);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.read-more-link {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.3s;
}

.read-more-link:hover {
    color: var(--primary-green);
}

.card-date {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .featured-blog-post {
        flex-direction: column;
    }

    .featured-image {
        min-height: 300px;
        flex: none;
    }

    .featured-content {
        padding: 40px 30px;
    }

    /* Özel flex kolonları için mobil yönlendirme (İç içe binmeyi engeller) */
    .header-content-left,
    .header-image-right,
    .egitim-content-area,
    .egitim-registration-box,
    .appointment-form-box,
    .appointment-info-card,
    .appointment-widget-box,
    .contact-info-col,
    .contact-form-col {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        margin-bottom: 25px;
    }

    /* Padding Daraltmaları */
    .single-split-header,
    .hizmet-detail-section,
    .ods-appointment-section,
    .ods-page-header,
    .contact-split-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    /* Boşlukları (Gap) Kontrol Etme */
    .ods-container>div[style*="gap"],
    .appointment-wrapper,
    .contact-grid {
        gap: 20px !important;
    }

    /* Yazı Puntosu */
    .entry-title,
    .page-title,
    h1 {
        font-size: 2.2rem !important;
        margin-bottom: 15px !important;
        line-height: 1.2 !important;
    }

    /* Kart İç İçe Padding */
    .appointment-info-card,
    .appointment-widget-box,
    .contact-form-col,
    .egitim-registration-box>div,
    .egitim-content-area>div {}
}

/* ===================================== */
/* MODERN SEARCH & 404 STYLES            */
/* ===================================== */

/* Global Search Form Styling */
.ods-search-container .search-form {
    display: flex;
    background: #fff;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    max-width: 600px;
    margin: 0 auto;
}

.ods-search-container .search-form:focus-within {
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.ods-search-container .search-field {
    flex: 1;
    border: none !important;
    background: transparent !important;
    padding: 12px 25px !important;
    font-size: 1.05rem !important;
    color: var(--dark-text) !important;
    outline: none !important;
}

.ods-search-container .search-submit {
    background: var(--primary-blue) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 0 25px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ods-search-container .search-submit:hover {
    background: var(--primary-green) !important;
    transform: scale(1.05);
}

/* 404 Page Specifics */
.error-404-wrap {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
    background: var(--light-bg-gradient);
}

.error-404-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 800px;
}

.massive-404 {
    font-size: clamp(150px, 25vw, 400px);
    font-weight: 900;
    color: rgba(125, 120, 152, 0.05);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    letter-spacing: -10px;
    pointer-events: none;
    line-height: 1;
}

.error-404-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--dark-text);
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.error-404-content p {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 45px;
    max-width: 600px;
    margin-inline: auto;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Search Results Enhancements */
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.search-result-header {
    padding: 120px 20px 80px;
    text-align: center;
    background: var(--light-bg-gradient);
    position: relative;
    overflow: hidden;
}

.search-result-header .sub-heading {
    color: var(--primary-green);
    font-weight: 800;
    letter-spacing: 2px;
}

.search-result-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--dark-text);
    margin: 20px 0;
}

.search-no-results {
    padding: 100px 20px;
    text-align: center;
}

.search-no-results i {
    font-size: 5rem;
    color: var(--primary-peach);
    margin-bottom: 30px;
    opacity: 0.5;
}

@media (max-width: 768px) {

    /* Header & Navigation Fixes */
    .menu-toggle:not(:first-child),
    .main-navigation .menu-toggle:nth-child(2) {
        display: none !important;
    }

    .site-logo {
        margin: 0 auto !important;
        max-width: 180px !important;
    }

    /* Scientific Grid & Gallery Fixes */
    .scientific-grid-layout,
    .wp-block-gallery,
    .press-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .scientific-item,
    .press-card {
        max-width: 100% !important;
    }

    /* Top Bar Mobile Optimization */
    .top-bar-ods .ods-container {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .tb-left,
    .tb-right {
        justify-content: center;
        width: 100%;
    }

    .tb-phone-box {
        font-size: 0.85rem;
    }

    /* Typography & Spacing */
    .entry-title {
        font-size: 2.2rem !important;
    }

    .single-split-header {
        padding: 40px 15px !important;
    }

    .header-image-right {
        margin-top: 30px;
        flex-basis: 100% !important;
    }

    .search-results-grid {
        grid-template-columns: 1fr;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .button {
        width: 100%;
    }
}

/* --- Layout Helpers --- */

/* 4-lü Yan Yana Görsel Izgarası */
.ods-grid-4 {
    display: flex !important;
    gap: 20px;
    flex-wrap: nowrap;
    margin: 40px 0;
}

.ods-grid-4 figure,
.ods-grid-4 .wp-block-image {
    flex: 1;
    margin: 0 !important;
}

.ods-grid-4 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Profesyonel İkiye Bölünmüş İçerik Satırı */
.ods-split-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.ods-split-row .split-col {
    flex: 1 1 400px;
}

.ods-split-row.reverse {
    flex-direction: row-reverse;
}

.ods-split-row img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.ods-split-row h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .ods-grid-4 {
        flex-wrap: wrap !important;
    }

    .ods-grid-4 figure,
    .ods-grid-4 .wp-block-image {
        flex: 1 1 45% !important;
    }

    .ods-split-row {
        gap: 30px;
    }
}

/* ===================================== */
/* TRUST STRIP SECTION                   */
/* ===================================== */
.trust-strip-section {
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    padding: 25px 0;
}

.trust-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
}

.trust-icon {
    color: var(--primary-green);
    background: rgba(20, 184, 166, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================================== */
/* INTERNATIONAL SERVICES SECTION        */
/* ===================================== */
.intl-services-section {
    padding: 100px 0;
    background: #f8fafc;
}

.intl-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: var(--primary-green) !important;
}

/* ===================================== */
/* COST & PACKAGE SECTION                */
/* ===================================== */
.cost-package-section {
    padding: 100px 0;
    background: #fff;
}

.package-card:hover {
    transform: scale(1.02);
    border-color: var(--primary-green) !important;
}

.package-features ul li {
    font-size: 1rem;
    color: var(--light-text);
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

/* ============================================= */
/* MOBİL UYUMLULUK EK DÜZELTMELERİ (10 Haz 2026) */
/* ============================================= */

/* Hero - Mobil tam kontrol */
@media (max-width: 768px) {
    .ods-hero-section {
        padding: 0 !important;
    }

    .hero-slide-flex {
        flex-direction: column !important;
        padding: 50px 15px !important;
        gap: 30px !important;
        align-items: flex-start !important;
    }

    .hero-left,
    .hero-right {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        min-width: unset !important;
        width: 100% !important;
    }

    .hero-right {
        height: auto !important;
        justify-content: center !important;
    }

    .hero-actions {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .hero-btn {
        width: 100% !important;
        text-align: center !important;
    }

    .hero-features {
        gap: 12px !important;
    }

    /* Slider kontrolleri büyüt - dokunulabilir hedef ≥44px */
    .hero-prev,
    .hero-next {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.2rem !important;
    }
}

/* Paket Kartları - Mobil Tek Sütun */
@media (max-width: 900px) {
    .pkg-cards-grid {
        grid-template-columns: 1fr !important;
        max-width: 500px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .pkg-card--featured {
        order: -1 !important;
        /* Öne çıkan kartı en üste al */
    }
}

@media (max-width: 480px) {
    .pkg-cards-grid {
        max-width: 100% !important;
    }

    .pkg-card {
        padding: 24px 20px !important;
    }
}

/* Campaign Section - Küçük Mobil Gap */
@media (max-width: 480px) {
    .campaign-wrap {
        gap: 25px !important;
    }

    .campaign-title {
        font-size: 1.8rem !important;
    }
}

/* Visual Break Banner - Küçük Ekran */
@media (max-width: 480px) {
    .visual-break-content blockquote {
        font-size: 1.2rem !important;
        line-height: 1.6 !important;
    }
}

/* Blog Sayfası Öne Çıkan Görsel */
@media (max-width: 768px) {
    .featured-image {
        min-height: 220px !important;
        height: 220px !important;
    }

    .featured-image img {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .featured-title {
        font-size: 1.6rem !important;
    }
}

/* Prefooter - Küçük Ekran */
@media (max-width: 480px) {
    .prefooter-title {
        font-size: 1.5rem !important;
    }

    .prefooter-custom-btn {
        padding: 15px 30px !important;
        font-size: 1rem !important;
        width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    .ods-prefooter {
        padding: 50px 20px !important;
        text-align: center !important;
    }
}

/* SSS (FAQ) - Küçük Ekran */
@media (max-width: 480px) {
    .faq-question h4 {
        font-size: 1rem !important;
    }

    .faq-answer {
        padding: 16px 20px 24px !important;
        font-size: 0.95rem !important;
    }
}

/* Process Section - Küçük Ekran */
@media (max-width: 480px) {
    .step-number {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.3rem !important;
    }

    .step-title {
        font-size: 1.1rem !important;
    }
}

/* Footer - Küçük Ekran */
@media (max-width: 480px) {
    .footer-logo {
        font-size: 1.4rem !important;
    }

    .ods-footer {
        padding: 40px 15px 20px !important;
    }

    .links-col ul li a,
    .contact-col a,
    .contact-col p {
        font-size: 0.9rem !important;
    }
}

/* ==========================================================================
   WORDPRESS EDITOR (THE_CONTENT) ÖZEL LAYOUT SINIFLARI
   ========================================================================== */

/* 1. Yarı Yarıya Bölünmüş Alanlar (Görsel Solda/Sağda) */
.ods-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 60px 0;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* WordPress wpautop grid kırılma koruması (Agresif Koruma) */
.ods-split-layout>*:not(.split-text):not(.split-image),
.ods-grid-3>*:not(.ods-grid-item) {
    display: none !important;
}

.ods-split-layout.bg-gray {
    background: #f8fafc;
}

.ods-split-layout.bg-blue {
    background: #E6F4FA;
}

.ods-split-layout.image-left {
    /* Normal sıra */
}

.ods-split-layout.image-right {
    /* Görsel sağda */
}

.ods-split-layout.image-right .split-text {
    order: 1;
}

.ods-split-layout.image-right .split-image {
    order: 2;
}

.ods-split-layout .split-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ods-split-layout .split-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.ods-split-layout .split-text {
    padding: 40px;
}

.ods-split-layout .split-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.ods-split-layout .split-text p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .ods-split-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ods-split-layout .split-text {
        padding: 30px 20px;
    }

    .ods-split-layout .split-image {
        padding: 20px;
    }

    .ods-split-layout.image-right .split-text {
        order: 2;
    }

    .ods-split-layout.image-right .split-image {
        order: 1;
    }
}

/* 2. Görsel & Başlık Izgarası (3'lü ve 4'lü Seçenekler) */
.ods-grid-3,
.ods-grid-4 {
    display: grid;
    gap: 30px;
    margin: 60px 0;
}

.ods-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.ods-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.ods-grid-item {
    text-align: center;
    text-decoration: none;
    display: block;
    group: item;
}

.ods-grid-item-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    /* aspect-ratio: 4/3; yerine doğal boyutu korumasına izin veriyoruz ki resimler kesilmesin */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.ods-grid-item-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
    display: block;
}

.ods-grid-item:hover .ods-grid-item-img-wrapper {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ods-grid-item:hover .ods-grid-item-img-wrapper img {
    transform: scale(1.05);
}

.ods-grid-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
    transition: color 0.3s ease;
    border-left: none !important;
    /* Global başlıklardaki yeşil çizgiyi iptal et */
    padding-left: 0 !important;
    /* Global başlıklardaki boşluğu iptal et */
    display: block;
}

.ods-grid-item:hover h3 {
    color: var(--primary-green);
}

@media (max-width: 992px) {
    .ods-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .ods-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ods-grid-4 {
        grid-template-columns: 1fr;
    }

    .ods-grid-3 {
        grid-template-columns: 1fr;
    }
}