/* ===================================================
   FZT Hatice Nur Zengin — Shared Stylesheet
   =================================================== */

:root {
    --primary: #0e9a91;
    --primary-dark: #0a6e68;
    --primary-light: #e3f8f6;
    --coral: #ff6b4a;
    --coral-dark: #e64a2e;
    --gold: #2dd4bf;
    --cream: #f5fbfa;
    --cream-deep: #e7f6f4;
    --text-dark: #17302c;
    --text-muted: #5c726e;
    --white: #ffffff;
    --shadow: 0 24px 50px -18px rgba(14, 60, 56, 0.20);
    --shadow-sm: 0 10px 24px -10px rgba(14, 60, 56, 0.14);
    --transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--cream);
}

/* Custom scrollbar (WebKit browsers) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 8px;
    border: 2px solid var(--cream);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--coral);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-14px, 18px) scale(1.05); }
}

body {
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.7;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2000;
    opacity: 0.03;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, .logo {
    font-family: 'Fraunces', serif;
    font-optical-sizing: auto;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--primary-dark);
    color: var(--white);
    padding: 0.8rem 1.4rem;
    z-index: 3000;
    border-radius: 0 0 10px 0;
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    left: 0;
}

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

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 1000;
    box-shadow: 0 8px 28px rgba(23, 48, 44, 0.08);
    border-bottom: 1px solid rgba(15, 111, 100, 0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-decoration: none;
    color: var(--text-dark);
    gap: 0.35rem;
}

.logo-name {
    font-family: 'Fraunces', serif;
    font-optical-sizing: auto;
    font-size: 1.55rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.4px;
    color: var(--text-dark);
}

.logo-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-style: normal;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-title::before {
    content: "";
    width: 14px;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #365158;
    font-weight: 500;
    font-size: 0.96rem;
    letter-spacing: 0.1px;
    transition: var(--transition);
    padding-bottom: 4px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: var(--primary-dark);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 0.4rem;
}

.btn {
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-align: center;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: var(--white);
    box-shadow: 0 8px 22px -4px rgba(230, 74, 46, 0.55);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -6px rgba(230, 74, 46, 0.65);
    filter: brightness(1.04);
}

.btn-outline {
    background: var(--primary-light);
    color: var(--primary-dark);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 24px -8px rgba(14, 154, 145, 0.5);
    transform: translateY(-2px);
}

/* Outline button variant for use on dark/photo backgrounds (e.g. hero slider) */
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.55);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

/* Hero Slider Section (homepage) */
.hero-slider-section {
    padding-top: 106px;
    position: relative;
    background: #10302c;
    overflow: hidden;
}

.hero-slider-section::before,
.hero-slider-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
    animation: floatSlow 12s ease-in-out infinite;
}

.hero-slider-section::before {
    width: 320px;
    height: 320px;
    background: var(--coral);
    top: -80px;
    right: -60px;
}

.hero-slider-section::after {
    width: 260px;
    height: 260px;
    background: var(--primary);
    bottom: -100px;
    left: 8%;
    animation-delay: -6s;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    background: linear-gradient(115deg, rgba(14, 154, 145, 0.6) 0%, rgba(16, 48, 44, 0.8) 65%);
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) saturate(1.05);
}

.slide-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: var(--white);
    width: 100%;
}

