/* =============================================================
   Pekgöz Hukuk Ortaklığı — Kurumsal Tasarım Sistemi
   ============================================================= */

:root {
    --navy: #0f172a;
    --navy-dark: #07111f;
    --navy-soft: #1e293b;
    --gold: #c8a45d;
    --gold-light: #d9b66f;
    --gold-dark: #b78b3c;
    --white: #ffffff;
    --cream: #f8f6f1;
    --bg: #f8fafc;
    --ink: #111827;
    --text: #334155;
    --muted: #64748b;
    --line: #e5e7eb;
    --border: rgba(255, 255, 255, 0.12);

    --serif: "Playfair Display", Georgia, "Times New Roman", serif;
    --sans: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

    --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 14px 35px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.16);
    --radius: 12px;
    --maxw: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
    font-family: var(--serif);
    color: var(--navy);
    line-height: 1.15;
    font-weight: 700;
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Yardımcı başlık bloğu ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.section { padding: 110px 0; }
.section-head { max-width: 620px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: 42px; margin-bottom: 18px; }
.section-head p { font-size: 17px; color: var(--muted); }

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.25s ease;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(200, 164, 93, 0.4);
}
.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--gold); color: var(--gold-light); }
.btn-dark {
    background: var(--navy);
    color: var(--white);
}
.btn-dark:hover { background: var(--navy-soft); transform: translateY(-2px); }

/* =============================================================
   HEADER / NAVBAR
   ============================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 24px 0;
    background: transparent;
    transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
/* Kaydırınca: açık, buzlu cam zemin + lacivert yazılar (üsttekinin tam zıttı) */
.site-header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.navbar {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    min-height: 56px;
    padding: 0 32px;
    display: flex;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-right: 44px;
}
.navbar-logo .logo-mark {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}
.navbar-logo .logo-text { display: flex; flex-direction: column; line-height: 1; }
.navbar-logo .logo-name {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    transition: color 0.35s ease;
}
.navbar-logo .logo-sub {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 5px;
}
/* Kaydırınca logo laciverte döner */
.site-header.scrolled .navbar-logo .logo-name { color: var(--navy); }

.navbar-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-links { display: flex; align-items: center; gap: 30px; }
.navbar-links > li { position: relative; }
.navbar-links a {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
    transition: color 0.35s ease;
}
.site-header.scrolled .navbar-links a { color: var(--navy); }
.navbar-links a:hover,
.navbar-links a.active,
.site-header.scrolled .navbar-links a:hover,
.site-header.scrolled .navbar-links a.active { color: var(--gold-dark); }
.navbar-links a.active::after,
.navbar-links > li > a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.dropdown > a { display: flex; align-items: center; gap: 6px; }
.dropdown-menu {
    position: absolute;
    top: 38px;
    left: -12px;
    min-width: 230px;
    padding: 12px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li a {
    display: block;
    padding: 12px 14px;
    color: var(--navy);
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 6px;
}
.dropdown-menu li a:hover { background: var(--cream); color: var(--gold-dark); }
.dropdown-menu li a::after { display: none !important; }

.navbar-contact {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: 36px;
    padding-left: 36px;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    transition: border-color 0.35s ease;
}
.site-header.scrolled .navbar-contact { border-left-color: var(--line); }
.phone-link { display: inline-flex; align-items: center; color: var(--white); font-size: 14px; font-weight: 600; white-space: nowrap; transition: color 0.35s ease; }
.site-header.scrolled .phone-link { color: var(--navy); }
.phone-link > span:first-child { color: var(--gold); margin-right: 8px; }
.phone-nums { display: flex; flex-direction: column; line-height: 1.3; }
.phone-nums a { color: inherit; transition: color 0.25s ease; }
.phone-nums a:hover { color: var(--gold); }
.appointment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: 0.25s ease;
    white-space: nowrap;
}
.appointment-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(200, 164, 93, 0.35); }

