/*
Theme Name: Selim Gokay Editorial
Theme URI: https://www.selimgokay.com/
Author: Antigravity
Description: A premium, minimalist editorial-style theme designed from scratch for Prof. Dr. Nevzat Selim Gokay.
Version: 2.0.0
Text Domain: selimgokay
*/

:root {
    --color-primary: #0a192f;
    --color-primary-light: #172a45;
    --color-secondary: #c5a059;
    --color-secondary-hover: #b38f48;
    --color-bg-light: #f4f6f9;
    --color-bg-white: #ffffff;
    --color-text-dark: #1b263b;
    --color-text-muted: #606f7b;
    --color-border: #e2e8f0;
    --color-whatsapp: #25d366;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 12px;
    --box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 0.5em;
}

.highlight-serif {
    font-style: italic;
    color: var(--color-secondary);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Header */
/* Modern Top Bar */
.top-bar-modern {
    background-color: var(--color-bg-light, #f8f9fa); /* Light gray or whatever light bg they have */
    color: var(--color-text);
    padding: 0.5rem 0;
    font-size: 0.75rem;
    font-weight: 500;
    border-bottom: 1px solid var(--color-border);
}

.top-bar-modern-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contacts-modern {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.top-contacts-modern a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-text-muted);
}

.top-contacts-modern a:hover {
    color: var(--color-primary);
}

.top-contacts-modern .divider {
    color: var(--color-border);
    margin: 0 0.5rem;
}

.top-languages-modern {
    color: var(--color-text-muted);
}
.top-languages-modern strong {
    color: var(--color-primary);
}

.site-header {
    background-color: var(--color-bg-white);
    padding: 1.2rem 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 85px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-secondary);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
    width: 100%;
}

.menu-toggle {
    display: none;
}

/* Editorial Hero */
.editorial-hero {
    background-color: var(--color-bg-white);
    padding: 8rem 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
}

.hero-tag {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--color-secondary);
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.hero-left h1 {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.hero-philosophy {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    z-index: 2;
}

/* Premium Gold Offset Frame */
.hero-image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    border: 2px solid var(--color-secondary);
    border-radius: 4px;
    z-index: -1;
    transition: var(--transition-smooth);
}

.hero-image-inner {
    width: 100%;
    height: auto;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(10, 25, 47, 0.2);
    transition: var(--transition-smooth);
}

.hero-image-frame:hover::before {
    top: 10px;
    right: -10px;
    bottom: -10px;
    left: 10px;
}

.hero-image-frame:hover .hero-image-inner {
    transform: translate(-5px, -5px);
}

.hero-main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.hero-image-frame:hover .hero-main-img {
    transform: scale(1.03);
}

/* Section Common */
.section {
    padding: 4rem 0;
}

.section-bg {
    background-color: var(--color-bg-white);
}

.section-header {
    margin-bottom: 5rem;
    max-width: 700px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 400;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* Asymmetric Explorer Grid */
.asymmetric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.explorer-card {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
}

.explorer-card:hover {
    transform: translateY(-8px);
}

.grid-item-large {
    grid-column: span 2;
    height: 460px;
}

.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
    z-index: 1;
}

.explorer-card:hover .card-bg-image {
    transform: scale(1.04);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.3) 70%);
    z-index: 2;
}

.card-editorial-content {
    position: relative;
    z-index: 3;
    color: #fff;
}

.card-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-style: italic;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 0.5rem;
}

.card-editorial-content h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.card-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.card-link-more {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Timeline Biography */
.bio-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 6rem;
    align-items: start;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 1px solid var(--color-border);
}

.timeline-item {
    position: relative;
    padding-bottom: 3.5rem;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    top: 6px;
    left: calc(-2rem - 4px);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    border: 2px solid var(--color-bg-light);
}

.timeline-year {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 0.4rem;
}

.timeline-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.timeline-item p {
    color: var(--color-text-muted);
}

/* Dynamic ACF Timeline via WYSIWYG ul/li */
.timeline ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.timeline ul li {
    position: relative;
    padding-bottom: 3.5rem;
}

.timeline ul li:last-child {
    padding-bottom: 0;
}

.timeline ul li::before {
    content: '';
    position: absolute;
    top: 6px;
    left: calc(-2rem - 4px);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    border: 2px solid var(--color-bg-light);
}

.timeline ul li strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 0.4rem;
}

/* Dynamic ACF Lists for Awards and Memberships */
.awards-list-dynamic ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.awards-list-dynamic ul li {
    margin-bottom: 1.5rem;
    padding-left: 1.8rem;
    position: relative;
}
.awards-list-dynamic ul li::before {
    content: '\f559'; /* fa-award */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--color-secondary);
}

