/* ============ TEMEL ============ */
:root {
  --navy: #0e1a2b;
  --navy-2: #13233a;
  --navy-3: #1b3050;
  --gold: #c9a24b;
  --gold-2: #b8903a;
  --cream: #faf7f1;
  --text: #2a2f36;
  --muted: #6b7280;
  --line: #e7e2d8;
  --white: #ffffff;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--white); line-height: 1.65; font-size: 16px; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, 92%); margin: 0 auto; }
h1, h2, h3, .brand-text strong { font-family: var(--serif); }

.sec-label {
  display: inline-block; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 700; color: var(--gold-2); margin-bottom: 12px;
}
.sec-label.gold { color: var(--gold); }
.sec-title { font-size: clamp(26px, 4vw, 38px); color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.sec-desc { color: var(--muted); max-width: 640px; }
.sec-head.center { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 44px; }
.sec-head.center .sec-desc { margin: 0 auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 13px 26px; border-radius: 6px; font-weight: 600; font-size: 15px;
  border: 2px solid transparent; cursor: pointer; transition: all .2s ease; white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-3); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { border-color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ============ ÜST BAR & NAV ============ */
.topbar { background: var(--navy); color: rgba(255,255,255,.75); font-size: 13px; padding: 8px 0; }
.topbar-in { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 18px; }
.topbar a:hover { color: var(--gold); }

.nav { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--line); transition: box-shadow .2s; }
.nav.scrolled { box-shadow: 0 4px 20px rgba(14,26,43,.08); }
.nav-in { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; flex: none; }
.brand-icon svg { width: 26px; height: 26px; }
.brand-icon.brand-icon-img { padding: 0; }
.brand-icon.brand-icon-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 19px; letter-spacing: 1px; color: var(--navy); }
.brand-text small { font-size: 10.5px; letter-spacing: 3px; color: var(--gold-2); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links > a { font-size: 15px; font-weight: 500; color: var(--text); position: relative; padding: 4px 0; }
.nav-links > a:not(.nav-cta):hover { color: var(--gold-2); }
.nav-links > a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--gold); transition: width .2s;
}
.nav-links > a:not(.nav-cta):hover::after { width: 100%; }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2.5px; background: var(--navy); margin: 5px 0; border-radius: 2px; }

/* ============ HERO ============ */
.hero { position: relative; background: var(--navy); color: var(--white); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 80% 10%, rgba(201,162,75,.14), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 100%, rgba(27,48,80,.9), transparent 70%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
}
.hero-bg.hero-bg-img {
  background-size: cover;
  background-position: center;
}
.hero-bg.hero-bg-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,20,34,.78) 0%, rgba(14,26,43,.88) 100%);
}
.hero::after {
  content: '⚖'; position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-size: 420px; color: rgba(255,255,255,.03); line-height: 1; pointer-events: none;
}
.hero-in { position: relative; padding: 90px 0 100px; }
.hero-content { max-width: 680px; }
.hero-badge {
  display: inline-block; border: 1px solid rgba(201,162,75,.5); color: var(--gold);
  padding: 7px 18px; border-radius: 999px; font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 600; margin-bottom: 24px;
}
.hero h1 { font-size: clamp(34px, 5.5vw, 54px); line-height: 1.15; margin-bottom: 12px; }
.hero-sub { font-family: var(--serif); font-size: clamp(18px, 2.4vw, 24px); color: var(--gold); margin-bottom: 18px; }
.hero-desc { color: rgba(255,255,255,.78); max-width: 560px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ ÖZELLİKLER ============ */
.features { background: var(--cream); padding: 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; transform: translateY(-44px); }
.feature-card {
  background: var(--white); padding: 30px 26px; border: 1px solid var(--line);
  border-right-width: 0; transition: all .2s;
}
.feature-card:first-child { border-radius: 10px 0 0 10px; }
.feature-card:last-child { border-right-width: 1px; border-radius: 0 10px 10px 0; }
.feature-card:hover { box-shadow: 0 12px 30px rgba(14,26,43,.1); transform: translateY(-3px); }
.feature-icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(201,162,75,.13); color: var(--gold-2); display: grid; place-items: center; margin-bottom: 16px; }
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); }