.slide.active .slide-content .slide-title {
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.slide.active .slide-content p {
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.slide.active .slide-content .btn {
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.slide-content .slide-title {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 700px;
    font-family: 'Fraunces', serif;
    font-optical-sizing: auto;
    letter-spacing: -0.01em;
}

.slide-content .slide-title span {
    color: var(--gold);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.slide-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    opacity: 0.92;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--coral);
    border-color: var(--coral);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.slide-content .hero-actions {
    justify-content: flex-start;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 10px;
}

/* Page Hero (inner pages) */
.page-hero {
    padding: 170px 2rem 90px;
    position: relative;
    background: linear-gradient(135deg, #10302c 0%, #0a4b45 100%);
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.3;
    pointer-events: none;
}

.page-hero::before {
    width: 300px;
    height: 300px;
    background: var(--coral);
    top: -100px;
    right: -40px;
}

.page-hero::after {
    width: 260px;
    height: 260px;
    background: var(--primary);
    bottom: -120px;
    left: 6%;
}

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

.breadcrumb {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--cream);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 0.5rem;
    opacity: 0.6;
}

.page-hero h1 {
    font-size: 2.6rem;
    font-weight: 600;
    max-width: 760px;
    margin: 0 auto 1rem;
}

.page-hero h1 span {
    color: var(--gold);
}

.page-hero p {
    max-width: 650px;
    margin: 0 auto;
    opacity: 0.9;
    font-size: 1.1rem;
}

.eyebrow-light {
    display: inline-block;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}

.page-hero.home-hero {
    padding: 190px 2rem 120px;
}

.page-hero.home-hero h1 {
    font-size: 3.1rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Generic content section */
.content-section {
    padding: 90px 2rem;
}

.content-section.alt {
    background: var(--white);
}

.section-title {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.section-title.left {
    text-align: left;
    margin: 0 0 2.5rem;
}

.section-title .eyebrow {
    display: inline-block;
    color: var(--primary-dark);
    background: var(--primary-light);
    padding: 0.35rem 1.1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title h2 {
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title.left h2 {
    display: block;
}

.section-title h2::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    margin: 0.9rem auto 0;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--coral), var(--gold));
}

.section-title.left h2::after {
    margin: 0.9rem 0 0;
}

.section-title p {
    color: var(--text-muted);
}

/* Services grid + cards */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 22px;
    transition: var(--transition);
    border: 1px solid var(--cream-deep);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    background: var(--white);
    border-color: var(--primary-light);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-card:hover .service-icon {
    transform: rotate(-6deg) scale(1.08);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
}

.card-link {
    margin-top: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.92rem;
}

.card-link:hover {
    color: var(--coral-dark);
}

/* Two-column content block (used on pediatric + services detail pages) */
.split-block {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.split-block img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.split-block .profile-photo-wrap {
    position: relative;
    width: min(100%, 380px);
    min-width: 0;
    margin: 0 auto;
}

.split-block .profile-photo-wrap img.profile-photo {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

.split-block img.profile-logo-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 32%;
    max-width: 116px;
    min-width: 72px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 50%;
    background: var(--white);
    padding: 8px;
    box-shadow: 0 12px 26px -8px rgba(16, 48, 44, 0.45);
    border: 1px solid rgba(16, 48, 44, 0.08);
}

.split-block.reverse {
    direction: rtl;
}

.split-block.reverse > * {
    direction: ltr;
}

.split-block h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.split-block p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.check-list {
    list-style: none;
    margin: 1.5rem 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.check-list li i {
    color: var(--primary);
    margin-top: 0.25rem;
}

/* Process steps */
.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: 2rem;
    counter-reset: step;
}

.step-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--cream-deep);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    text-align: center;
}

.step-card::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: var(--white);
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* FAQ accordion */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--cream-deep);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.4rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    color: var(--text-muted);
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding-bottom: 1.4rem;
}

/* Appointment Section */
.appointment {
    padding: 100px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.appointment-box {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 28px;
    padding: 4rem;
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.appointment-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--coral);
    opacity: 0.25;
    filter: blur(50px);
    top: -100px;
    right: -60px;
}

.appointment-info {
    position: relative;
    z-index: 2;
}

.appointment-info h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.appointment-info p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-line {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1.2rem;
    text-decoration: none;
    color: inherit;
}

.contact-line i {
    font-size: 1.5rem;
}

.contact-line .contact-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.contact-line .contact-value {
    font-weight: 700;
    font-size: 1.2rem;
}

.form-group {
    position: relative;
    z-index: 2;
    margin-bottom: 1.2rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    box-shadow: 0 0 0 2px transparent;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    box-shadow: 0 0 0 2px var(--gold);
}

.btn-submit {
    position: relative;
    z-index: 2;
    width: 100%;
    background-color: var(--coral);
    color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--coral-dark);
    transform: translateY(-2px);
}

/* Contact page specific */
.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-grid > * {
    min-width: 0;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--cream-deep);
    border-radius: 22px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-card h2 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--primary-dark);
    margin-bottom: 1.2rem;
}

