/* --- Değişkenler --- */
:root {
    --color-med-blue: #0077b6;  /* Profesyonel Medikal Mavi */
    --color-med-dark: #023e8a;
    --color-mint: #48cae4;      /* Ferah Nane/Su Yeşili */
    --color-white: #ffffff;
    --color-grey: #f7f9fa;      /* Çok açık gri, steril his */
    --color-text: #333333;
    --color-text-light: #666666;
    --shadow: 0 5px 20px rgba(0, 119, 182, 0.1);
    --radius: 12px;
    --font-heading: 'Rubik', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: var(--radius); }

/* --- Top Bar --- */
.med-bar { background-color: var(--color-med-dark); color: var(--color-white); padding: 8px 0; font-size: 0.85rem; }
.bar-flex { display: flex; justify-content: space-between; align-items: center; }
.bar-contact { font-weight: bold; color: var(--color-mint); }

/* --- Header --- */
.clinic-header { background: var(--color-white); padding: 20px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.header-content { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--color-med-dark); display: flex; align-items: center; gap: 5px; }
.plus-icon { color: var(--color-mint); font-size: 2rem; line-height: 1; }
.blue-text { color: var(--color-med-blue); }

.clean-nav ul { display: flex; gap: 30px; align-items: center; }
.clean-nav a { font-weight: 500; color: var(--color-text); font-size: 0.95rem; }
.clean-nav a:hover, .clean-nav a.active { color: var(--color-med-blue); }

.btn-consult { background-color: var(--color-med-blue); color: var(--color-white) !important; padding: 10px 25px; border-radius: 30px; font-weight: bold; box-shadow: 0 4px 10px rgba(0, 119, 182, 0.2); }
.btn-consult:hover { background-color: var(--color-med-dark); transform: translateY(-2px); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: row; gap: 4px; }
.dot { width: 6px; height: 6px; background-color: var(--color-med-blue); border-radius: 50%; }

/* --- Mobile Menu --- */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100%; background: var(--color-white); z-index: 2000; display: flex; flex-direction: column; padding: 40px; gap: 20px; transition: 0.3s; box-shadow: -5px 0 20px rgba(0,0,0,0.05); }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--color-text); }
.mobile-menu a { font-family: var(--font-heading); font-size: 1.1rem; color: var(--color-med-dark); border-bottom: 1px solid #f0f0f0; padding-bottom: 10px; font-weight: 500; }

/* --- Hero --- */
.hero { position: relative; height: 600px; display: flex; align-items: center; justify-content: flex-start; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: -2; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 50%, transparent 100%); z-index: -1; }

.hero-text { z-index: 1; max-width: 600px; padding-left: 20px; }
.badge-trust { background: var(--color-mint); color: var(--color-white); padding: 5px 15px; border-radius: 4px; font-size: 0.8rem; font-weight: bold; letter-spacing: 1px; display: inline-block; margin-bottom: 20px; }
.hero h1 { font-family: var(--font-heading); font-size: 3.5rem; line-height: 1.1; color: var(--color-med-dark); margin-bottom: 20px; }
.mint-text { color: var(--color-med-blue); }
.hero p { font-size: 1.2rem; color: var(--color-text-light); margin-bottom: 30px; }

.cta-group { display: flex; gap: 15px; }
.btn { padding: 12px 30px; border-radius: 6px; font-weight: bold; cursor: pointer; transition: 0.3s; border: none; font-family: var(--font-heading); }
.btn-blue { background: var(--color-med-blue); color: var(--color-white); }
.btn-blue:hover { background: var(--color-med-dark); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.btn-white { background: var(--color-white); color: var(--color-med-blue); border: 2px solid var(--color-med-blue); }
.btn-white:hover { background: var(--color-med-blue); color: var(--color-white); }

/* --- Services Grid --- */
.section-padding { padding: 80px 0; }
.section-title, .page-head { text-align: center; margin-bottom: 60px; }
.section-title h2, .page-head h1 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--color-med-dark); margin-bottom: 10px; }
.divider-line { width: 50px; height: 3px; background: var(--color-mint); margin: 0 auto; border-radius: 2px; }

