/* --- PREMIUM TEMA (Siyah & Altın) --- */
:root {
    --bg-dark: #0f1012;
    --bg-card: #161719;
    --gold: #c5a059;          /* Biraz daha mat, asil altın */
    --gold-hover: #e0b96b;
    --text-white: #ffffff;
    --text-grey: #a0a0a0;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

.premium-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #1b1d21 0%, #000000 100%);
    padding: 60px 20px 100px;
}

.content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    text-align: center;
}

/* --- LOGO VE İSİM ALANI --- */
.logo-area { margin-bottom: 50px; }

.hero-logo {
    max-width: 100px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.yasargil-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-white);
    margin: 0 auto 20px;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.9;
}

.yasargil-quote cite {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sub-title {
    color: var(--gold);
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    opacity: 0.8;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    margin: 0;
    line-height: 1;
    color: var(--text-white);
    letter-spacing: -1px;
}

.definition-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--text-grey);
    max-width: 700px;
    margin: 15px auto 0;
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

.dot { color: var(--gold); }

.divider {
    width: 50px;
    height: 1px;
    background-color: var(--gold);
    margin: 30px auto;
    opacity: 0.5;
}

/* İSİM YAPILANDIRMASI */
.director-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-grey);
    margin-bottom: 5px;
}

.doctor-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400; /* Çok kalın değil, zarif */
    margin: 0;
    color: #f0f0f0;
}

/* 0850 NUMARA */
.contact-highlight { margin-top: 30px; }
.contact-highlight a {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--gold); font-size: 1.3rem; letter-spacing: 1px; font-weight: 500;
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
}
.contact-highlight a:hover {
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold-hover);
    border-color: var(--gold);
}

/* --- KARTLAR --- */
.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.choice-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.4s ease;
    cursor: pointer;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.choice-card:hover {
    transform: translateY(-5px);
    background: #202226;
    border-color: rgba(197, 160, 89, 0.3);
}

.icon-gold {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.choice-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin: 0 0 10px;
    color: var(--text-white);
}

.choice-card p {
    color: var(--text-grey);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.link-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FOOTER --- */
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    border-top: 1px solid rgba(255,255,255,0.03);
    background: rgba(0,0,0,0.4);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-grey);
}

.social-minimal a {
    color: #fff; margin-left: 20px; font-size: 1.1rem; opacity: 0.6;
}
.social-minimal a:hover { color: var(--gold); opacity: 1; }

/* MOBİL */
@media (max-width: 768px) {
    .premium-hero { padding: 60px 20px 150px; }
    .choice-card { text-align: center; }
    .footer-container { flex-direction: column; gap: 15px; text-align: center; }
    footer { position: relative; }
}