.memberships-list-dynamic ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.memberships-list-dynamic ul li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
}
.memberships-list-dynamic ul li::before {
    content: '\f058'; /* fa-check-circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--color-secondary);
}

/* Video Showcase Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.video-card-editorial {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-border);
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-card-editorial h4 {
    padding: 1.5rem;
    font-size: 1.15rem;
    margin: 0;
}

/* Form Contact Section */
.form-grid-editorial {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.contact-details-editorial {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--color-secondary);
    background-color: var(--color-bg-white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
}

.detail-item div span {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.detail-item div strong {
    font-size: 1.25rem;
    color: var(--color-primary);
}

.minimal-card-form {
    background-color: var(--color-bg-white);
    padding: 4rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    box-shadow: var(--box-shadow);
}

.form-group-editorial {
    margin-bottom: 2rem;
}

.form-row-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-input-editorial {
    width: 100%;
    padding: 1.1rem 1.4rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-light);
    border-radius: 4px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-input-editorial:focus {
    outline: none;
    border-color: var(--color-secondary);
    background-color: #fff;
}

.btn-block {
    width: 100%;
    padding: 1.2rem;
}

/* Reviews and Widgets */
.reviews-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
}

.review-widget-container,
.booking-widget-container {
    background-color: var(--color-bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-border);
}

.review-widget-container h3,
.booking-widget-container h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

/* Footer */
.main-footer {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.65);
    padding: 6rem 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1.1fr 0.9fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-brand-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.footer-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

.footer-social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
}

.footer-social-links a:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.footer-col h5 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-col a {
    font-size: 0.95rem;
}

.footer-links-col a:hover {
    color: var(--color-secondary);
}

.footer-contact-col p {
    display: flex;
    gap: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact-col i {
    color: var(--color-secondary);
    margin-top: 4px;
}

.btn-directions {
    color: var(--color-secondary);
    font-weight: 600;
}

.ebot-badge-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ebot-badge-card i {
    font-size: 2.2rem;
    color: var(--color-secondary);
}

.ebot-text strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.ebot-text span {
    font-size: 0.75rem;
    line-height: 1.3;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 0;
    font-size: 0.85rem;
}

.legal-notice {
    font-size: 0.8rem;
    opacity: 0.6;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agency-logo {
    max-height: 45px;
    width: auto;
    background-color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}
.agency-link:hover .agency-logo {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Inner Page Layout */
.page-title-banner {
    background-color: var(--color-primary);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
}

.page-title-banner h1 {
    color: #fff;
    font-size: 3rem;
    margin: 0;
}

.breadcrumbs {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

.breadcrumbs a {
    color: var(--color-secondary);
}

.content-area {
    padding: 6rem 0;
}

.reading-layout {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-bg-white);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.treatment-cta {
    margin-top: 4rem;
    padding: 3rem;
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--color-border);
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-wrapper {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-left {
        display: contents;
    }
    
    .hero-left h1 {
        font-size: 3rem;
        order: 2;
    }
    
    .hero-tag {
        order: 1;
    }
    
    .hero-philosophy {
        margin: 0 auto 3rem;
        order: 3;
    }
    
    .hero-right {
        order: 4;
        width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
        order: 5;
        margin-top: 1rem;
    }
    
    .asymmetric-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-item-large {
        grid-column: span 1;
        height: 400px;
    }
    
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .form-grid-editorial {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .form-row-editorial {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .flex-between {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-bottom-right {
        flex-direction: column;
        gap: 10px !important;
    }
}

/* ---------------------------------------------------------
   18. ICON EXPLORER CARD STYLES
   --------------------------------------------------------- */
.explorer-card-icon {
    position: relative;
    min-height: 360px;
    height: auto;
    border-radius: var(--border-radius);
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
}

.explorer-card-icon:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    box-shadow: 0 15px 35px -10px rgba(197, 160, 89, 0.12);
}

.card-icon-container {
    margin-bottom: 1.5rem;
    display: block;
}

.custom-line-art-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: var(--transition-smooth);
    border-radius: 50%;
    /* Subtle filter to integrate the black icon neatly */
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
}

.explorer-card-icon:hover .custom-line-art-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(197, 160, 89, 0.2));
}

.card-icon-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    gap: 1rem;
}

.explorer-card-icon .card-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--color-border);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.explorer-card-icon:hover .card-number {
    color: var(--color-secondary);
}

.explorer-card-icon h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--color-primary);
}

.explorer-card-icon .card-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Uniform grid for showing all treatments */
.treatments-grid-all {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}


