/* ===========================
   Osman Hatipler SMMM - Styles
=========================== */

:root {
  --navy: #0f2544;
  --navy-dark: #0a1a30;
  --navy-light: #1b3a63;
  --gold: #c9a227;
  --gold-light: #e6c860;
  --white: #ffffff;
  --gray-50: #f7f8fa;
  --gray-100: #eef1f5;
  --gray-200: #e2e6ec;
  --gray-400: #9aa4b2;
  --gray-600: #5b6474;
  --gray-800: #29303c;
  --text-main: #1c2431;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 37, 68, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 37, 68, 0.14);
  --container-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 {
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.25;
}

p { margin: 0 0 16px; color: var(--gray-600); }

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

ul { margin: 0; padding: 0; list-style: none; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--gray-100);
  color: var(--navy);
  border-color: var(--gray-100);
}
.btn-ghost:hover {
  background: var(--gray-200);
}

.btn-lg { padding: 16px 30px; font-size: 1rem; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  color: var(--navy);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(15, 37, 68, 0.2);
}

.footer-brand .logo-img {
  width: 40px;
  height: 40px;
}

/* Logo metni: "Osman Hatipler" üstte, "SMMM" alt satırda */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
  font-size: 1.05rem;
  font-weight: 700;
}
.logo-text strong {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 4px;
}

/* Footer'daki logo metni tek satır kalsın */
.footer-brand .logo-text { flex-direction: row; gap: 5px; font-size: 1.1rem; }
.footer-brand .logo-text strong { font-size: 1.1rem; letter-spacing: 0; }

.main-nav ul {
  display: flex;
  gap: 32px;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--gray-800);
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--navy); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-call { padding: 11px 20px; font-size: 0.9rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ============ Sticky mobile call button ============ */
.sticky-call-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1100;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(15, 37, 68, 0.35);
}

/* ============ Hero ============ */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  padding: 88px 0;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  color: var(--white);
  font-size: 2.7rem;
  margin-bottom: 20px;
}

.hero-text {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-cta .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.hero-cta .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ============ Trust section ============ */
.trust-section {
  padding: 60px 0;
  background: var(--gray-50);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  text-align: left;
  border: 1px solid var(--gray-200);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(15, 37, 68, 0.06);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.trust-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.trust-card p { font-size: 0.92rem; margin: 0; }

/* ============ Section heading ============ */
.section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  background: rgba(201, 162, 39, 0.12);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-heading h2 { font-size: 2rem; }

/* ============ Services ============ */
.services-section {
  padding: 96px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.94rem; margin: 0; }

.services-note {
  margin-top: 36px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--gray-400);
  font-style: italic;
}

/* ============ About ============ */
.about-section {
  padding: 96px 0;
  background: var(--gray-50);
}

.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-content h2 { font-size: 2rem; }

.about-signature {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid var(--gray-200);
}

.signature-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
  margin: 0;
}

.signature-title {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}

/* ============ Audience ============ */
.audience-section {
  padding: 96px 0;
  background: var(--white);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.audience-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 22px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.audience-card:hover {
  transform: translateY(-3px);
  border-color: var(--navy);
}

.audience-card i {
  font-size: 1.4rem;
  color: var(--navy);
  width: 44px;
  height: 44px;
  background: rgba(15, 37, 68, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audience-card p {
  margin: 0;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.96rem;
}

/* ============ FAQ ============ */
.faq-section {
  padding: 96px 0;
  background: var(--gray-50);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.25s ease;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 26px 22px;
  margin: 0;
  font-size: 0.95rem;
}

/* ============ Contact ============ */
.contact-section {
  padding: 96px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
}

.contact-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.88);
  font-size: 0.98rem;
}

.contact-info-list i {
  color: var(--gold-light);
  margin-top: 3px;
  width: 20px;
  flex-shrink: 0;
}

.contact-info-list a { color: var(--white); font-weight: 600; }

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-buttons .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.contact-buttons .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.contact-buttons .btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.1);
}
.contact-buttons .btn-ghost:hover {
  background: rgba(255,255,255,0.2);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 28px;
}

.footer-inner { text-align: center; }

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-disclaimer {
  max-width: 640px;
  margin: 0 auto 24px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact i { color: var(--gold-light); }

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin: 0;
}

/* ============ Fade-in animation ============ */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Responsive ============ */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-image { max-width: 360px; margin: 0 auto; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 280px; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.open { max-height: 400px; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
  }
  .main-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
  }
  .hamburger { display: flex; }
  .btn-call { display: none; }
  .sticky-call-btn { display: flex; }

  .hero { padding: 30px 0 36px; }
  .hero-inner { gap: 18px; }
  .hero h1 { font-size: 1.85rem; margin-bottom: 12px; }
  .hero-text { font-size: 0.98rem; margin-bottom: 18px; }
  .hero .eyebrow { margin-bottom: 8px; }
  .hero-media img { height: 168px; width: 100%; object-fit: cover; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta .btn { justify-content: center; }
  .hero-cta .btn-lg { padding: 13px 22px; font-size: 0.95rem; }

  .trust-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }

  .section-heading h2 { font-size: 1.6rem; }

  .contact-card { padding: 32px 24px; }
  .contact-buttons { flex-direction: column; }
  .contact-buttons .btn { justify-content: center; width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero { padding: 24px 0 30px; }
  .hero h1 { font-size: 1.65rem; }
  .hero-media img { height: 142px; }
}

/* =====================================================================
   Çok sayfalı yapı için ek bileşenler
===================================================================== */

/* Aktif menü öğesi */
.main-nav a.active { color: var(--navy); }
.main-nav a.active::after { width: 100%; }