/* ============ İSTATİSTİKLER ============ */
.stats { background: var(--navy); color: var(--white); padding: 34px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-value { font-family: var(--serif); font-size: 34px; color: var(--gold); }
.stat-label { font-size: 13px; letter-spacing: 1px; color: rgba(255,255,255,.7); text-transform: uppercase; }

/* ============ HAKKIMIZDA ============ */
.section { padding: 84px 0; }
.about { background: var(--cream); }
.about-in { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.about-visual {
  background: linear-gradient(160deg, var(--navy-2), var(--navy)); border-radius: 14px;
  aspect-ratio: 4/4.6; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px; color: var(--gold); box-shadow: 0 24px 50px rgba(14,26,43,.22); position: relative; overflow: hidden;
}
.about-visual::before {
  content: ''; position: absolute; inset: 14px; border: 1px solid rgba(201,162,75,.35); border-radius: 10px;
}
.about-emblem svg { width: 130px; height: 130px; }
.about-visual-photo { padding: 0; aspect-ratio: 4/4.6; }
.about-visual-photo::before { display: none; }
.about-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; display: block; }
.about-emblem-caption { text-align: center; color: var(--white); position: relative; }
.about-emblem-caption strong { display: block; font-family: var(--serif); font-size: 22px; letter-spacing: 2px; }
.about-emblem-caption span { font-size: 12px; letter-spacing: 2px; color: rgba(255,255,255,.6); text-transform: uppercase; }
.about-body p { margin-bottom: 16px; color: var(--muted); }
.about-creds { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0 28px; }
.cred { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 12px 16px; }
.cred-k { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold-2); font-weight: 700; }
.cred-v { font-weight: 600; color: var(--navy); font-size: 14.5px; }

/* ============ ÇALIŞMA ALANLARI ============ */
.areas { background: var(--white); }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.area-card {
  position: relative; border: 1px solid var(--line); border-radius: 12px; padding: 28px 24px 24px;
  transition: all .2s; background: var(--white); overflow: hidden; display: flex; flex-direction: column;
}
.area-card:hover { border-color: var(--gold); box-shadow: 0 14px 34px rgba(14,26,43,.09); transform: translateY(-3px); }
.area-num {
  font-family: var(--serif); font-size: 15px; color: var(--gold-2); border: 1px solid rgba(201,162,75,.5);
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 16px;
}
.area-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.area-card p { font-size: 14px; color: var(--muted); flex: 1; }
.area-arrow { position: absolute; right: 20px; top: 24px; color: var(--line); font-size: 20px; transition: all .2s; }
.area-card:hover .area-arrow { color: var(--gold); transform: translateX(4px); }

/* ============ ÖNE ÇIKAN ============ */
.featured { background: var(--navy); color: var(--white); }
.featured-in { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.featured .sec-title { color: var(--white); }
.featured p { color: rgba(255,255,255,.75); margin-bottom: 16px; }
.featured .btn { margin-top: 8px; }
.tags-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 30px; }
.tags-card h3 { color: var(--gold); margin-bottom: 18px; font-size: 19px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-size: 13px; padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85); transition: all .2s;
}
.tag:hover { border-color: var(--gold); color: var(--gold); }

/* ============ YORUMLAR ============ */
.testimonials { background: var(--cream); }
.rating-badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: var(--gold);
  font-family: var(--serif); font-size: 22px; font-weight: 700; padding: 8px 22px; border-radius: 999px; margin-bottom: 16px;
}
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.testi-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 26px; transition: all .2s; }
.testi-card:hover { box-shadow: 0 12px 30px rgba(14,26,43,.08); }
.testi-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--gold);
  display: grid; place-items: center; font-weight: 700; font-size: 15px; flex: none;
}
.testi-head strong { display: block; color: var(--navy); }
.testi-head small { color: var(--muted); font-size: 12.5px; }
.testi-stars { margin-left: auto; color: var(--gold); font-size: 13px; letter-spacing: 2px; }
.testi-text { font-size: 14.5px; color: var(--muted); margin-bottom: 14px; }
.testi-tag {
  display: inline-block; font-size: 12px; background: rgba(201,162,75,.13); color: var(--gold-2);
  padding: 4px 12px; border-radius: 999px; font-weight: 600;
}