/* Basında Sayfası */
.press-section { margin-bottom: 3rem; }
.press-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.press-card { background: var(--color-bg-white); border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); overflow: hidden; display: flex; flex-direction: column; text-decoration: none !important; color: inherit; transition: var(--transition-smooth); }
.press-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); color: inherit; }
.press-card-img-wrapper { position: relative; width: 100%; height: 200px; overflow: hidden; background-color: #f1f1f1; }
.press-card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.press-card:hover .press-card-img-wrapper img { transform: scale(1.05); }
.play-icon-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: rgba(255,255,255,0.8); font-size: 3rem; transition: color 0.3s ease; }
.press-card:hover .play-icon-overlay { color: rgba(255,255,255,1); }
.press-card-content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.press-date { font-size: 0.8rem; color: var(--color-primary); font-weight: 600; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.5px; }
.press-card-content h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.8rem; color: var(--color-text); }
.press-card-content p { font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.5; margin-bottom: 1.5rem; flex-grow: 1; }
.press-read-more { font-size: 0.9rem; font-weight: 600; color: var(--color-primary); display: inline-flex; align-items: center; gap: 0.5rem; margin-top: auto; }
.news-grid .press-card { flex-direction: row; align-items: center; padding: 1rem; }
.news-icon { width: 80px; height: 80px; background-color: rgba(30,58,138,0.05); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2rem; color: var(--color-primary); margin: 1rem; flex-shrink: 0; }
.news-grid .press-card-content { padding: 0.5rem 1rem; }
@media (max-width: 768px) { .news-grid .press-card { flex-direction: column; text-align: center; } .news-grid .press-read-more { justify-content: center; } }
@media (max-width: 1024px) {
    .treatments-grid-all {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .treatments-grid-all {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .explorer-card-icon {
        height: auto;
        min-height: 340px;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 992px) {
    /* Top Bar Mobile Modern */
    .top-bar-modern-inner {
        flex-direction: column;
        gap: 0.5rem;
    }
    .top-contacts-modern {
        flex-direction: column;
        gap: 0.2rem;
    }
    .top-contacts-modern .divider {
        display: none;
    }

    /* Mobile Menu */
    .mobile-menu-toggle {
        display: block;
    }
    .nav-container {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-bg-white);
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        padding: 1rem 0;
        border-top: 1px solid var(--color-border);
        z-index: 1001; /* Ensure it stays above other content */
    }
    .nav-container.active {
        display: block;
    }
    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: center;
    }
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.03);
    }
    
    /* Typography & Spacing Reductions */
    .hero-left h1 {
        font-size: 2.2rem !important;
    }
    h2 {
        font-size: 1.8rem !important;
    }
    .section, .section-padding, .editorial-hero {
        padding: 4rem 0 !important;
    }
    .page-title-banner {
        padding: 3rem 0 !important;
    }
    .page-title-banner h1 {
        font-size: 2rem !important;
    }
}

@media (max-width: 768px) {
    /* Mobile Navbar Layout: Logo Left, Hamburger Right */
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    /* Logo Mobile Tweaks */
    .logo img {
        width: 250px !important; /* Kullanıcı talebi: Boyutları ufaltma */
        max-height: none !important;
        height: auto;
    }
    .site-header {
        padding: 1.2rem 0;
        position: relative !important; /* Kullanıcı talebi: mobilde sabit kalmasın (relative, menünün düzgün pozisyonlanması için şart) */
    }
    .editorial-hero {
        padding: 2.5rem 0 3rem 0 !important; /* Fix massive gap */
    }
    .hero-left h1 {
        font-size: 1.8rem !important;
    }
    h2 {
        font-size: 1.5rem !important;
    }
    .section, .section-padding {
        padding: 3rem 0 !important;
    }
    .page-title-banner h1 {
        font-size: 1.6rem !important;
    }
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-tag {
        margin-bottom: 0.5rem;
    }
    .reading-layout {
        padding: 1.5rem !important;
    }
    .treatment-cta {
        padding: 1.5rem !important;
        margin-top: 2rem !important;
    }
    .treatment-cta h3 {
        font-size: 1.4rem !important;
    }
    .minimal-card-form {
        padding: 1.5rem !important;
    }
    .review-widget-container,
    .booking-widget-container {
        padding: 1rem !important;
    }
    
    /* Fix for DoktorTakvimi Widget Heights on Mobile */
    .review-widget-container iframe[name="iframeone"] {
        height: 320px !important;
    }
    
    .booking-widget-container iframe[name="iframetwo"] {
        height: 480px !important;
    }
}

/* ==========================================================================
   TREATMENT SINGLE PAGE (CPT: tedavi) - PREMIUM DESIGN
   ========================================================================== */

/* Hero Banner with Glassmorphism */
.treatment-hero {
    position: relative;
    padding: 100px 0 140px;
    background-size: cover;
    background-position: center;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    margin-bottom: 0;
}