.contact-info-card ul {
    list-style: none;
}

.contact-info-card ul li {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info-card ul li a {
    text-decoration: none;
    color: inherit;
}

.contact-info-card ul li a:hover {
    color: var(--coral-dark);
}

.contact-info-card ul li i {
    color: var(--primary);
    margin-top: 0.2rem;
    width: 18px;
}

.map-embed {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--cream-deep);
    box-shadow: var(--shadow-sm);
}

.map-embed iframe {
    width: 100%;
    height: 340px;
    border: 0;
    display: block;
}

.hours-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.hours-table td {
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--cream-deep);
    color: var(--text-dark);
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Safety / disclaimer callout */
.callout {
    max-width: 1000px;
    margin: 0 auto 3.5rem;
    background: var(--primary-light);
    border: 1px solid rgba(14, 154, 145, 0.25);
    border-radius: 18px;
    padding: 1.6rem 2rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.callout i {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-top: 0.2rem;
}

.callout strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.callout p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Exercise cards */
.exercise-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
}

.exercise-card {
    background: var(--white);
    border: 1px solid var(--cream-deep);
    border-radius: 22px;
    padding: 2rem;
    transition: var(--transition);
}

.exercise-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-6px);
    border-color: var(--primary-light);
}

.exercise-card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.exercise-card .service-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.exercise-card h3 {
    font-size: 1.15rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.exercise-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--cream);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-top: 0.8rem;
}

.category-tabs {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.category-tabs a {
    text-decoration: none;
    color: var(--primary-dark);
    background: var(--white);
    border: 1px solid var(--cream-deep);
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition);
}

.category-tabs a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Article / makale styles */
.article-block {
    max-width: 800px;
    margin: 0 auto;
}

.article-block h2 {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.article-meta {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.article-block p {
    color: var(--text-muted);
    margin-bottom: 1.1rem;
}

.article-block h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.6rem 0 0.8rem;
    color: var(--text-dark);
}

.sources-list {
    margin-top: 1.5rem;
    padding: 1.4rem 1.6rem;
    background: var(--cream);
    border-radius: 14px;
    font-size: 0.85rem;
}

.sources-list h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--primary-dark);
    margin-bottom: 0.6rem;
}

.sources-list ol {
    padding-left: 1.2rem;
    color: var(--text-muted);
}

.sources-list li {
    margin-bottom: 0.4rem;
}

.sources-list a {
    color: var(--primary-dark);
    text-decoration: underline;
    word-break: break-word;
}

.article-divider {
    max-width: 800px;
    margin: 3.5rem auto;
    border: none;
    border-top: 1px solid var(--cream-deep);
}

.toc-list {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: var(--white);
    border: 1px solid var(--cream-deep);
    border-radius: 18px;
    padding: 1.6rem 2rem;
}

.toc-list h2 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--primary-dark);
    margin-bottom: 0.9rem;
}

.toc-list ol {
    padding-left: 1.2rem;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.toc-list a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Photo section on homepage */
.photo-block img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow);
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #10302c 0%, #0a4b45 100%);
    color: rgba(255, 255, 255, 0.75);
    padding: 60px 2rem 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand .logo-name {
    font-size: 1.9rem;
    color: var(--white);
}

.footer-brand .logo-title {
    color: var(--gold);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1.2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.site-credit {
    text-align: center;
    margin-top: 0.6rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

.site-credit a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
}

.site-credit a:hover {
    color: var(--coral);
}

@media (max-width: 900px) {
    .split-block,
    .split-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: flex;
    }

    .nav-actions .btn {
        padding: 0.6rem 1.1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        box-shadow: 0 12px 24px rgba(23, 48, 44, 0.1);
    }

    .nav-links.open {
        max-height: 400px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
    }

    .nav-links a::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .slide-content .slide-title { font-size: 2rem; }
    .slider-container { height: 620px; }
    .appointment-box { grid-template-columns: 1fr; padding: 2rem; }
    .page-hero { padding: 150px 1.5rem 70px; }
    .page-hero h1 { font-size: 2rem; }
}