/* ============ SSS ============ */
.faq { background: var(--white); }
.faq-in { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 15.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { color: var(--gold-2); font-size: 22px; line-height: 1; transition: transform .2s; flex: none; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 18px; color: var(--muted); font-size: 14.5px; }

/* ============ İLETİŞİM ============ */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 56px; }
.contact-card, .contact-form-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 32px; }
.contact-rows { display: flex; flex-direction: column; }
.contact-row { display: flex; flex-direction: column; gap: 2px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-row strong { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold-2); }
.contact-row span { color: var(--navy); font-weight: 500; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.map-link { display: inline-block; margin-top: 18px; color: var(--gold-2); font-weight: 600; font-size: 14px; }
.map-link:hover { text-decoration: underline; }
.contact-form-card h3 { color: var(--navy); margin-bottom: 18px; font-size: 22px; }
.contact-form-card input, .contact-form-card textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px;
  font-family: var(--sans); font-size: 14.5px; margin-bottom: 12px; background: var(--cream);
  transition: border-color .2s; resize: vertical;
}
.contact-form-card input:focus, .contact-form-card textarea:focus { outline: none; border-color: var(--gold); }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.form-success { font-size: 14px; color: #1a7a3c; font-weight: 600; margin-top: 10px; }

.cta-band {
  background: linear-gradient(120deg, var(--navy-2), var(--navy)); border-radius: 16px;
  padding: 40px 44px; display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; color: var(--white);
}
.cta-band h3 { font-size: 26px; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.75); max-width: 620px; font-size: 15px; }
.cta-band-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer { background: var(--navy); color: rgba(255,255,255,.72); padding: 60px 0 0; font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr; gap: 44px; padding-bottom: 44px; }
.footer h4 { color: var(--white); font-family: var(--serif); font-size: 17px; margin: 18px 0 10px; }
.brand-footer { margin-bottom: 6px; }
.brand-footer .brand-text strong { color: var(--white); }
.footer-contact a { color: var(--gold); }
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; display: flex;
  justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 13px;
}
.admin-link { color: rgba(255,255,255,.35); }
.admin-link:hover { color: var(--gold); }

/* ============ MENÜ (DROPDOWN) ============ */
.has-dropdown { position: relative; }
.has-dropdown > .nav-link .caret { font-size: 10px; color: var(--gold-2); margin-left: 3px; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: -14px; min-width: 230px;
  background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--gold);
  border-radius: 10px; box-shadow: 0 18px 40px rgba(14,26,43,.14);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .18s ease; z-index: 60;
}
.has-dropdown:hover .dropdown, .has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 10px 14px; font-size: 14px; border-radius: 7px; color: var(--text); font-weight: 500;
}
.dropdown a:hover { background: var(--cream); color: var(--gold-2); }
.nav-links .gemilex-btn {
  background: linear-gradient(120deg, var(--navy), var(--navy-3)); color: var(--gold);
  border: 1px solid rgba(201,162,75,.55); padding: 9px 18px; border-radius: 999px;
  font-weight: 700; letter-spacing: .5px; font-size: 14px;
}
.nav-links .gemilex-btn:hover { color: #fff; border-color: var(--gold); transform: translateY(-1px); }

/* ============ SAYFA BAŞLIĞI ============ */
.page-hero {
  background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: var(--white);
  padding: 64px 0 56px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: '⚖'; position: absolute; right: -30px; bottom: -60px; font-size: 260px;
  color: rgba(255,255,255,.04); line-height: 1; pointer-events: none;
}
.page-hero h1 { font-size: clamp(30px, 4.5vw, 44px); margin: 6px 0 12px; position: relative; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 640px; position: relative; }
.crumb { display: inline-block; font-size: 13px; color: var(--gold); letter-spacing: 1px; margin-bottom: 10px; }
.crumb:hover { text-decoration: underline; }
.center-cta { text-align: center; margin-top: 36px; }

/* ============ DETAY SAYFALARI ============ */
.detail-in { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: start; }
.detail-p { color: var(--text); font-size: 16px; margin-bottom: 18px; line-height: 1.8; }
.side-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 26px; margin-bottom: 20px; }
.side-card h3 { color: var(--navy); margin-bottom: 14px; font-size: 19px; }
.side-card-navy { background: var(--navy); border-color: var(--navy); }
.side-card-navy h3 { color: var(--gold); }
.side-card-navy p { color: rgba(255,255,255,.75); font-size: 14px; margin-bottom: 16px; }
.side-phone { display: block; text-align: center; margin-top: 12px; color: var(--gold); font-weight: 700; font-family: var(--serif); font-size: 19px; }
.check-list { list-style: none; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; font-size: 14.5px; color: var(--text); }
.check-list li svg { width: 17px; height: 17px; color: var(--gold-2); flex: none; margin-top: 3px; }
.note-card { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 26px; margin-top: 24px; }
.note-card h3 { color: var(--navy); margin-bottom: 10px; }