.treatment-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.85) 0%, rgba(10, 25, 47, 0.6) 100%);
    z-index: 1;
}

.treatment-hero .container {
    position: relative;
    z-index: 2;
}

.treatment-hero-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 3rem;
    max-width: 800px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(40px); /* Overlap effect */
}

.treatment-hero-glass h1 {
    color: var(--color-bg-white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.treatment-hero-glass .breadcrumbs {
    font-size: 0.9rem;
    opacity: 0.9;
    letter-spacing: 0.05em;
}

.treatment-hero-glass .breadcrumbs a {
    color: var(--color-secondary);
    font-weight: 600;
}

.treatment-hero-glass .breadcrumbs a:hover {
    color: var(--color-bg-white);
}

/* Layout Grid */
.treatment-page-wrap {
    padding-top: 60px; /* Space for the overlapping glass box */
    padding-bottom: 80px;
}

.treatment-grid {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 3rem;
    align-items: start; /* Vital for sticky to work */
}

/* Editorial Content Typography */
.editorial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-dark);
}

.editorial-content p {
    margin-bottom: 1.8rem;
}

/* Drop Cap for the first paragraph */
.editorial-content > p:first-of-type::first-letter {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 0.8;
    color: var(--color-secondary);
    float: left;
    margin: 0.1em 0.15em 0 0;
    text-shadow: 2px 2px 0 rgba(197, 160, 89, 0.2);
}

/* Stylized Strong tags acting as subheadings */
.editorial-content p > strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-left: 1rem;
}

.editorial-content p > strong::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background-color: var(--color-secondary);
    border-radius: 4px;
}

/* Sticky Sidebar */
.sidebar-sticky {
    position: sticky;
    top: 100px; /* Offset from header */
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--color-bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    border: 1px solid var(--color-border);
}

.widget-contact-card {
    text-align: center;
    border-top: 4px solid var(--color-secondary);
}

.sidebar-logo {
    width: 80px;
    margin: 0 auto 1rem;
}

.widget-contact-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.widget-contact-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

/* Sidebar Buttons */
.btn-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.btn-sidebar:last-child {
    margin-bottom: 0;
}

.btn-sidebar i {
    font-size: 1.1rem;
}

.btn-whatsapp {
    background-color: rgba(37, 211, 102, 0.1);
    color: var(--color-whatsapp);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: var(--color-whatsapp);
    color: #fff;
    transform: translateY(-2px);
}

.btn-phone {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-phone:hover {
    background-color: var(--color-primary-light);
    box-shadow: 0 4px 12px rgba(10, 25, 47, 0.2);
    transform: translateY(-2px);
}

.btn-online {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-online:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Other Treatments Widget */
.widget-other-treatments h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--color-border);
}

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

.treatment-links-list li {
    margin-bottom: 1rem;
}

.treatment-links-list li:last-child {
    margin-bottom: 0;
}

.treatment-links-list a {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--color-text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    padding: 0.5rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.treatment-links-list a i {
    color: var(--color-secondary);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.treatment-links-list a:hover {
    background-color: var(--color-bg-light);
    color: var(--color-primary);
    transform: translateX(4px);
}

/* Elegant Bottom CTA */
.treatment-cta-modern {
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a365d 100%);
    border-radius: var(--border-radius);
    padding: 3rem;
    color: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.treatment-cta-modern::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.cta-modern-content h3 {
    color: var(--color-secondary);
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.cta-modern-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    max-width: 500px;
    margin-bottom: 0;
}

.cta-modern-actions {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 991px) {
    .treatment-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar-sticky {
        position: static;
        margin-top: 2rem;
    }

    .treatment-cta-modern {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }

    .cta-modern-content p {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .treatment-hero-glass {
        padding: 2rem;
        transform: translateY(20px);
    }
    
    .treatment-hero-glass h1 {
        font-size: 2rem;
    }
    
    .editorial-content > p:first-of-type::first-letter {
        font-size: 3.5rem;
    }
}

/* Premium List Styling for Editorial Content */
.editorial-content ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.editorial-content ul li {
    position: relative;
    padding: 1.2rem 1.5rem 1.2rem 3.5rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(var(--color-primary-rgb), 0.1);
    border-radius: 12px;
    color: var(--color-text-body);
    font-size: 1.05rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.editorial-content ul li::before {
    content: '\f058'; /* FontAwesome check-circle */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-secondary);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.editorial-content ul li:hover {
    background: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(var(--color-secondary-rgb), 0.1);
    border-color: rgba(var(--color-secondary-rgb), 0.3);
}

.editorial-content ul li:hover::before {
    transform: translateY(-50%) scale(1.1);
}
