/* ============================================
   LEXO HUKUK — Global Stylesheet
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #F5F5F3;
  color: #1D2437;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* --- TOKENS --- */
:root {
  --gece:       #1D2437;
  --gece-dark:  #141928;
  --altin:      #D9A13B;
  --altin-light: rgba(217,161,59,0.12);
  --altin-border: rgba(217,161,59,0.3);
  --acik:       #EDEDED;
  --beyaz:      #FFFFFF;
  --yuzey:      #F5F5F3;
  --sinir:      #E4E4E0;
  --metin:      #1D2437;
  --metin-2:    #6B7280;
  --metin-3:    #9CA3AF;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
}

/* --- NAV --- */
.nav {
  background: var(--gece);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 0.5px solid rgba(217,161,59,0.18);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo:hover .nav-logo-mark { opacity: 0.9; }
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--altin);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: var(--gece);
}
.nav-logo-text { font-size: 15px; font-weight: 600; color: #fff; letter-spacing: 0.01em; }
.nav-logo-text span { color: var(--altin); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 13px; color: rgba(237,237,237,0.65); transition: color 0.15s; }
.nav-links a:hover,
.nav-links a.active { color: var(--altin); }
.nav-lang {
  font-size: 11px; color: rgba(237,237,237,0.4);
  border: 0.5px solid var(--altin-border);
  border-radius: 5px; padding: 3px 8px;
}
.nav-cta {
  background: var(--altin); color: var(--gece);
  border: none; border-radius: var(--radius-sm);
  padding: 8px 16px; font-size: 13px; font-weight: 600;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.88; }

/* Mobile nav hidden on desktop */
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-mobile-toggle span { width: 20px; height: 2px; background: rgba(237,237,237,0.7); border-radius: 2px; display: block; }
.nav-mobile-menu { display: none; flex-direction: column; background: var(--gece-dark); border-bottom: 0.5px solid rgba(217,161,59,0.15); }
.nav-mobile-menu a { padding: 16px 1.5rem; font-size: 15px; color: rgba(237,237,237,0.75); border-bottom: 0.5px solid rgba(255,255,255,0.05); }
.nav-mobile-menu.open { display: flex; }
.nav-mobile-cta { margin: 14px 1.5rem; background: var(--altin); color: var(--gece); border: none; border-radius: var(--radius-md); padding: 14px; font-size: 14px; font-weight: 600; }

/* --- GEO SVG (hero decoration) --- */
.geo-svg { position: absolute; top: -30px; right: -30px; width: 260px; height: 260px; opacity: 0.055; pointer-events: none; }

/* --- BREADCRUMB --- */
.breadcrumb { font-size: 11px; color: rgba(237,237,237,0.35); margin-bottom: 1rem; display: flex; align-items: center; gap: 6px; }
.breadcrumb span { color: var(--altin); }

/* --- TAG / BADGE --- */
.tag-gold {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--altin-light); border: 0.5px solid var(--altin-border);
  border-radius: 20px; padding: 4px 12px;
  font-size: 11px; color: var(--altin); letter-spacing: 0.04em;
}
.badge { background: var(--altin); color: var(--gece); font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 4px; }
.chip { background: var(--altin-light); color: var(--altin); font-size: 10px; padding: 2px 8px; border-radius: 4px; border: 0.5px solid var(--altin-border); }

/* --- BUTTONS --- */
.btn-primary {
  background: var(--altin); color: var(--gece);
  border: none; border-radius: var(--radius-md);
  padding: 12px 22px; font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: opacity 0.15s, transform 0.1s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: rgba(237,237,237,0.8);
  border: 0.5px solid rgba(237,237,237,0.25);
  border-radius: var(--radius-md);
  padding: 12px 22px; font-size: 14px;
  transition: border-color 0.15s;
}
.btn-ghost:hover { border-color: rgba(237,237,237,0.5); }
.btn-ghost-dark {
  background: transparent; color: var(--metin);
  border: 0.5px solid var(--sinir);
  border-radius: var(--radius-md);
  padding: 11px 20px; font-size: 13px;
  transition: border-color 0.15s;
}
.btn-ghost-dark:hover { border-color: var(--altin-border); }