.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: var(--color-white); border: 1px solid #eee; border-radius: var(--radius); padding: 40px 30px; text-align: center; transition: 0.3s; box-shadow: var(--shadow); }
.service-card:hover { transform: translateY(-5px); border-color: var(--color-mint); }
.icon-box { font-size: 3rem; margin-bottom: 20px; background: var(--color-grey); width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-left: auto; margin-right: auto; }
.service-card h3 { color: var(--color-med-blue); font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 15px; }
.service-card p { color: var(--color-text-light); margin-bottom: 20px; font-size: 0.95rem; }
.link-blue { color: var(--color-med-blue); font-weight: bold; font-size: 0.9rem; }

/* --- Process Banner --- */
.process-banner { background-color: var(--color-grey); padding: 80px 0; margin-top: 50px; }
.process-banner h2 { text-align: center; font-family: var(--font-heading); color: var(--color-med-dark); margin-bottom: 50px; font-size: 2rem; }
.steps-flex { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; text-align: center; }
.step { flex: 1; min-width: 200px; }
.step-num { width: 50px; height: 50px; background: var(--color-mint); color: var(--color-white); font-weight: bold; font-size: 1.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step h4 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: var(--color-text-light); font-size: 0.9rem; }

/* --- About & Split --- */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-block h2 { font-family: var(--font-heading); color: var(--color-med-blue); margin-bottom: 20px; }
.check-list { margin-top: 20px; list-style: none; }
.check-list li { margin-bottom: 10px; font-weight: 500; color: var(--color-med-dark); }
.image-block img { box-shadow: 20px 20px 0 var(--color-mint); }

/* --- Stories (Testimonials) --- */
.stories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.story-card { background: var(--color-white); padding: 30px; border-radius: var(--radius); border: 1px solid #eee; box-shadow: var(--shadow); }
.rating { color: #FFD700; margin-bottom: 10px; letter-spacing: 2px; }
.story-card h3 { font-family: var(--font-heading); color: var(--color-med-dark); font-size: 1.1rem; margin-bottom: 10px; }
.story-card p { font-style: italic; color: #666; margin-bottom: 20px; font-size: 0.95rem; }
.patient strong { display: block; color: var(--color-med-blue); font-family: var(--font-heading); }
.patient span { font-size: 0.8rem; color: #888; }

/* --- Contact & Forms --- */
.consult-box { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--color-white); padding: 50px; border-radius: 20px; box-shadow: var(--shadow); border: 1px solid #eee; }
.consult-info h3 { font-family: var(--font-heading); color: var(--color-med-dark); margin-bottom: 25px; }
.c-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.c-icon { font-size: 1.5rem; }
.trust-badges { margin-top: 30px; display: flex; gap: 10px; flex-wrap: wrap; }
.trust-badges span { background: var(--color-grey); color: var(--color-med-blue); padding: 5px 10px; border-radius: 4px; font-weight: bold; font-size: 0.8rem; border: 1px solid #ddd; }

.clean-form .form-group { margin-bottom: 20px; }
.clean-form label { display: block; margin-bottom: 5px; font-weight: 500; color: var(--color-med-dark); font-size: 0.9rem; }
.clean-form input, .clean-form select, .clean-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-family: var(--font-body); background: #fdfdfd; transition: 0.3s; }
.clean-form input:focus, .clean-form select:focus, .clean-form textarea:focus { border-color: var(--color-med-blue); outline: none; box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1); }
.full-width { width: 100%; }

/* --- Legal --- */
.legal-doc { max-width: 800px; margin: 0 auto; background: var(--color-grey); padding: 60px; border-radius: var(--radius); }
.legal-doc h1 { font-family: var(--font-heading); color: var(--color-med-dark); }
.legal-doc h3 { color: var(--color-med-blue); margin-top: 30px; margin-bottom: 10px; font-family: var(--font-heading); }

/* --- Footer --- */
.clean-footer { background: var(--color-med-dark); color: var(--color-white); padding: 50px 0; margin-top: auto; text-align: center; }
.footer-brand h4 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 5px; }
.footer-links { margin: 20px 0; }
.footer-links a { color: var(--color-mint); margin: 0 10px; font-weight: bold; }
.copyright { font-size: 0.8rem; opacity: 0.7; }

@media (max-width: 992px) {
    .clean-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero h1 { font-size: 2.5rem; }
    .hero { height: auto; padding: 100px 0; }
    .split-section, .consult-box { grid-template-columns: 1fr; }
    .steps-flex { flex-direction: column; }
}