/* ============================================================
   style.css — Muhasebe Web Sitesi Global Stiller
   CSS değişkenleri config.js → components.js üzerinden set edilir.
   ============================================================ */

/* ── Varsayılan CSS Değişkenleri (config.js override eder) ── */
:root {
  --primary:       #1a3a5c;
  --primary-light: #2a5298;
  --accent:        #c8973f;
  --accent-light:  #e8b558;
  --bg:            #f4f7fb;
  --bg-alt:        #eef1f7;
  --text:          #1e2d3d;
  --text-muted:    #5a6a7a;
  --white:         #ffffff;
  --border:        #dce4ef;
  --takv-vergi:    #e53e3e;
  --takv-sgk:      #3182ce;
  --takv-diger:    #805ad5;

  --shadow-sm:  0 1px 4px rgba(26,58,92,.08);
  --shadow-md:  0 4px 16px rgba(26,58,92,.12);
  --shadow-lg:  0 8px 32px rgba(26,58,92,.16);
  --radius:     10px;
  --radius-lg:  16px;
  --transition: .22s ease;
  --navbar-h:   68px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; color: var(--primary); }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
p  { color: var(--text-muted); }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--primary);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark p { color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}

.section-header p {
  max-width: 600px;
  margin: .8rem auto 0;
  font-size: 1.05rem;
}

/* ── Navbar ── */
#navbar-placeholder { position: sticky; top: 0; z-index: 1000; }

.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  height: var(--navbar-h);
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.nav-logo {
  height: 40px;
  width: auto;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.nav-brand-sub {
  font-size: .7rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  padding: .4rem .85rem;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--bg-alt);
}

.nav-links a.active {
  color: var(--accent);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.btn-tel {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  border: 1.5px solid var(--border);
  padding: .4rem .9rem;
  border-radius: 6px;
  transition: border-color var(--transition), background var(--transition);
}

.btn-tel:hover { border-color: var(--primary); background: var(--bg-alt); }

.btn-wp-nav {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  background: #25d366;
  padding: .45rem 1rem;
  border-radius: 6px;
  transition: background var(--transition);
}

.btn-wp-nav:hover { background: #1da851; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile Nav ── */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .btn-tel { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--navbar-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    box-shadow: var(--shadow-md);
    gap: .25rem;
  }

  .navbar.open .nav-links { display: flex; }

  .nav-links a { padding: .65rem 1rem; font-size: 1rem; }
}

/* ── WhatsApp Floating Button ── */
.wp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}

.wp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

.wp-float svg { width: 30px; height: 30px; }

/* ── Footer ── */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,.85);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  margin: 1rem 0 1.25rem;
  max-width: 280px;
}

.footer-logo {
  height: 38px;
  filter: brightness(0) invert(1);
}

.footer-brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-top: .5rem;
}

.footer h4 {
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.footer-links { display: flex; flex-direction: column; gap: .5rem; }

.footer-links a {
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent); }

.footer-contact { display: flex; flex-direction: column; gap: .6rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255,255,255,.72);
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

.footer-bottom a { color: var(--accent-light); }

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(200,151,63,.35);
}

.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 4px 18px rgba(200,151,63,.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-primary-dark {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary-dark:hover {
  background: var(--primary-light);
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: .35rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
  letter-spacing: .05em;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 span { color: var(--accent-light); }

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.hero-stat .number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}

.hero-stat .label {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  margin-top: .3rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card-stack {
  position: relative;
  width: 340px;
}

.hero-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: var(--white);
}

.hero-card-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.hero-card-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .88rem;
}

.hero-card-row::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-light);
  flex-shrink: 0;
  opacity: .8;
}

.hero-card-row:last-child { border-bottom: none; }

.hero-card-2 {
  background: var(--accent);
  border: none;
  padding: 1.1rem 1.5rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-card-2 svg { flex-shrink: 0; }

.hero-card-2 .msg { font-size: .88rem; font-weight: 600; }
.hero-card-2 .sub { font-size: .76rem; opacity: .8; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
}

/* ── Hızlı Erişim Barı ── */
.quicklinks-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: .7rem 0;
}

.quicklinks-bar .container {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.quicklinks-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 1rem;
  border-right: 1px solid var(--border);
}

.quicklinks-list {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
}