/* --- SECTION LABELS --- */
.section-label { font-size: 10px; color: var(--altin); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.section-title { font-size: 20px; font-weight: 600; color: var(--metin); }
.section-title-light { font-size: 20px; font-weight: 600; color: #fff; }

/* --- CARDS --- */
.card {
  background: var(--beyaz);
  border: 0.5px solid var(--sinir);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.card:hover { border-color: var(--altin-border); box-shadow: var(--shadow-sm); }
.card-dark {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(217,161,59,0.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

/* --- FOOTER --- */
.footer {
  background: var(--gece-dark);
  padding: 3rem 2.5rem 2rem;
  border-top: 0.5px solid rgba(217,161,59,0.12);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-desc { font-size: 12px; color: rgba(237,237,237,0.35); line-height: 1.7; max-width: 220px; }
.footer-col-title { font-size: 11px; color: rgba(237,237,237,0.5); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col-links { display: flex; flex-direction: column; gap: 8px; }
.footer-col-links a { font-size: 13px; color: rgba(237,237,237,0.4); transition: color 0.15s; }
.footer-col-links a:hover { color: var(--altin); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 0.5px solid rgba(255,255,255,0.06); }
.footer-copy { font-size: 12px; color: rgba(237,237,237,0.25); }
.footer-copy span { color: var(--altin); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 11px; color: rgba(237,237,237,0.2); transition: color 0.15s; }
.footer-bottom-links a:hover { color: rgba(237,237,237,0.5); }

/* --- STAT BAR --- */
.stat-bar { background: rgba(217,161,59,0.07); border-top: 0.5px solid rgba(217,161,59,0.18); border-bottom: 0.5px solid rgba(217,161,59,0.18); display: flex; }
.stat-item { flex: 1; text-align: center; padding: 1.25rem; border-right: 0.5px solid rgba(255,255,255,0.05); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 26px; font-weight: 600; color: var(--altin); }
.stat-lbl { font-size: 11px; color: rgba(237,237,237,0.4); margin-top: 2px; }

/* --- FORM --- */
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; font-size: 12px; color: var(--metin-2); font-weight: 500; margin-bottom: 5px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0.5px solid var(--sinir);
  border-radius: var(--radius-sm);
  padding: 10px 13px;
  font-size: 14px;
  background: var(--yuzey);
  color: var(--metin);
  font-family: inherit;
  transition: border-color 0.15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--altin); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-section-title { font-size: 10px; color: var(--altin); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; padding-bottom: 8px; border-bottom: 0.5px solid var(--sinir); }

/* --- STAGE PICKER --- */
.stage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.stage-btn {
  border: 0.5px solid var(--sinir); border-radius: var(--radius-md);
  padding: 10px 8px; background: var(--yuzey);
  cursor: pointer; text-align: left; transition: all 0.15s;
}
.stage-btn.active { border: 1.5px solid var(--altin); background: var(--altin-light); }
.stage-icon { font-size: 20px; color: var(--altin); margin-bottom: 4px; }
.stage-label { font-size: 12px; font-weight: 500; color: var(--metin); }
.stage-sub { font-size: 10px; color: var(--metin-2); }

/* --- CHIPS --- */
.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip-btn {
  border: 0.5px solid var(--sinir); border-radius: 20px;
  padding: 5px 12px; font-size: 12px; color: var(--metin-2);
  background: var(--yuzey); cursor: pointer; transition: all 0.15s;
}
.chip-btn.active { border-color: var(--altin); background: var(--altin-light); color: var(--altin); }

/* --- TIMELINE --- */
.timeline { display: flex; flex-direction: column; }
.tl-item { display: grid; grid-template-columns: 80px 1px 1fr; gap: 0 1.25rem; padding-bottom: 1.75rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-year { font-size: 14px; font-weight: 600; color: var(--altin); text-align: right; padding-top: 2px; }
.tl-line { display: flex; flex-direction: column; align-items: center; }
.tl-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--altin); flex-shrink: 0; margin-top: 3px; }
.tl-bar { flex: 1; width: 1px; background: rgba(217,161,59,0.2); margin-top: 5px; }
.tl-item:last-child .tl-bar { display: none; }
.tl-title { font-size: 14px; font-weight: 600; color: var(--metin); margin-bottom: 4px; }
.tl-desc { font-size: 13px; color: var(--metin-2); line-height: 1.65; }

/* --- ACCORDION --- */
.accordion { border: 0.5px solid var(--sinir); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 10px; }
.accordion.open { border-color: var(--altin); }
.accordion-header { display: flex; align-items: center; gap: 12px; padding: 1rem 1.25rem; cursor: pointer; }
.accordion-icon { font-size: 20px; color: var(--altin); min-width: 22px; }
.accordion-title { font-size: 14px; font-weight: 600; color: var(--metin); flex: 1; }
.accordion-arrow { font-size: 16px; color: var(--metin-2); transition: transform 0.2s; }
.accordion.open .accordion-arrow { transform: rotate(90deg); color: var(--altin); }
.accordion-body { display: none; padding: 0 1.25rem 1.25rem; border-top: 0.5px solid var(--sinir); }
.accordion.open .accordion-body { display: block; }
.accordion-brief { font-size: 13px; color: var(--metin-2); line-height: 1.65; margin: 1rem 0 8px; }
.accordion-list { padding-left: 0; }
.accordion-list li { font-size: 12px; color: var(--metin-2); padding: 5px 0 5px 16px; position: relative; border-bottom: 0.5px solid var(--sinir); }
.accordion-list li:last-child { border-bottom: none; }
.accordion-list li::before { content: ''; position: absolute; left: 0; top: 13px; width: 6px; height: 6px; border-radius: 50%; background: var(--altin); opacity: 0.7; }

/* --- PROGRESS BAR --- */
.progress-bar { height: 2px; background: rgba(237,237,237,0.08); }
.progress-fill { height: 100%; background: var(--altin); width: 35%; transition: width 0.15s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .stage-grid { grid-template-columns: 1fr 1fr; }
  .geo-svg { width: 160px; height: 160px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* --- MOBILE TOGGLE ANIMATION --- */
.nav-mobile-toggle span { transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   CONSOLIDATED PAGE LAYOUTS & COMPONENTS
   ============================================ */

/* --- HERO SECTION --- */
.hero { background: var(--gece); padding: 5rem 2.5rem 4rem; position: relative; overflow: hidden; }
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: center; }
.hero-tag { margin-bottom: 1.5rem; }
.hero h1 { font-size: 42px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 1.25rem; }
.hero h1 em { color: var(--altin); font-style: normal; }
.hero-desc { font-size: 15px; color: rgba(237,237,237,0.6); line-height: 1.75; margin-bottom: 2.5rem; max-width: 480px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 0.5px solid rgba(237,237,237,0.08); }
.hero-stat-num { font-size: 28px; font-weight: 700; color: var(--altin); }
.hero-stat-lbl { font-size: 11px; color: rgba(237,237,237,0.4); margin-top: 2px; }
.hero-visual { background: rgba(217,161,59,0.07); border: 0.5px solid rgba(217,161,59,0.2); border-radius: var(--radius-lg); height: 320px; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual i { font-size: 56px; color: rgba(217,161,59,0.3); }
.hero-visual span { font-size: 12px; color: rgba(237,237,237,0.2); }

/* --- SERVICES & WORK AREAS --- */
.services-section { padding: 5rem 2.5rem; background: #F5F5F3; }
.services-section .container { max-width: 1100px; margin: 0 auto; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; }
.see-all { font-size: 13px; color: var(--altin); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.svc-card { background: #fff; border: 0.5px solid var(--sinir); border-radius: var(--radius-lg); padding: 1.5rem; position: relative; transition: border-color 0.15s, box-shadow 0.15s; }
.svc-card:hover { border-color: var(--altin-border); box-shadow: var(--shadow-sm); }
.svc-accent { position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--altin); border-radius: 14px 0 0 14px; opacity: 0.55; }
.svc-icon-wrap { width: 40px; height: 40px; border-radius: 9px; background: var(--altin-light); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.svc-icon-wrap i { font-size: 20px; color: var(--altin); }
.svc-title { font-size: 14px; font-weight: 600; color: var(--metin); margin-bottom: 6px; }
.svc-desc { font-size: 12px; color: var(--metin-2); line-height: 1.65; margin-bottom: 1rem; }
.svc-link { font-size: 12px; color: var(--altin); display: flex; align-items: center; gap: 4px; }

/* --- ABOUT BAND --- */
.about-band { background: var(--gece); padding: 4rem 2.5rem; }
.about-band .container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 260px; gap: 4rem; align-items: center; }
.about-values { display: flex; flex-direction: column; gap: 10px; margin-top: 1.5rem; }
.about-value { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(237,237,237,0.7); }
.about-value i { color: var(--altin); font-size: 16px; }
.about-img-placeholder { background: rgba(217,161,59,0.07); border: 0.5px solid rgba(217,161,59,0.2); border-radius: var(--radius-lg); height: 240px; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.about-img-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder i { font-size: 44px; color: rgba(217,161,59,0.3); }
.about-img-placeholder span { font-size: 11px; color: rgba(237,237,237,0.2); }

/* --- TEAM GRID --- */
.team-section { padding: 5rem 2.5rem; background: #fff; }
.team-section .container { max-width: 1100px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 2rem; }
.team-card { background: var(--yuzey); border: 0.5px solid var(--sinir); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; transition: border-color 0.15s; }
.team-card:hover { border-color: var(--altin-border); }
.team-avatar { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 10px; background: var(--gece); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 600; color: var(--altin); border: 2px solid rgba(217,161,59,0.25); }
.team-name { font-size: 14px; font-weight: 600; color: var(--metin); margin-bottom: 3px; }
.team-role { font-size: 12px; color: var(--metin-2); }

/* --- BLOG & PUBLICATIONS --- */
.blog-section { padding: 5rem 2.5rem; background: var(--yuzey); }
.blog-section .container { max-width: 1100px; margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 2rem; }
.blog-card { background: #fff; border: 0.5px solid var(--sinir); border-radius: var(--radius-lg); padding: 1.5rem; cursor: pointer; transition: border-color 0.15s, box-shadow 0.15s; }
.blog-card:hover { border-color: var(--altin-border); box-shadow: var(--shadow-sm); }
.blog-tag { display: inline-block; background: var(--altin-light); color: var(--altin); font-size: 10px; padding: 2px 8px; border-radius: 4px; margin-bottom: 8px; }
.blog-title { font-size: 14px; font-weight: 600; color: var(--metin); line-height: 1.45; margin-bottom: 6px; }
.blog-meta { font-size: 11px; color: var(--metin-2); }

/* --- CTA SECTION --- */
.cta-section { background: var(--gece); padding: 5rem 2.5rem; text-align: center; }
.cta-section h2 { font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.cta-section h2 em { color: var(--altin); font-style: normal; }
.cta-section p { font-size: 15px; color: rgba(237,237,237,0.5); margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --- INNER PAGE HEADER --- */
.page-header { background: var(--gece); padding: 3.5rem 2.5rem 3rem; border-bottom: 0.5px solid rgba(217,161,59,0.15); position: relative; overflow: hidden; }
.page-header .container { max-width: 1100px; margin: 0 auto; }
.page-header h1 { font-size: 32px; font-weight: 700; color: #fff; margin: 8px 0; }
.page-header h1 em { color: var(--altin); font-style: normal; }
.page-header p { font-size: 14px; color: rgba(237,237,237,0.55); line-height: 1.7; max-width: 520px; margin: 6px 0 1.5rem; }
.tab-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tab-btn { padding: 7px 16px; border-radius: 20px; font-size: 12px; cursor: pointer; border: 0.5px solid rgba(237,237,237,0.2); color: rgba(237,237,237,0.5); background: transparent; transition: all 0.15s; }
.tab-btn.active { background: var(--altin); color: var(--gece); border-color: var(--altin); font-weight: 600; }

/* --- CALISMA ALANLARI DETAIL --- */
.ca-body { background: var(--yuzey); padding: 3rem 2.5rem; }
.ca-body .container { max-width: 1100px; margin: 0 auto; }
.cat-section { margin-bottom: 3rem; }
.cat-header { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 1.75rem; }
.cat-icon { width: 56px; min-width: 56px; height: 56px; background: var(--gece); border-radius: 12px; border: 0.5px solid rgba(217,161,59,0.3); display: flex; align-items: center; justify-content: center; }
.cat-icon i { font-size: 26px; color: var(--altin); }
.cat-title { font-size: 20px; font-weight: 700; color: var(--metin); margin-bottom: 4px; }
.cat-desc { font-size: 13px; color: var(--metin-2); line-height: 1.7; }
.ca-body .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 1rem; }
.pillar-card { background: #fff; border: 0.5px solid var(--sinir); border-radius: var(--radius-lg); padding: 1.25rem; text-align: center; }
.pillar-icon { font-size: 26px; color: var(--altin); margin-bottom: 8px; }
.pillar-title { font-size: 13px; font-weight: 600; color: var(--metin); margin-bottom: 4px; }
.pillar-desc { font-size: 11px; color: var(--metin-2); line-height: 1.5; }
.approach-section { background: var(--gece); padding: 3rem 2.5rem; border-top: 0.5px solid rgba(217,161,59,0.15); }
.approach-section .container { max-width: 1100px; margin: 0 auto; }
.cta-band { background: var(--yuzey); padding: 2.5rem 2.5rem; border-top: 0.5px solid var(--sinir); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cta-band .container { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }

/* --- EKIBIMIZ PAGE --- */
.body-wrap { background: var(--yuzey); padding: 3rem 2.5rem; }
.body-wrap .container { max-width: 1100px; margin: 0 auto; }
.section-divider { font-size: 10px; color: var(--altin); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; padding-bottom: 8px; border-bottom: .5px solid var(--sinir); }
.partners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 2.5rem; }
.partner-card { background: #fff; border: 0.5px solid var(--sinir); border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: border-color 0.15s; }
.partner-card:hover, .partner-card.open { border-color: var(--altin); }
.partner-header { display: flex; align-items: center; gap: 1rem; padding: 1.5rem; cursor: pointer; }
.partner-avatar { width: 64px; min-width: 64px; height: 64px; border-radius: 12px; background: var(--gece); border: 1.5px solid rgba(217,161,59,0.25); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; color: var(--altin); }
.partner-role { font-size: 10px; color: var(--altin); letter-spacing: .06em; margin-bottom: 3px; }
.partner-name { font-size: 16px; font-weight: 700; color: var(--metin); margin-bottom: 2px; }
.partner-title { font-size: 12px; color: var(--metin-2); margin-bottom: 8px; }
.partner-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.partner-arrow { font-size: 18px; color: var(--metin-2); margin-left: auto; transition: transform .2s; }
.partner-card.open .partner-arrow { transform: rotate(90deg); color: var(--altin); }
.partner-detail { display: none; padding: 0 1.5rem 1.5rem; border-top: .5px solid var(--sinir); }
.partner-card.open .partner-detail { display: block; }
.partner-bio { font-size: 13px; color: var(--metin-2); line-height: 1.75; margin: 1rem 0 12px; }
.partner-stats { display: flex; gap: 2rem; margin-bottom: 14px; }
.p-stat-num { font-size: 18px; font-weight: 700; color: var(--altin); }
.p-stat-lbl { font-size: 10px; color: var(--metin-2); margin-top: 1px; }
.partner-links { display: flex; gap: 8px; }
.link-btn { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--metin-2); border: .5px solid var(--sinir); border-radius: 6px; padding: 5px 12px; cursor: pointer; transition: border-color 0.15s; }
.link-btn:hover { border-color: var(--altin-border); color: var(--altin); }
.link-btn i { font-size: 14px; color: var(--altin); }
.seniors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 2.5rem; }
.senior-card { background: #fff; border: 0.5px solid var(--sinir); border-radius: var(--radius-lg); padding: 1.5rem; transition: border-color 0.15s; }
.senior-card:hover { border-color: var(--altin-border); }
.senior-avatar { width: 48px; height: 48px; border-radius: 10px; background: var(--gece); border: 1px solid rgba(217,161,59,0.2); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--altin); margin-bottom: 10px; }
.lawyers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 2.5rem; }
.lawyer-card { background: #fff; border: 0.5px solid var(--sinir); border-radius: var(--radius-lg); padding: 1rem; display: flex; align-items: center; gap: 12px; }
.lawyer-avatar { width: 38px; min-width: 38px; height: 38px; border-radius: 8px; background: var(--gece); border: 1px solid rgba(217,161,59,0.15); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--altin); }
.culture-section { background: var(--gece); padding: 3rem 2.5rem; border-top: .5px solid rgba(217,161,59,0.15); }
.culture-section .container { max-width: 1100px; margin: 0 auto; }
.culture-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 1.5rem; }

/* --- HAKKIMIZDA PAGE --- */
.page-header .container.about-header { display: grid; grid-template-columns: 1fr 220px; gap: 3rem; align-items: end; }
.hero-vis { background: rgba(217,161,59,.07); border: 0.5px solid rgba(217,161,59,.2); border-radius: var(--radius-lg); border-bottom: none; height: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.hero-vis img { width: 100%; height: 100%; object-fit: cover; }
.hero-vis i { font-size: 40px; color: rgba(217,161,59,.3); }
.hero-vis span { font-size: 11px; color: rgba(237,237,237,.2); }
.section-wrap { padding: 3rem 2.5rem; border-bottom: 0.5px solid var(--sinir); }
.section-wrap:last-child { border-bottom: none; }
.section-wrap .container { max-width: 1100px; margin: 0 auto; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mv-col { background: #fff; border: 0.5px solid var(--sinir); border-radius: var(--radius-lg); padding: 1.75rem; }
.mv-quote { background: var(--altin-light); border-left: 3px solid var(--altin); border-radius: 0 8px 8px 0; padding: 1rem 1.25rem; margin-top: 1rem; font-size: 13px; color: var(--metin); font-style: italic; line-height: 1.65; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 1.5rem; }
.value-card { background: rgba(255,255,255,.04); border: 0.5px solid rgba(217,161,59,.15); border-radius: var(--radius-lg); padding: 1.25rem; }
.value-icon { font-size: 24px; color: var(--altin); opacity: .85; margin-bottom: 8px; }
.value-name { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.value-desc { font-size: 11px; color: rgba(237,237,237,.45); line-height: 1.6; }
.approach-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 1.5rem; }
.approach-col { background: #fff; border: 0.5px solid var(--sinir); border-radius: var(--radius-lg); padding: 1.5rem; }
.approach-num { font-size: 36px; font-weight: 700; color: rgba(217,161,59,.25); line-height: 1; margin-bottom: 10px; }
.approach-title { font-size: 14px; font-weight: 600; color: var(--metin); margin-bottom: 6px; }
.approach-desc { font-size: 12px; color: var(--metin-2); line-height: 1.65; }

/* --- ILETISIM PAGE --- */
.contact-body { background: var(--yuzey); padding: 3rem 2.5rem; }
.contact-body .container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; gap: 2rem; }
.form-card { background: #fff; border: 0.5px solid var(--sinir); border-radius: var(--radius-lg); padding: 2rem; }
.submit-btn { width: 100%; background: var(--altin); color: var(--gece); border: none; border-radius: var(--radius-md); padding: 14px; font-size: 14px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 6px; }
.privacy-note { font-size: 11px; color: var(--metin-2); text-align: center; margin-top: 10px; line-height: 1.5; }
.info-card { background: #fff; border: 0.5px solid var(--sinir); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 12px; }
.info-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.info-row:last-child { margin-bottom: 0; }
.info-icon { font-size: 18px; color: var(--altin); min-width: 20px; margin-top: 1px; }
.info-label { font-size: 11px; color: var(--metin-2); margin-bottom: 2px; }
.info-val { font-size: 13px; color: var(--metin); font-weight: 500; }
.map-placeholder { height: 130px; background: var(--yuzey); border-radius: var(--radius-md); display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; border: 0.5px solid var(--sinir); margin-bottom: 14px; position: relative; }
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.map-placeholder i { font-size: 28px; color: var(--altin); opacity: 0.4; }
.map-placeholder span { font-size: 11px; color: var(--metin-2); }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; }
.nl-card { background: var(--gece); border-radius: var(--radius-lg); padding: 1.5rem; }
.nl-card h3 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.nl-card p { font-size: 12px; color: rgba(237,237,237,0.45); margin-bottom: 1rem; line-height: 1.5; }
.nl-row { display: flex; gap: 8px; }
.nl-input { flex: 1; background: rgba(255,255,255,0.07); border: 0.5px solid rgba(217,161,59,0.25); border-radius: var(--radius-sm); padding: 9px 11px; color: #fff; font-size: 13px; font-family: inherit; }
.nl-input::placeholder { color: rgba(237,237,237,0.3); }
.nl-btn { background: var(--altin); color: var(--gece); border: none; border-radius: var(--radius-sm); padding: 9px 16px; font-size: 13px; font-weight: 600; white-space: nowrap; transition: opacity 0.15s; }
.nl-btn:hover { opacity: 0.9; }
.form-success { display: none; text-align: center; padding: 3rem 1rem; }
.form-success i { font-size: 52px; color: var(--altin); margin-bottom: 1rem; display: block; }
.form-success h3 { font-size: 18px; font-weight: 600; color: var(--metin); margin-bottom: 6px; }
.form-success p { font-size: 14px; color: var(--metin-2); }

/* --- YAYINLAR PAGE --- */
.controls { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.blog-filter { padding: 7px 16px; border-radius: 20px; font-size: 12px; cursor: pointer; border: 0.5px solid rgba(237,237,237,0.2); color: rgba(237,237,237,0.5); background: transparent; transition: all 0.15s; }
.blog-filter.active { background: var(--altin); color: var(--gece); border-color: var(--altin); font-weight: 600; }
.search-box { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.07); border: 0.5px solid rgba(237,237,237,.15); border-radius: 24px; padding: 8px 14px; }
.search-box i { font-size: 14px; color: rgba(237,237,237,.4); }
.search-box input { background: transparent; border: none; outline: none; color: rgba(237,237,237,.7); font-size: 13px; width: 160px; font-family: inherit; }
.search-box input::placeholder { color: rgba(237,237,237,.3); }
.blog-body { background: var(--yuzey); padding: 3rem 2.5rem; }
.blog-body .container { max-width: 1100px; margin: 0 auto; }
.featured-card { background: #fff; border: 0.5px solid var(--sinir); border-radius: var(--radius-lg); display: grid; grid-template-columns: 1fr 260px; overflow: hidden; margin-bottom: 2rem; cursor: pointer; transition: border-color .15s; }
.featured-card:hover { border-color: var(--altin-border); }
.featured-content { padding: 2rem; }
.featured-badges { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.featured-title { font-size: 20px; font-weight: 700; color: var(--metin); margin-bottom: 10px; line-height: 1.35; }
.featured-excerpt { font-size: 13px; color: var(--metin-2); line-height: 1.7; margin-bottom: 1.25rem; }
.featured-meta { display: flex; gap: 1.25rem; font-size: 12px; color: var(--metin-2); }
.featured-meta span { display: flex; align-items: center; gap: 5px; }
.featured-meta i { font-size: 13px; color: var(--altin); }
.featured-visual { background: var(--gece); display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.featured-visual img { width: 100%; height: 100%; object-fit: cover; }
.featured-visual i { font-size: 48px; color: rgba(217,161,59,.2); }
.featured-visual span { font-size: 11px; color: rgba(237,237,237,.15); }
.blog-body .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 2rem; }
.blog-body .blog-card { background: #fff; border: 0.5px solid var(--sinir); border-radius: var(--radius-lg); padding: 1.5rem; cursor: pointer; transition: border-color .15s, box-shadow .15s; display: flex; flex-direction: column; }
.blog-body .blog-card:hover { border-color: var(--altin-border); box-shadow: 0 2px 12px rgba(0, 0, 0, .07); }
.blog-body .blog-tag { display: inline-block; background: var(--altin-light); color: var(--altin); font-size: 10px; padding: 2px 8px; border-radius: 4px; border: 0.5px solid var(--altin-border); margin-bottom: 8px; }
.blog-body .blog-title { font-size: 14px; font-weight: 600; color: var(--metin); line-height: 1.45; margin-bottom: 8px; flex: 1; }
.blog-excerpt { font-size: 12px; color: var(--metin-2); line-height: 1.6; margin-bottom: 10px; }
.blog-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 0.5px solid var(--sinir); margin-top: auto; }
.blog-author { display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--metin-2); }
.blog-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--gece); border: 1px solid rgba(217,161,59,.2); display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 700; color: var(--altin); }
.read-time { font-size: 11px; color: var(--metin-2); display: flex; align-items: center; gap: 4px; }
.read-time i { font-size: 12px; color: var(--altin); }
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: .5rem; }
.page-btn { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; cursor: pointer; border: 0.5px solid var(--sinir); color: var(--metin-2); background: #fff; transition: all .15s; }
.page-btn:hover, .page-btn.active { background: var(--altin); color: var(--gece); border-color: var(--altin); font-weight: 600; }
.nl-section { background: var(--gece); padding: 3rem 2.5rem; }
.nl-section .container { max-width: 560px; margin: 0 auto; text-align: center; }
.nl-section h2 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.nl-section p { font-size: 13px; color: rgba(237,237,237,.45); margin-bottom: 1.5rem; line-height: 1.65; }
.nl-form-row { display: flex; gap: 10px; justify-content: center; }
.nl-form-row .nl-input { flex: 1; max-width: 280px; background: rgba(255,255,255,.08); border: 0.5px solid rgba(217,161,59,.25); border-radius: var(--radius-sm); padding: 11px 14px; color: #fff; font-size: 13px; font-family: inherit; }
.nl-form-row .nl-input::placeholder { color: rgba(237, 237, 237, 0.3); }
.nl-form-row .nl-btn { background: var(--altin); color: var(--gece); border: none; border-radius: var(--radius-sm); padding: 11px 22px; font-size: 13px; font-weight: 600; white-space: nowrap; }

/* --- MAKALE DETAY PAGE --- */
.reading-progress { height: 3px; background: rgba(237,237,237,.08); position: sticky; top: 64px; z-index: 99; }
.reading-progress-fill { height: 100%; background: var(--altin); width: 0; transition: width .1s; }
.article-header { background: var(--gece); padding: 3rem 2.5rem 2.5rem; border-bottom: .5px solid rgba(217,161,59,.15); position: relative; overflow: hidden; }
.article-header .container { max-width: 1100px; margin: 0 auto; }
.article-header h1 { font-size: 30px; font-weight: 700; color: #fff; line-height: 1.3; margin: 10px 0 1.5rem; max-width: 700px; }
.article-header h1 em { color: var(--altin); font-style: normal; }
.meta-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding-top: 1.25rem; border-top: 0.5px solid rgba(237, 237, 237, 0.08); }
.meta-author { display: flex; align-items: center; gap: 10px; }
.meta-avatar { width: 40px; height: 40px; border-radius: 10px; background: rgba(217,161,59,.15); border: 1px solid rgba(217,161,59,.3); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--altin); }
.meta-name { font-size: 13px; font-weight: 600; color: #fff; }
.meta-title { font-size: 11px; color: rgba(237,237,237,.4); margin-top: 1px; }
.meta-divider { width: 1px; height: 30px; background: rgba(237,237,237,.1); }
.meta-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: rgba(237,237,237,.45); }
.meta-item i { font-size: 14px; color: var(--altin); opacity: .7; }
.share-btns { margin-left: auto; display: flex; gap: 8px; }
.share-btn { width: 34px; height: 34px; border-radius: 8px; border: 0.5px solid rgba(237, 237, 237, 0.15); background: rgba(255,255,255,.05); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 15px; color: rgba(237,237,237,.5); transition: all .15s; }
.share-btn:hover { border-color: var(--altin-border); color: var(--altin); }
.content-area { background: #F8F8F6; display: grid; grid-template-columns: 1fr 280px; gap: 0; }
.article-body { padding: 3rem; border-right: .5px solid #E0E0DC; max-width: 760px; }
.summary-box { background: #fff; border: .5px solid #E0E0DC; border-left: 3px solid var(--altin); border-radius: 0 10px 10px 0; padding: 1.25rem 1.5rem; margin-bottom: 2rem; }
.summary-label { font-size: 10px; color: var(--altin); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.summary-box ul { padding-left: 16px; }
.summary-box li { font-size: 13px; color: #444; line-height: 1.7; margin-bottom: 4px; }
.article-body h2 { font-size: 18px; font-weight: 700; color: var(--gece); margin: 2rem 0 .75rem; padding-top: 1.5rem; border-top: .5px solid #EAEAE6; }
.article-body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.article-body p { font-size: 14px; color: #333; line-height: 1.9; margin: 0 0 1rem; }
.article-body strong { color: var(--gece); font-weight: 700; }
.info-box { background: #fff; border: .5px solid #E0E0DC; border-radius: 10px; padding: 1rem 1.25rem; margin: 1.5rem 0; display: flex; gap: 12px; align-items: flex-start; }
.info-box i { font-size: 20px; color: var(--altin); flex-shrink: 0; margin-top: 2px; }
.info-box p { font-size: 13px; color: #555; line-height: 1.65; margin: 0; }
.article-blockquote { border-left: 3px solid var(--altin); padding: .875rem 1.25rem; margin: 1.75rem 0; background: rgba(217,161,59,.06); border-radius: 0 8px 8px 0; }
.article-blockquote p { font-size: 14px; color: var(--gece); font-style: italic; line-height: 1.65; margin: 0; font-weight: 500; }
.article-list { padding: 0; margin: 0 0 1rem; list-style: none; }
.article-list li { font-size: 13px; color: #444; line-height: 1.75; padding: 6px 0 6px 20px; position: relative; border-bottom: .5px solid #F0F0EC; }
.article-list li:last-child { border-bottom: none; }
.article-list li::before { content: ''; position: absolute; left: 0; top: 14px; width: 7px; height: 7px; border-radius: 50%; background: var(--altin); }
.numbered-list { counter-reset: item; padding: 0; margin: 0 0 1rem; list-style: none; }
.numbered-list li { counter-increment: item; font-size: 13px; color: #444; line-height: 1.75; padding: 10px 0 10px 36px; position: relative; border-bottom: .5px solid #F0F0EC; }
.numbered-list li:last-child { border-bottom: none; }
.numbered-list li::before { content: counter(item); position: absolute; left: 0; top: 8px; width: 24px; height: 24px; background: var(--altin-light); color: var(--altin); border-radius: 50%; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: .5px solid var(--altin-border); }
.author-box { background: #fff; border: .5px solid #E0E0DC; border-radius: 12px; padding: 1.5rem; margin-top: 2.5rem; display: flex; gap: 1.25rem; align-items: flex-start; }
.author-box-avatar { width: 56px; min-width: 56px; height: 56px; border-radius: 12px; background: var(--gece); border: 1.5px solid rgba(217,161,59,.25); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--altin); }
.sidebar { padding: 2rem 1.75rem; background: #F8F8F6; position: sticky; top: 100px; align-self: start; }
.sidebar-title { font-size: 11px; font-weight: 700; color: var(--gece); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; padding-bottom: 6px; border-bottom: 2px solid var(--altin); display: inline-block; }
.toc { display: flex; flex-direction: column; gap: 2px; margin-bottom: 2rem; }
.toc-item { font-size: 12px; color: #666; padding: 6px 10px; border-radius: 6px; cursor: pointer; border-left: 2px solid transparent; transition: all .15s; }
.toc-item:hover { background: #fff; color: var(--gece); }
.toc-item.active { border-left-color: var(--altin); color: var(--gece); font-weight: 600; background: #fff; }
.related-cards { display: flex; flex-direction: column; gap: 8px; margin-bottom: 2rem; }
.related-card { background: #fff; border: .5px solid #E0E0DC; border-radius: 10px; padding: 12px; cursor: pointer; transition: border-color .15s; }
.related-card:hover { border-color: var(--altin-border); }
.related-tag { font-size: 9px; color: var(--altin); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 4px; }
.related-title { font-size: 12px; font-weight: 600; color: var(--gece); line-height: 1.4; margin-bottom: 5px; }
.related-meta { font-size: 10px; color: #999; }
.sidebar-cta { background: var(--gece); border-radius: 12px; padding: 1.5rem; text-align: center; }
.sidebar-cta i { font-size: 28px; color: var(--altin); opacity: .8; margin-bottom: 10px; display: block; }
.sidebar-cta h4 { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 5px; }
.sidebar-cta p { font-size: 11px; color: rgba(237,237,237,.45); line-height: 1.6; margin-bottom: 1rem; }
.sidebar-cta-btn { background: var(--altin); color: var(--gece); border: none; border-radius: 8px; padding: 10px 16px; font-size: 12px; font-weight: 600; cursor: pointer; width: 100%; transition: opacity 0.15s; }
.sidebar-cta-btn:hover { opacity: 0.9; }
.nl-band { background: var(--gece); padding: 2.5rem; border-top: 0.5px solid rgba(217,161,59,.15); }
.nl-band .container { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nl-band h3 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.nl-band p { font-size: 12px; color: rgba(237,237,237,.4); line-height: 1.5; }
.nl-band .nl-row { display: flex; gap: 8px; }
.nl-band .nl-input { background: rgba(255,255,255,.08); border: 0.5px solid rgba(217,161,59,.25); border-radius: var(--radius-sm); padding: 10px 14px; color: #fff; font-size: 13px; font-family: inherit; width: 220px; }
.nl-band .nl-input::placeholder { color: rgba(237,237,237,.3); }
.nl-band .nl-btn { background: var(--altin); color: var(--gece); border: none; border-radius: var(--radius-sm); padding: 10px 18px; font-size: 13px; font-weight: 600; white-space: nowrap; transition: opacity 0.15s; }
.nl-band .nl-btn:hover { opacity: 0.9; }


/* ============================================
   RESPONSIVE OVERIDES
   ============================================ */
@media (max-width: 1024px) {
  .content-area { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 30px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-band .container { grid-template-columns: 1fr; }
  .about-img-placeholder { display: none; }
  .ca-body .services-grid { grid-template-columns: 1fr 1fr; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .seniors-grid, .culture-grid { grid-template-columns: 1fr 1fr; }
  .page-header .container.about-header, .mv-grid, .approach-cols { grid-template-columns: 1fr; }
  .hero-vis { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-visual { display: none; }
  .blog-body .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .stage-grid { grid-template-columns: 1fr 1fr; }
  .geo-svg { width: 160px; height: 160px; }
  .contact-body .container { grid-template-columns: 1fr; }
  .article-header h1 { font-size: 22px; }
  .share-btns { display: none; }
  .meta-divider { display: none; }
  .article-body { padding: 1.5rem; }
}

@media (max-width: 600px) {
  .services-grid, .team-grid, .blog-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .ca-body .services-grid, .pillar-grid { grid-template-columns: 1fr; }
  .cat-header { flex-direction: column; }
  .lawyers-grid, .seniors-grid, .culture-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .nl-form-row { flex-direction: column; align-items: center; }
  .blog-body .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ADMIN PAGES & DASHBOARD STYLES
   ============================================ */

/* Base Admin Layouts */
body.admin-body {
  background: var(--gece-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
}

.admin-login-container {
  width: 100%;
  max-width: 440px;
}

.admin-login-card {
  background: var(--beyaz);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  border: 1px solid var(--sinir);
}

.admin-login-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gece);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.admin-login-subtitle {
  font-size: 13px;
  color: var(--metin-2);
  margin-bottom: 2rem;
}

/* Alert Boxes */
.admin-alert {
  display: flex;
  gap: 12px;
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.admin-alert i {
  font-size: 18px;
  flex-shrink: 0;
}

.admin-alert.warning {
  background: rgba(217, 161, 59, 0.08);
  border: 1px solid rgba(217, 161, 59, 0.25);
  color: #c0841b;
}

.admin-alert.error {
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.2);
  color: #e11d48;
}

.admin-alert.success {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #16a34a;
}

.alert-link-btn {
  background: none;
  border: none;
  color: var(--altin);
  font-weight: 600;
  padding: 0;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}

/* Input wrappers with icons */
.input-wrapper {
  position: relative;
}

.input-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--metin-2);
  font-size: 16px;
}

.input-wrapper input {
  padding-left: 42px !important;
}

.login-footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 13px;
}

.login-footer a {
  color: var(--metin-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}

.login-footer a:hover {
  color: var(--altin);
}

/* Spin Animation */
.animate-spin {
  animation: spin 1s linear infinite;
  display: inline-block;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Admin Dashboard layout */
body.admin-panel-body {
  background: #F8F8F6;
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
}

.admin-layout {
  display: flex;
  height: 100vh;
  width: 100vw;
}

.admin-sidebar {
  width: 260px;
  background: var(--gece);
  border-right: 1px solid rgba(217, 161, 59, 0.15);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.admin-nav {
  padding: 1.5rem 1rem;
  flex: 1;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  color: rgba(237, 237, 237, 0.65);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  transition: all 0.15s;
  margin-bottom: 6px;
}

.admin-nav-item:hover,
.admin-nav-item.active {
  color: var(--altin);
  background: rgba(217, 161, 59, 0.08);
}

.admin-sidebar-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(237, 237, 237, 0.8);
  font-size: 13px;
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-info i {
  font-size: 16px;
  color: var(--altin);
}

.logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(225, 29, 72, 0.35);
  color: #ef4444;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.15s;
}

.logout-btn:hover {
  background: rgba(225, 29, 72, 0.08);
  border-color: #ef4444;
}

.admin-content {
  flex: 1;
  padding: 2.5rem;
  overflow-y: auto;
}

.panel-section {
  display: none;
}

.panel-section.active {
  display: block;
}

.panel-section h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gece);
  margin-bottom: 4px;
}

.panel-section p {
  font-size: 14px;
  color: var(--metin-2);
}

.panel-card {
  background: var(--beyaz);
  border: 1px solid var(--sinir);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Admin Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.15s;
  border: none;
}

.btn-primary {
  background: var(--altin);
  color: var(--gece);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background: #f3f4f6;
  color: var(--metin);
}

.btn-secondary:hover {
  background: #e5e7eb;
}

.btn-danger {
  background: #ef4444;
  color: #fff;
}

.btn-danger:hover {
  background: #dc2626;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 11px;
  border-radius: 4px;
}

/* Tables styling */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--metin-2);
  border-bottom: 1px solid var(--sinir);
  background: #fafafa;
}

.admin-table td {
  padding: 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--sinir);
  color: var(--metin);
}

.admin-table tbody tr:hover {
  background: #fafafa;
}

.badge {
  display: inline-block;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 12px;
  text-transform: uppercase;
}

.badge.success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.badge.warning {
  background: rgba(217, 161, 59, 0.1);
  color: #c0841b;
}

/* Form layouts */
.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-field {
  flex: 1;
}

.form-row .form-field.flex-2 {
  flex: 2;
}

.form-row .form-field.flex-1 {
  flex: 1;
}

/* Modals */
.admin-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 25, 40, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.admin-modal-content {
  background: var(--beyaz);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sinir);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 500px;
  padding: 2rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.admin-modal-content.large {
  max-width: 800px;
}

.admin-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sinir);
}

.admin-modal-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gece);
}

.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--metin-2);
  cursor: pointer;
  transition: color 0.15s;
}

.close-btn:hover {
  color: var(--metin);
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