/* Breadcrumb */
.breadcrumb {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.85rem;
}
.breadcrumb .container { padding-top: 14px; padding-bottom: 14px; }
.breadcrumb a { color: var(--gray-600); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb i { color: var(--gray-400); font-size: 0.7rem; margin: 0 2px; }
.breadcrumb span[aria-current] { color: var(--navy); font-weight: 600; }

/* Alt sayfa hero (küçük) */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 62px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(201,162,39,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: 2.3rem; max-width: 820px; }
.page-hero-text { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 680px; margin: 0; }

/* İçerik + yan sütun */
.content-section { padding: 72px 0; background: var(--white); }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.content-main h2 { font-size: 1.5rem; margin: 36px 0 16px; }
.content-main h2:first-child { margin-top: 0; }
.content-main p { font-size: 1rem; color: var(--gray-800); }

/* Adım listesi */
.step-list { display: grid; gap: 18px; margin: 0 0 8px; }
.step-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.step-item h3 { font-size: 1.05rem; margin: 2px 0 6px; }
.step-item p { margin: 0; font-size: 0.94rem; }

/* İlgili hizmetler */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px 16px;
  color: var(--navy); font-weight: 600; font-size: 0.9rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.related-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.related-card i { font-size: 1.4rem; color: var(--navy); }

/* Yan kartlar */
.content-aside { display: grid; gap: 20px; position: sticky; top: 96px; }
.aside-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
}
.aside-card h3 { font-size: 1.05rem; margin-bottom: 14px; }
.check-list { display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--gray-800); }
.check-list i { color: var(--gold); margin-top: 3px; }
.aside-cta { background: var(--navy); border-color: var(--navy); }
.aside-cta h3 { color: var(--white); }
.aside-cta p { color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.aside-cta .btn { width: 100%; justify-content: center; }

/* Kart linki */
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  color: var(--navy); font-weight: 600; font-size: 0.9rem;
}
.card-link i { transition: transform 0.2s ease; }
.card-link:hover i { transform: translateX(4px); }
.service-card h3 a:hover { color: var(--gold); }

/* Değerler bölümü */
.values-section { padding: 80px 0; background: var(--white); }

/* CTA bandı */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 56px 0;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); font-size: 1.6rem; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.8); margin: 0; }
.btn-gold { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }

/* SSS dar kolon */
.faq-narrow { max-width: 820px; }

/* Faydalı bağlantılar */
.links-section { padding: 72px 0; background: var(--white); }
.link-group { margin-bottom: 44px; }
.link-group > h2 {
  font-size: 1.4rem;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 24px;
}
.link-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.link-card {
  display: block;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.link-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }
.link-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.link-card h3 { font-size: 1.05rem; margin: 0; }
.link-card-head i { color: var(--gray-400); font-size: 0.85rem; }
.link-card p { font-size: 0.9rem; margin: 8px 0 12px; }
.link-url { font-size: 0.8rem; color: var(--gold); font-weight: 600; }

/* Çok kolonlu footer */
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-brand { margin-bottom: 16px; }
.footer-about { font-size: 0.9rem; color: rgba(255,255,255,0.6); max-width: 340px; }
.footer-address { font-style: normal; display: grid; gap: 8px; font-size: 0.88rem; }
.footer-address i { color: var(--gold-light); width: 16px; }
.footer-address a { color: rgba(255,255,255,0.85); }
.footer-bottom { text-align: center; padding-top: 24px; }
.footer-bottom .footer-disclaimer { margin-bottom: 16px; }

@media (max-width: 992px) {
  .content-grid { grid-template-columns: 1fr; }
  .content-aside { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .page-hero { padding: 46px 0; }
  .page-hero h1 { font-size: 1.7rem; }
  .related-grid { grid-template-columns: 1fr; }
  .link-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-band .btn { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

/* =====================================================================
   Mobil alt navigasyon (bottom nav)
===================================================================== */
.mobile-bottom-nav { display: none; }

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1200;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -6px 18px rgba(15, 37, 68, 0.10);
    padding: 8px 4px calc(8px + env(safe-area-inset-bottom, 0px));
    justify-content: space-around;
    align-items: flex-end;
  }
  .mobile-bottom-nav a {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--gray-600);
    padding: 2px 2px;
    min-width: 0;
  }
  .mobile-bottom-nav a i { font-size: 1.15rem; line-height: 1; }
  .mobile-bottom-nav a span { white-space: nowrap; }
  .mobile-bottom-nav a.active { color: var(--navy); }
  .mobile-bottom-nav a.active i { color: var(--gold); }

  /* Ortadaki belirgin "Ara" butonu (yükseltilmiş) */
  .mobile-bottom-nav .mbn-call { color: var(--navy); }
  .mobile-bottom-nav .mbn-call i {
    width: 46px; height: 46px;
    margin-top: -22px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 6px 16px rgba(15, 37, 68, 0.35);
    border: 3px solid var(--white);
  }

  /* Alt çubuk varken yüzen arama butonunu gizle (çakışmasın) */
  .sticky-call-btn { display: none !important; }

  /* İçerik alt çubuğun arkasında kalmasın */
  body { padding-bottom: 68px; }
}

@media (max-width: 360px) {
  .mobile-bottom-nav a { font-size: 0.6rem; }
  .mobile-bottom-nav a i { font-size: 1.05rem; }
}

/* Footer kredi (by Chronodin) */
.footer-credit {
  margin: 10px 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.3px;
}
.footer-credit span { color: var(--gold-light); font-weight: 600; }
.footer-credit a { color: var(--gold-light); font-weight: 600; }
.footer-credit a:hover { text-decoration: underline; }