.quicklink {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: .3rem .75rem;
  border-radius: 100px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.quicklink:hover {
  color: var(--primary);
  background: var(--bg-alt);
  border-color: var(--border);
}

.quicklink svg {
  flex-shrink: 0;
  opacity: .65;
}

@media (max-width: 860px) {
  .quicklinks-label { display: none; }
  .quicklinks-list { gap: .25rem; }
  .quicklink { font-size: .73rem; padding: .25rem .6rem; }
}

@media (max-width: 520px) {
  .quicklinks-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .quicklinks-list { flex-wrap: nowrap; }
}

/* ── Hizmetler ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  padding: 2rem 1.75rem;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.service-card h3 { margin-bottom: .6rem; }

@media (max-width: 860px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .services-grid { grid-template-columns: 1fr; } }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  padding: 4rem 0;
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner h2 { color: var(--white); margin-bottom: .5rem; }
.cta-banner p  { color: rgba(255,255,255,.85); }

/* ── Hakkımızda Sayfa ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-alt);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
  padding: 3rem;
  text-align: center;
}

.about-img-placeholder svg { opacity: .3; }

.about-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
}

.about-list-item .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { min-height: 220px; }
}

/* ── Ekip ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  overflow: hidden;
}

.team-photo-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  overflow: hidden;
  background: var(--bg-alt);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-placeholder {
  color: var(--text-muted);
  font-size: 2.5rem;
  line-height: 1;
}

.team-card .card-body { padding: 1.5rem; }

.team-card h3 { margin-bottom: .25rem; }

.team-unvan {
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  display: block;
}

.team-card p { font-size: .88rem; }

@media (max-width: 720px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* ── Değerlerimiz ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 720px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

/* ── Takvim ── */
.calendar-legend {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 500;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.calendar-grid-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}

.calendar-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calendar-header h2 { color: var(--white); font-size: 1.2rem; }

.calendar-daynames {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.calendar-dayname {
  padding: .65rem;
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.cal-day {
  min-height: 90px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .5rem;
  position: relative;
}

.cal-day:nth-child(7n) { border-right: none; }

.cal-day.empty { background: var(--bg-alt); }

.cal-day.today { background: rgba(200,151,63,.07); }

.cal-day-num {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1;
  margin-bottom: .4rem;
}

.cal-day.today .cal-day-num {
  background: var(--accent);
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-day.weekend .cal-day-num { color: var(--takv-vergi); }

.cal-day.holiday { background: #fff5f5; }

.cal-event {
  font-size: .68rem;
  font-weight: 600;
  padding: .2rem .4rem;
  border-radius: 4px;
  margin-bottom: .2rem;
  line-height: 1.25;
  cursor: default;
}

.cal-event.vergi { background: rgba(229,62,62,.12); color: #c53030; }
.cal-event.sgk   { background: rgba(49,130,206,.12); color: #2b6cb0; }
.cal-event.diger { background: rgba(128,90,213,.12); color: #6b46c1; }

.calendar-events-list {
  margin-top: 2rem;
}

.events-month-title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.event-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: .75rem;
  transition: box-shadow var(--transition);
}

.event-item:hover { box-shadow: var(--shadow-sm); }

.event-date-badge {
  min-width: 52px;
  text-align: center;
  background: var(--bg-alt);
  border-radius: 8px;
  padding: .4rem .5rem;
  flex-shrink: 0;
}

.event-date-badge .day {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
}

.event-date-badge .month {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: .06em;
}

.event-body { flex: 1; }

.event-body h4 { font-size: .95rem; margin-bottom: .2rem; }
.event-body p  { font-size: .82rem; }

.event-tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  font-weight: 700;
  padding: .15rem .6rem;
  border-radius: 100px;
  margin-bottom: .35rem;
  letter-spacing: .04em;
}

.event-tag.vergi { background: rgba(229,62,62,.12); color: #c53030; }
.event-tag.sgk   { background: rgba(49,130,206,.12); color: #2b6cb0; }
.event-tag.diger { background: rgba(128,90,213,.12); color: #6b46c1; }

@media (max-width: 640px) {
  .cal-day { min-height: 60px; }
  .cal-event { display: none; }
  .cal-day.has-event::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    margin: 0 auto;
  }
}

/* ── Bilgiler ── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.info-card {
  padding: 0;
  overflow: hidden;
}

.info-card-header {
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
}

.info-card-header svg { flex-shrink: 0; }

.info-card-header h3 { color: var(--white); font-size: 1rem; }

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }

.info-table td {
  padding: .75rem 1.25rem;
  font-size: .88rem;
  vertical-align: middle;
}

.info-table td:first-child { color: var(--text-muted); }
.info-table td:last-child  { font-weight: 600; color: var(--text); text-align: right; }

.info-table tr.highlight td {
  background: rgba(200,151,63,.07);
}

.info-table tr.highlight td:last-child { color: var(--accent); }

.info-note {
  font-size: .78rem;
  color: var(--text-muted);
  padding: .75rem 1.25rem;
  border-top: 1px solid var(--border);
  font-style: italic;
}

@media (max-width: 760px) { .info-grid { grid-template-columns: 1fr; } }

/* ── Vergi Dilimleri ── */
.dilim-bar-wrap { padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; }

.dilim-bar-item { display: flex; flex-direction: column; gap: .3rem; }

.dilim-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
}

.dilim-bar-label .range { color: var(--text-muted); }
.dilim-bar-label .rate  { font-weight: 700; color: var(--primary); }

.dilim-bar-track {
  height: 8px;
  border-radius: 4px;
  background: var(--bg-alt);
  overflow: hidden;
}

.dilim-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width .8s ease;
}

/* ── İletişim ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info-card { padding: 2rem; }

.contact-info-card h2 { margin-bottom: .5rem; }
.contact-info-card > p { margin-bottom: 1.75rem; }

.contact-items { display: flex; flex-direction: column; gap: 1.1rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-body .label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .15rem;
}

.contact-item-body .value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
}

.contact-wp-btn {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #25d366;
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-top: 1.75rem;
  font-weight: 600;
  transition: background var(--transition);
}

.contact-wp-btn:hover { background: #1da851; }

.contact-form-card { padding: 2rem; }
.contact-form-card h2 { margin-bottom: 1.5rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group { margin-bottom: 1rem; }
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(42,82,152,.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit {
  margin-top: 1.25rem;
  width: 100%;
  padding: .9rem;
  font-size: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.form-success .icon { font-size: 3rem; margin-bottom: 1rem; }

.map-wrap {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  height: 380px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 760px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Page Hero (iç sayfalar) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 3.5rem 0;
  color: var(--white);
}

.page-hero h1 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: .5rem; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 1rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .75rem;
}

.breadcrumb a { color: var(--accent-light); }
.breadcrumb span { opacity: .5; }

/* ── Utilities ── */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.badge {
  display: inline-block;
  padding: .2rem .7rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.badge-accent { background: rgba(200,151,63,.15); color: var(--accent); }
.badge-primary { background: rgba(26,58,92,.1); color: var(--primary); }

/* ── Scroll top ── */
.scroll-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.75rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  border: none;
  cursor: pointer;
}

.scroll-top.visible { opacity: 1; pointer-events: auto; }