/* ============ BİLGİ MERKEZİ ============ */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 28px 24px;
  display: flex; flex-direction: column; transition: all .2s;
}
.cat-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(14,26,43,.09); }
.cat-count {
  align-self: flex-start; font-size: 12px; background: rgba(201,162,75,.13); color: var(--gold-2);
  padding: 4px 12px; border-radius: 999px; font-weight: 700; margin-bottom: 14px;
}
.cat-card h3 { color: var(--navy); font-size: 21px; margin-bottom: 8px; }
.cat-card p { color: var(--muted); font-size: 14px; flex: 1; }
.cat-link { color: var(--gold-2); font-weight: 600; font-size: 14px; margin-top: 16px; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 26px 24px;
  display: flex; flex-direction: column; transition: all .2s;
}
.post-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(14,26,43,.09); }
.post-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 12.5px; color: var(--muted); margin-bottom: 14px; }
.post-tag {
  background: rgba(201,162,75,.13); color: var(--gold-2); padding: 3px 11px; border-radius: 999px;
  font-weight: 700; font-size: 11.5px; white-space: nowrap;
}
.post-card h3 { color: var(--navy); font-size: 18.5px; line-height: 1.35; margin-bottom: 10px; }
.post-card p { color: var(--muted); font-size: 14px; flex: 1; }