.mobile-menu-btn { display: none; margin-left: auto; background: transparent; border: 0; cursor: pointer; }
.mobile-menu-btn span { display: block; width: 26px; height: 2px; margin: 6px 0; background: var(--white); transition: background 0.35s ease; }
.site-header.scrolled .mobile-menu-btn span { background: var(--navy); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
    position: relative;
    padding: 130px 32px 150px;
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(200, 164, 93, 0.14), transparent 60%),
        linear-gradient(135deg, var(--navy-dark), var(--navy) 60%, #16233d);
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M0 0h1v60H0zM0 0h60v1H0z' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-subtitle {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 22px;
}
.hero h1 {
    max-width: 820px;
    font-size: 60px;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 26px;
}
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero p.lead {
    max-width: 600px;
    font-size: 18px;
    line-height: 1.75;
    color: #cbd5e1;
    margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero alt güven göstergeleri */
.hero-trust {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.hero-trust .item .num {
    font-family: var(--serif);
    font-size: 38px;
    color: var(--white);
    font-weight: 700;
}
.hero-trust .item .num span { color: var(--gold); }
.hero-trust .item .label {
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* =============================================================
   GENEL BÖLÜMLER
   ============================================================= */

/* About preview */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 460px;
    background:
        radial-gradient(600px 300px at 30% 20%, rgba(200, 164, 93, 0.25), transparent 70%),
        linear-gradient(135deg, var(--navy), var(--navy-soft));
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: flex-end;
    padding: 32px;
}
.about-visual .emblem {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 150px; height: 150px;
    opacity: 0.9;
}
.about-visual .badge {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    padding: 22px 26px;
    color: var(--white);
}
.about-visual .badge strong { font-family: var(--serif); font-size: 28px; color: var(--gold); display: block; }
.about-visual .badge span { font-size: 13px; color: #cbd5e1; }

.about-text h2 { font-size: 40px; margin-bottom: 22px; }
.about-text p { color: var(--muted); margin-bottom: 18px; font-size: 16px; }
.about-list { margin: 26px 0 34px; }
.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    color: var(--text);
    font-weight: 500;
}
.about-list li svg { flex-shrink: 0; margin-top: 2px; }

/* ---------- Editöryel "Hakkımızda" (yıl bloklu) ---------- */
.about-editorial { background: var(--cream); }
.ae-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}
.ae-text h2 { font-size: 46px; line-height: 1.12; margin: 6px 0 30px; }
.ae-text p { color: var(--muted); font-size: 16px; margin-bottom: 18px; max-width: 560px; }
.ae-divider { height: 1px; background: var(--line); margin: 36px 0 26px; max-width: 560px; }
.ae-founder { font-family: var(--serif); font-size: 27px; font-weight: 700; color: var(--navy); }
.ae-founder-role {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 8px;
}

.ae-year {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.ae-orn { color: var(--gold); }
.ae-orn.bottom { transform: scaleY(-1); }
.ae-since {
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--muted);
    margin: 14px 0 6px;
}
.ae-bigyear {
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    font-size: 138px;
    line-height: 1;
    /* harf aralığı satırın sağında boşluk bırakıp ortalamayı bozuyordu; kaldırıldı */
    letter-spacing: 0;
    /* italik glifler satır kutusundan taşıyor; background-clip:text gradyanı yalnızca
       kutuyu boyadığından, taşan kısımların görünmesi için dikey padding ile boyama
       alanını büyütüyoruz. Üst boşluk negatif margin ile dengeleniyor. */
    padding: 0.2em 0;
    margin: -0.34em 0 0;
    background: linear-gradient(140deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.ae-caption {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    font-weight: 600;
    margin: 6px 0 0;
}

@media (max-width: 1000px) {
    .ae-grid { grid-template-columns: 1fr; gap: 56px; }
    .ae-text h2 { font-size: 36px; }
    .ae-bigyear { font-size: 110px; }
}
@media (max-width: 600px) {
    .ae-bigyear { font-size: 84px; }
    .ae-text h2 { font-size: 30px; }
}

/* Stats şeridi */
.stats {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 70px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stats-grid .stat .num {
    font-family: var(--serif);
    font-size: 50px;
    font-weight: 700;
    color: var(--gold);
}
.stats-grid .stat .label { color: #cbd5e1; font-size: 14px; margin-top: 8px; letter-spacing: 0.5px; }

/* ---------- Mühür Madalyonları (özgün istatistik bölümü) ---------- */
.stats-band {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background:
        radial-gradient(900px 420px at 50% -25%, rgba(200, 164, 93, 0.12), transparent 60%),
        linear-gradient(135deg, var(--navy-dark), var(--navy));
}
.stats-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 560px;
    height: 560px;
    transform: translate(-50%, -50%);
    color: var(--gold);
    opacity: 0.05;
    pointer-events: none;
}
.stats-title {
    text-align: center;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.stats-title::before,
.stats-title::after {
    content: "";
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.stats-title::after { transform: scaleX(-1); }

.seal-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.seal-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* madalyonları birbirine bağlayan "miras" çizgisi — her boşlukta,
   madalyon kenarından komşusunun kenarına tam oturacak şekilde */
.seal-item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 84px;
    left: calc(50% + 84px);
    width: calc(100% - 168px);
    height: 1px;
    background: rgba(200, 164, 93, 0.45);
}
.seal {
    position: relative;
    width: 168px;
    height: 168px;
    border-radius: 50%;
    border: 1px solid rgba(200, 164, 93, 0.55);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.seal::after {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 50%;
    border: 1px solid rgba(200, 164, 93, 0.25);
}
.seal-item:hover .seal {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.seal .num {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    font-size: 48px;
    line-height: 1;
    padding: 0.22em 0;
    background: linear-gradient(140deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.seal-label {
    margin-top: 24px;
    color: #cbd5e1;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .seal-row { grid-template-columns: repeat(2, 1fr); gap: 54px 0; }
    .seal-item::before { display: none; }
}
@media (max-width: 520px) {
    .seal-row { grid-template-columns: 1fr; }
    .seal { width: 150px; height: 150px; }
    .seal .num { font-size: 42px; }
}

/* Practice / Hizmet kartları */
.practice { background: var(--cream); }
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 30px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
    width: 60px; height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200,164,93,0.16), rgba(200,164,93,0.06));
    color: var(--gold-dark);
    margin-bottom: 24px;
}
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.service-card .more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 14px;
}
.service-card .more svg { transition: 0.25s; }
.service-card:hover .more svg { transform: translateX(4px); }

/* Why us / Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 50px;
}
.feature {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}
.feature .num {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--gold-dark);
    width: 54px; height: 54px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
}
.feature h3 { font-size: 20px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; }

/* Team / Ekip */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.team-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo {
    height: 280px;
    background:
        radial-gradient(400px 200px at 50% 10%, rgba(200,164,93,0.2), transparent 70%),
        linear-gradient(135deg, var(--navy), var(--navy-soft));
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-photo .initials {
    font-family: var(--serif);
    font-size: 56px;
    color: var(--gold);
    font-weight: 700;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.team-info { padding: 24px 26px; }
.team-info h3 { font-size: 20px; margin-bottom: 4px; }
.team-info .role { color: var(--gold-dark); font-weight: 600; font-size: 14px; margin-bottom: 12px; }
.team-info p { color: var(--muted); font-size: 14px; }
.team-info .more { margin-top: 14px; }

/* Kurucu ikili (2 kişilik ortalanmış kadro) */
.team-grid.duo {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin-inline: auto;
}
.team-grid.duo .team-photo { height: 360px; }

/* Vizyon & Misyon (hakkımızda) */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
@media (max-width: 768px) {
    .vm-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Ana sayfa kurucular vitrini */
.founders {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 520px at 82% -12%, rgba(200, 164, 93, 0.18), transparent 60%),
        linear-gradient(165deg, var(--navy-dark), var(--navy) 55%, var(--navy-soft));
}
.founders .section-head { margin-bottom: 54px; }
.founders .section-head .eyebrow { color: var(--gold-light); }
.founders .section-head h2 {
    color: #fff;
    font-size: clamp(2rem, 1.2rem + 3vw, 3.1rem);
    letter-spacing: -0.5px;
}
.founders .section-head p { color: #cbd5e1; }

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin-inline: auto;
    align-items: stretch;
}
.founder-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.founder-img { position: relative; z-index: 0; }
.founder-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1143 / 1600;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: saturate(0.96) contrast(1.02);
    transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}
.founder-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(7, 17, 31, 0.95) 2%, rgba(7, 17, 31, 0.5) 30%, rgba(7, 17, 31, 0) 58%);
    transition: opacity 0.5s ease;
}
.founder-card::after {
    content: "";
    position: absolute;
    inset: 13px;
    z-index: 2;
    border: 1px solid rgba(200, 164, 93, 0.55);
    border-radius: 9px;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
.founder-card:hover::after { opacity: 1; transform: scale(1); }
.founder-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 28px 28px 26px;
}
.founder-meta .fk-line {
    display: block;
    width: 38px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 14px;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.founder-meta h3 {
    color: #fff;
    font-size: 27px;
    line-height: 1.12;
    margin: 0;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}
.founder-meta .role {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    margin-top: 7px;
}
.founder-meta .fk-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin-top: 18px;
    max-height: 0;
    opacity: 0;
    transform: translateY(8px);
    overflow: hidden;
    transition: opacity 0.45s ease, transform 0.45s ease, max-height 0.45s ease;
}
.founder-meta .fk-link svg { transition: transform 0.3s ease; }
.founder-card:hover { transform: translateY(-10px); box-shadow: 0 34px 70px rgba(0, 0, 0, 0.45); }
.founder-card:hover img { transform: scale(1.06); filter: saturate(1.06) contrast(1.04); }
.founder-card:hover .fk-line { width: 66px; }
.founder-card:hover .fk-link,
.founder-card:focus-visible .fk-link {
    opacity: 1;
    transform: translateY(0);
    max-height: 40px;
}
.founder-card:hover .fk-link svg { transform: translateX(4px); }
.founder-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (max-width: 640px) {
    .founders-grid { grid-template-columns: 1fr; max-width: 380px; }
    .founder-meta .fk-link { opacity: 1; transform: none; max-height: 40px; }
}

/* Biyografi sayfası */
.bio-section { padding: var(--space-section, 80px) 0; }
.bio-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}
.bio-photo {
    position: sticky;
    top: 100px;
    max-width: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}
.bio-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 1143 / 1600;
    object-fit: cover;
    display: block;
}
.bio-photo .bio-photo-meta {
    padding: 18px 22px;
    background: var(--white);
}
.bio-photo-meta .name { font-family: var(--serif); font-size: 22px; line-height: 1.2; }
.bio-photo-meta .role { color: var(--gold-dark); font-weight: 600; font-size: 14px; margin-top: 4px; }
.bio-body h2 { font-size: 30px; margin: 0 0 6px; }
.bio-body .eyebrow { margin-bottom: 16px; }
.bio-body p { color: var(--muted); margin-bottom: 16px; line-height: 1.75; }
.bio-body h3 { font-size: 19px; margin: 28px 0 14px; }
.bio-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 6px 0 8px; }
.bio-tags span {
    border: 1px solid var(--line);
    background: var(--cream);
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 999px;
}
.bio-contact-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

@media (max-width: 860px) {
    .bio-grid { grid-template-columns: 1fr; gap: 28px; justify-items: center; }
    .bio-photo { position: static; width: 100%; max-width: 300px; margin-inline: auto; }
    .bio-body { width: 100%; }
}

/* CTA banner */
.cta {
    background:
        radial-gradient(900px 400px at 85% 20%, rgba(200,164,93,0.18), transparent 60%),
        linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 90px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-inner h2 { color: var(--white); font-size: 40px; max-width: 620px; }
.cta-inner p { color: #cbd5e1; margin-top: 14px; max-width: 560px; }

/* =============================================================
   İÇ SAYFA — Page hero
   ============================================================= */
.page-hero {
    padding: 150px 32px 80px;
    background:
        radial-gradient(900px 400px at 80% -20%, rgba(200,164,93,0.12), transparent 60%),
        linear-gradient(135deg, var(--navy-dark), var(--navy));
    text-align: center;
}
.page-hero h1 { color: var(--white); font-size: 50px; margin-bottom: 16px; }
.page-hero p { color: #cbd5e1; max-width: 600px; margin: 0 auto; font-size: 17px; }
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 13px;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }

/* Değerler / değer kartları (hakkımızda) */
.value-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 30px;
    text-align: center;
    transition: 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .icon {
    width: 64px; height: 64px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(200,164,93,0.16), rgba(200,164,93,0.06));
    color: var(--gold-dark);
}
.value-card h3 { font-size: 21px; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 15px; }

/* =============================================================
   İLETİŞİM
   ============================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}
.contact-info .info-item {
    display: flex;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}
.contact-info .info-item:last-child { border-bottom: 0; }
.contact-info .info-item .ic {
    width: 50px; height: 50px;
    flex-shrink: 0;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(200,164,93,0.16), rgba(200,164,93,0.06));
    color: var(--gold-dark);
}
.contact-info .info-item h4 { font-family: var(--sans); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 6px; }
.contact-info .info-item p { color: var(--ink); font-weight: 500; }

.contact-form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-size: 26px; margin-bottom: 8px; }
.contact-form > p { color: var(--muted); margin-bottom: 28px; font-size: 15px; }
/* WhatsApp iletişim paneli */
.contact-wa {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.wa-badge {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 10px 24px rgba(18, 140, 126, 0.3);
    margin-bottom: 22px;
}
.contact-wa h3 { font-size: 26px; margin-bottom: 8px; }
.contact-wa > p { color: var(--muted); margin-bottom: 26px; font-size: 15px; line-height: 1.65; }
.wa-actions { display: flex; flex-direction: column; gap: 14px; }
.wa-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--cream);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.wa-btn-ic {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #25d366, #128c7e);
}
.wa-btn-text { display: flex; flex-direction: column; line-height: 1.3; flex: 1; }
.wa-btn-text strong { color: var(--navy); font-size: 15.5px; }
.wa-btn-text small { color: var(--muted); font-size: 14px; letter-spacing: 0.3px; white-space: nowrap; }
.wa-btn-arrow { color: var(--gold-dark); flex: none; transition: transform 0.25s ease; }
.wa-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 211, 102, 0.5);
    background: #fff;
}
.wa-btn:hover .wa-btn-arrow { transform: translateX(4px); }
.wa-note { margin-top: 22px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
.wa-note a { color: var(--gold-dark); font-weight: 600; }
.wa-note a:hover { color: var(--gold); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-family: var(--sans);
    font-size: 15px;
    color: var(--ink);
    background: var(--bg);
    transition: 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 164, 93, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.map-embed {
    margin-top: 70px;
    border-radius: var(--radius);
    overflow: hidden;
    height: 380px;
    border: 1px solid var(--line);
    background:
        repeating-linear-gradient(45deg, #eef2f7, #eef2f7 12px, #e8edf3 12px, #e8edf3 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-weight: 600;
}
.map-link {
    margin-top: 16px;
    text-align: right;
}
.map-link a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 14px;
}
.map-link a:hover { color: var(--gold); }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
    background: var(--navy-dark);
    color: #cbd5e1;
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
}
.footer-brand .navbar-logo { border: 0; padding: 0; margin: 0 0 22px; }
.footer-brand p { font-size: 15px; line-height: 1.7; color: #94a3b8; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    transition: 0.25s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }

.footer-col h4 {
    font-family: var(--sans);
    color: var(--white);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 13px; }
.footer-col ul li a { font-size: 15px; color: #94a3b8; transition: 0.2s; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 15px; color: #94a3b8; }
.footer-contact li svg { flex-shrink: 0; color: var(--gold); margin-top: 3px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    font-size: 13px;
    color: #64748b;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom a:hover { color: var(--gold); }

/* =============================================================
   ANİMASYON — reveal on scroll
   ============================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1100px) {
    .navbar { position: relative; flex-wrap: wrap; }
    .mobile-menu-btn { display: block; }
    .navbar-logo { border-right: 0; margin-right: auto; padding-right: 0; }
    .navbar-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 0; right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: var(--white);
        border-radius: 8px;
        padding: 22px;
        box-shadow: var(--shadow-lg);
    }
    .navbar-menu.active { display: flex; }
    .navbar-links { flex-direction: column; align-items: stretch; gap: 0; }
    .navbar-links li { border-bottom: 1px solid var(--line); }
    .navbar-links a { display: block; padding: 16px 0; color: var(--navy); }
    .navbar-links a.active::after,
    .navbar-links > li > a:hover::after { display: none; }
    .dropdown-menu {
        position: static; opacity: 1; visibility: visible;
        transform: none; box-shadow: none; padding: 0 0 12px; display: none;
    }
    .dropdown.open .dropdown-menu { display: block; }
    .navbar-contact { border-left: 0; padding-left: 0; margin-left: 0; width: 100%; margin-top: 22px; flex-direction: column; align-items: center; }
    .phone-link { color: var(--navy); justify-content: center; padding: 10px 0; }
    .phone-nums { flex-direction: row; align-items: center; gap: 8px; }
    .phone-nums a:first-child::after { content: "·"; margin-left: 8px; color: var(--gold); }
    .appointment-btn { width: 100%; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { min-height: 340px; }
    .card-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

    .hero h1 { font-size: 44px; }
    .section-head h2, .about-text h2, .cta-inner h2 { font-size: 34px; }
    .page-hero h1 { font-size: 40px; }
}

@media (max-width: 700px) {
    .section { padding: 70px 0; }
    .card-grid, .team-grid, .features-grid, .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero { padding: 120px 20px 90px; }
    .hero h1 { font-size: 34px; }
    .hero-trust { gap: 28px; }
    .contact-form { padding: 26px; }
    .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 600px) {
    .site-header { padding: 12px; }
    .navbar { min-height: 64px; padding: 0 18px; }
    .navbar-logo .logo-name { font-size: 17px; }
    .stats-grid { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 32px; }
}
