/* css/style.css */
:root { 
    --bg: #f6fbf8; --card: #ffffff; --primary: #2f8f6b; --primary-dark: #1f6f52; 
    --secondary: #eaf7f0; --text: #1f2933; --muted: #65727f; --border: #dceee5; 
    --shadow: 0 24px 70px rgba(30, 80, 60, 0.16); --radius: 28px; 
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; font-family: 'Inter', sans-serif; color: var(--text); background: radial-gradient(circle at top left, rgba(47, 143, 107, 0.18), transparent 34%), var(--bg); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
.page { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0 44px; }
.page-narrow { width: min(840px, calc(100% - 32px)); }

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px 18px; margin-bottom: 30px; background: rgba(255, 255, 255, 0.72); backdrop-filter: blur(16px); border: 1px solid rgba(220, 238, 229, 0.9); border-radius: 999px; box-shadow: 0 12px 36px rgba(30, 80, 60, 0.08); position: sticky; top: 14px; z-index: 10; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--primary-dark); }
.brand-icon { width: 36px; height: 36px; border-radius: 50%; color: white; background: linear-gradient(135deg, var(--primary), #7fc9a5); display: grid; place-items: center; overflow: hidden; }
.brand-icon img { width: 100%; height: 100%; object-fit: cover; }
.nav-links { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); font-weight: 500; }
.nav-links a { padding: 9px 12px; border-radius: 999px; transition: 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-dark); background: var(--secondary); }

/* --- YENİ: ÜST MENÜ RANDEVU BUTONU --- */
.nav-btn-randevu {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    color: white !important;
    font-weight: 700 !important;
    padding: 10px 20px !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}
.nav-btn-randevu:hover {
    background: linear-gradient(135deg, #d97706, #b45309) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.hero { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 28px; align-items: stretch; margin-bottom: 28px; }
.hero-card, .profile-card, .section-card, .article-wrap { background: rgba(255, 255, 255, 0.86); border: 1px solid rgba(220, 238, 229, 0.95); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-card { padding: clamp(28px, 5vw, 58px); position: relative; overflow: hidden; }
.badge { display: inline-flex; gap: 8px; padding: 8px 13px; margin-bottom: 18px; color: var(--primary-dark); background: var(--secondary); border: 1px solid var(--border); border-radius: 999px; font-size: 14px; font-weight: 700; }
.hero-card h1 { font-size: clamp(36px, 6vw, 68px); line-height: 0.96; letter-spacing: -0.075em; color: #12251d; margin-bottom: 18px; }
.lead { color: var(--muted); font-size: 18px; margin-bottom: 26px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 13px 18px; border-radius: 999px; font-weight: 800; transition: 0.2s; border: 1px solid transparent; }
.btn-primary { color: white; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.btn-soft { color: var(--primary-dark); background: white; border-color: var(--border); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat { padding: 15px; background: rgba(246, 251, 248, 0.9); border: 1px solid var(--border); border-radius: 18px; }
.profile-card { padding: 22px; display: flex; flex-direction: column; justify-content: space-between; }
.photo-wrap { border-radius: 24px; overflow: hidden; background: var(--secondary); aspect-ratio: 4/4.45; }
.photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.wide { grid-column: span 2; }
.section-card { padding: 24px; }
.service-list li, .contact-list a { display: flex; gap: 10px; padding: 11px 12px; border-radius: 16px; background: #f8fcfa; border: 1px solid var(--border); margin-bottom: 10px;}
.icon { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--secondary); color: var(--primary-dark); font-size: 14px; }
.section-header { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 10px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: rgba(255, 255, 255, 0.86); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; display: flex; flex-direction: column; transition: 0.3s; box-shadow: 0 10px 30px rgba(30, 80, 60, 0.04); }
.blog-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.blog-img { width: 100%; height: 200px; object-fit: cover; background: var(--secondary); }
.blog-content { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.article-wrap { padding: clamp(24px, 5vw, 44px); margin-bottom: 40px; }
.blog-meta-grid { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.meta-item { display: flex; gap: 8px; font-size: 14px; color: var(--muted); background: #f8fcfa; padding: 8px 14px; border-radius: 12px; border: 1px solid var(--border); }
.main-img { width: 100%; max-height: 460px; object-fit: cover; border-radius: 20px; margin-bottom: 30px; border: 1px solid var(--border); }
.article-text { color: #2d3748; font-size: 17px; line-height: 1.8; }
.article-text p, .article-text ul { margin-bottom: 20px; }
.article-text h2, .article-text h3 { margin: 35px 0 15px 0; color: #12251d; }
.footer { margin-top: 40px; padding: 20px; text-align: center; color: var(--muted); font-size: 14px; border-top: 1px solid var(--border); }

/* --- YENİ: SABİT SAĞ ALT BUTONLAR (WP & RANDEVU) --- */
.floating-menu { position: fixed; right: 24px; bottom: 24px; z-index: 999; display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
.float-btn { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: white; box-shadow: 0 10px 25px rgba(0,0,0,0.15); transition: 0.3s ease; text-decoration: none; position: relative; }
.float-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.25); color: white; }
.btn-randevu { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.btn-wp { background: #25d366; }
.float-btn svg { width: 28px; height: 28px; display: block; }
.float-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 75px; /* Yazı artık sol tarafa açılır */
    background: rgba(18, 37, 29, 0.9);
    color: white;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.float-btn:hover::after { opacity: 1; right: 72px; }

@media (max-width: 900px) { .hero, .grid, .blog-grid { grid-template-columns: 1fr; } .wide { grid-column: span 1; } .nav-links { display: none; } }
@media (max-width: 600px) { .floating-menu { right: 16px; bottom: 16px; gap: 12px; } .float-btn { width: 54px; height: 54px; } .float-btn svg { width: 24px; height: 24px; } .float-btn::after { display: none; } }