/* ============ MAKALE SAYFASI ============ */
.article-hero {
  background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: var(--white); padding: 58px 0 48px;
}
.article-hero h1 { font-size: clamp(26px, 3.6vw, 38px); line-height: 1.25; margin: 14px 0 12px; }
.article-meta { color: rgba(255,255,255,.65); font-size: 14px; }
.article-cover { width: 100%; border-radius: 14px; margin-bottom: 26px; box-shadow: 0 14px 34px rgba(14,26,43,.14); display: block; }
.article-body { max-width: 780px; }
.article-lead {
  font-family: var(--serif); font-size: 20px; color: var(--navy); line-height: 1.55;
  border-left: 3px solid var(--gold); padding-left: 20px; margin-bottom: 26px;
}
.article-body p { color: var(--text); font-size: 16px; line-height: 1.85; margin-bottom: 18px; }
.article-cta {
  background: var(--cream); border: 1px solid var(--line); border-radius: 14px;
  padding: 30px; margin-top: 36px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.article-cta h3 { color: var(--navy); font-size: 21px; margin-bottom: 6px; }
.article-cta p { color: var(--muted); font-size: 14px; margin: 0; }

/* ============ EKİP ============ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 30px 26px; text-align: center; transition: all .2s; }
.team-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(14,26,43,.09); }
.team-avatar {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(140deg, var(--navy-2), var(--navy)); color: var(--gold);
  display: grid; place-items: center; font-family: var(--serif); font-size: 27px; font-weight: 700;
}
.team-card h3 { color: var(--navy); font-size: 20px; }
.team-role { display: block; color: var(--gold-2); font-weight: 600; font-size: 13.5px; margin: 4px 0 2px; }
.team-baro { display: block; color: var(--muted); font-size: 12.5px; margin-bottom: 14px; }
.team-card p { color: var(--muted); font-size: 14px; }

/* ============ GEMILEX (KOYU TEMA) ============ */
.gx-hero {
  position: relative; background: #07090f; color: #fff; padding: 110px 0 120px; overflow: hidden;
}
.gx-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 30%, #000 30%, transparent 75%);
}
.gx-hero-in { position: relative; text-align: center; max-width: 780px; margin: 0 auto; }
.gx-badge {
  display: inline-block; background: rgba(99,102,241,.14); color: #a5b4fc; border: 1px solid rgba(99,102,241,.4);
  padding: 8px 20px; border-radius: 999px; font-size: 13px; font-weight: 600; letter-spacing: .8px; margin-bottom: 26px;
}
.gx-hero h1 {
  font-size: clamp(42px, 7vw, 72px); background: linear-gradient(120deg, #fff, #a5b4fc);
  -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 10px;
}
.gx-sub { font-size: clamp(17px, 2.4vw, 22px); color: #c7d2fe; margin-bottom: 18px; font-weight: 500; }
.gx-desc { color: #9aa3b5; max-width: 640px; margin: 0 auto 30px; font-size: 15.5px; }
.gx-section { background: #07090f; padding: 60px 0; }
.gx-title { color: #fff; font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 14px; }
.gx-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.gx-card {
  position: relative; background: #0d1117; border: 1px solid #1e2635; border-radius: 14px;
  padding: 26px 24px; overflow: hidden; transition: all .2s;
}
.gx-card:hover { border-color: #6366f1; transform: translateY(-3px); }
.gx-glow {
  position: absolute; top: -30px; right: -30px; width: 90px; height: 90px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.25), transparent 70%);
}
.gx-card h3 { color: #e5e9f2; font-size: 18px; margin-bottom: 8px; }
.gx-card p { color: #9aa3b5; font-size: 14px; }
.gx-code-in { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.gx-code-section { background: #090c14; border-top: 1px solid #141b29; border-bottom: 1px solid #141b29; }
.code-window { background: #0d1117; border: 1px solid #1e2635; border-radius: 12px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.code-bar { display: flex; align-items: center; gap: 7px; background: #121826; padding: 11px 16px; }
.code-bar span { width: 11px; height: 11px; border-radius: 50%; background: #2d3648; }
.code-bar span:first-child { background: #f16a5d; }
.code-bar span:nth-child(2) { background: #f4bd4f; }
.code-bar span:nth-child(3) { background: #58c56c; }
.code-bar em { margin-left: auto; color: #6b7690; font-size: 12px; font-style: normal; }
.code-window pre {
  margin: 0; padding: 22px; overflow-x: auto;
  font-family: 'JetBrains Mono', monospace; font-size: 13px; line-height: 1.7; color: #c3cce6;
}
.gx-form-in { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.gx-form { display: flex; gap: 10px; flex-wrap: wrap; }
.gx-form input {
  flex: 1; min-width: 220px; background: #0d1117; border: 1px solid #1e2635; color: #e5e9f2;
  padding: 13px 16px; border-radius: 8px; font-size: 15px; font-family: var(--sans);
}
.gx-form input:focus { outline: none; border-color: #6366f1; }
.gx-form input::placeholder { color: #6b7690; }
.gx-success { width: 100%; color: #58c56c; font-weight: 600; font-size: 14px; }

/* ============ FİLTRE ÇUBUĞU ============ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.filter-chip {
  background: var(--white); border: 1px solid var(--line); color: var(--text);
  padding: 9px 18px; border-radius: 999px; cursor: pointer; font-size: 13.5px;
  font-weight: 600; font-family: var(--sans); transition: all .15s;
}
.filter-chip:hover { border-color: var(--gold); color: var(--gold-2); }
.filter-chip.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }

/* ============ DUYURU BANDI & HARİTA ============ */
.announce-band {
  background: linear-gradient(90deg, var(--gold), var(--gold-2)); color: var(--navy);
  padding: 16px 24px; font-weight: 600; display: flex; align-items: center; gap: 12px;
  justify-content: center; text-align: center; font-size: 15px;
}
.announce-icon { font-size: 19px; }
.map-embed { border-radius: 14px; overflow: hidden; box-shadow: 0 14px 34px rgba(14,26,43,.12); }

/* ============ KOPYALAMA UYARISI ============ */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: #fff; padding: 12px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 500; box-shadow: 0 12px 30px rgba(14,26,43,.35); z-index: 999;
  border: 1px solid rgba(201,162,75,.4);
}
body { user-select: none; -webkit-user-select: none; }
input, textarea { user-select: text; -webkit-user-select: text; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .dropdown {
    position: static; opacity: 1; visibility: hidden; transform: none; display: none;
    box-shadow: none; border-left: 0; border-right: 0; border-radius: 0; border-top-width: 1px;
  }
  .has-dropdown.open .dropdown { display: block; visibility: visible; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gx-features { grid-template-columns: repeat(2, 1fr); }
  .gx-code-in, .gx-form-in { grid-template-columns: 1fr; gap: 28px; }
  .detail-in { grid-template-columns: 1fr; gap: 30px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { border-radius: 10px !important; border-right-width: 1px !important; margin-bottom: 12px; }
  .features-grid { transform: none; padding-top: 40px; padding-bottom: 20px; gap: 14px; }
  .about-in, .featured-in, .faq-in, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-visual { max-width: 420px; margin: 0 auto; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 720px) {
  .topbar-text { font-size: 12px; }
  .topbar-right { display: none; }
  .burger { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white);
    flex-direction: column; align-items: stretch; padding: 18px 5%; gap: 14px;
    border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(14,26,43,.1);
  }
  .nav-links.open { display: flex; }
  .areas-grid, .testi-grid, .features-grid, .stats-grid, .post-grid, .team-grid, .gx-features, .cat-grid { grid-template-columns: 1fr; }
  .nav-links .gemilex-btn { text-align: center; }
  .stat { padding: 6px 0; }
  .hero-in { padding: 64px 0 76px; }
  .hero::after { font-size: 240px; opacity: .6; }
  .cta-band { padding: 30px 24px; }
}
