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

:root {
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --surface: #ffffff;
  --border: #e2e8f0;
  --text: #0f172a;
  --text-muted: #64748b;
  --navy: #1e3a5f;
  --navy-dark: #152a45;
  --navy-light: #2d5a87;
  --teal: #0f766e;
  --teal-light: #14b8a6;
  --accent: #1e40af;
  --accent-soft: #dbeafe;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --call: #1e3a5f;
  --call-dark: #152a45;
  --call-red: #dc2626;
  --call-red-dark: #b91c1c;
  --call-red-light: #ef4444;
  --shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
  --shadow-lg: 0 8px 32px rgba(30, 58, 95, 0.12);
  --radius: 14px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body.has-call-bar {
  padding-bottom: calc(68px + var(--safe-bottom));
}

body.nav-open {
  overflow: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.site-header,
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 38, 38, 0.12);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.1);
  border-bottom-color: rgba(220, 38, 38, 0.2);
}

.site-header-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--call-red-dark) 0%, var(--call-red) 50%, var(--call-red-light) 100%);
}

.site-header-inner,
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  flex-wrap: wrap;
}

.nav-toggle {
  flex-shrink: 0;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 2px solid rgba(220, 38, 38, 0.2);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--call-red);
  background: #fff5f5;
}

.nav-toggle-bar {
  display: block;
  height: 2.5px;
  width: 100%;
  border-radius: 99px;
  background: var(--call-red);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.site-nav {
  display: none;
}

.site-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.site-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav-link:hover,
.site-nav-link.is-active {
  background: linear-gradient(135deg, var(--call-red) 0%, var(--call-red-dark) 100%);
  color: #fff;
}

.site-nav-dropdown {
  position: relative;
}

.site-nav-dropdown-btn {
  justify-content: space-between;
}

.site-nav-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.site-nav-dropdown.is-open .site-nav-chevron {
  transform: rotate(180deg);
}

.site-nav-dropdown-panel {
  display: none;
  padding: 8px 0 4px 8px;
}

.site-nav-dropdown.is-open .site-nav-dropdown-panel {
  display: block;
}

.site-nav-dropdown-all {
  display: block;
  padding: 10px 14px;
  margin-bottom: 6px;
  border-radius: 10px;
  background: #fff5f5;
  color: var(--call-red-dark);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.site-nav-dropdown-grid a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav-dropdown-grid a:hover {
  background: #fff;
  color: var(--call-red);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.site-header.is-nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.site-nav-mobile-head {
  display: none;
}

.site-nav-mobile-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
}

.nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(220, 38, 38, 0.25);
  border-radius: 12px;
  background: #fff;
  color: var(--call-red);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-close:hover {
  background: #fff5f5;
  border-color: var(--call-red);
  color: var(--call-red-dark);
}

.site-header.is-nav-open .site-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100dvh;
  padding: 16px 16px 24px;
  background: #fff;
  box-shadow: -8px 0 40px rgba(15, 23, 42, 0.15);
  z-index: 201;
  overflow-y: auto;
  animation: nav-slide-in 0.3s ease;
}

.site-header.is-nav-open .site-nav-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

@keyframes nav-slide-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-meta {
  display: none;
  align-items: center;
  gap: 10px;
  width: 100%;
  order: 4;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.header-clock {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
  padding-right: 10px;
  border-right: 1px solid var(--border);
}

.header-time {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.header-date {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.header-location-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--call-red) 0%, var(--call-red-dark) 100%);
  border: 2px solid #fff;
  box-shadow: 0 4px 18px rgba(220, 38, 38, 0.4), 0 0 0 0 rgba(220, 38, 38, 0.3);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 0;
}

.header-location-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.2) 45%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 255, 255, 0.2) 55%,
    transparent 65%,
    transparent 100%
  );
  animation: call-shimmer 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.header-location-btn:hover {
  transform: translateY(-1px) scale(1.02);
  color: #fff;
  box-shadow: 0 6px 24px rgba(220, 38, 38, 0.5), 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.header-location-btn:active {
  transform: scale(0.98);
}

.header-location-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  animation: pin-bounce 2s ease-in-out infinite;
}

.header-location-pin svg {
  width: 18px;
  height: 18px;
}

.header-location-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  position: relative;
  z-index: 2;
}

.header-location-text strong {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.header-location-text small {
  font-size: 0.62rem;
  font-weight: 600;
  opacity: 0.9;
}

.header-location-arrow {
  font-size: 1.1rem;
  font-weight: 800;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  transition: transform 0.2s ease;
}

.header-location-btn:hover .header-location-arrow {
  transform: translateX(3px);
}

@keyframes pin-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
}

.logo-img {
  height: 42px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.logo-icon {
  font-size: 1.6rem;
}

.header-nav {
  display: none;
  gap: 20px;
}

.header-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.header-nav a:hover {
  color: var(--navy);
}

.logo-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
}

.logo-text small {
  font-size: 0.7rem;
  color: var(--teal);
  font-weight: 600;
}

.header-nav a.active {
  color: var(--navy);
  font-weight: 700;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(30, 58, 95, 0.25);
  position: relative;
}

/* Hareketli arama butonları */
@keyframes btn-pulse {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(30, 58, 95, 0.3), 0 0 0 0 rgba(30, 58, 95, 0.45);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.4), 0 0 0 10px rgba(30, 58, 95, 0);
    transform: scale(1.03);
  }
}

@keyframes bar-glow {
  0%, 100% { opacity: 0.4; transform: scaleX(1); }
  50% { opacity: 0.8; transform: scaleX(1.02); }
}

@keyframes slide-up-bar {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.btn-pulse {
  animation: btn-pulse 2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .btn-pulse { animation: none; }

  .site-header.is-nav-open .site-nav {
    animation: none;
  }
}

/* Ana sayfa — kırmızı/beyaz ara butonları */
@keyframes call-shimmer {
  0% { transform: translateX(-120%) skewX(-12deg); }
  100% { transform: translateX(220%) skewX(-12deg); }
}

@keyframes btn-pulse-red {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.35), 0 0 0 0 rgba(255, 255, 255, 0.45);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 22px rgba(220, 38, 38, 0.5), 0 0 0 10px rgba(255, 255, 255, 0);
    transform: scale(1.03);
  }
}

.home-page .header-call,
.home-page .btn-call,
.area-page .btn-call,
.home-page .field-widget-btn-call,
.home-page .fixed-btn-call {
  background: linear-gradient(135deg, var(--call-red) 0%, var(--call-red-dark) 100%);
  color: #fff;
  border: 2px solid #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.35);
  z-index: 0;
}

.home-page .header-call::before,
.home-page .btn-call::before,
.area-page .btn-call::before,
.home-page .field-widget-btn-call::before,
.home-page .fixed-btn-call::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.2) 45%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 255, 255, 0.2) 55%,
    transparent 65%,
    transparent 100%
  );
  animation: call-shimmer 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.home-page .header-call.btn-pulse,
.home-page .btn-call.btn-pulse,
.area-page .btn-call.btn-pulse,
.home-page .field-widget-btn-call.btn-pulse,
.home-page .fixed-btn-call.btn-pulse,
.home-page .header-location-btn.btn-pulse {
  animation: btn-pulse-red 2s ease-in-out infinite;
}

.home-page .header-call:hover,
.home-page .btn-call:hover,
.area-page .btn-call:hover,
.home-page .field-widget-btn-call:hover,
.home-page .fixed-btn-call:hover {
  background: linear-gradient(135deg, var(--call-red-light) 0%, var(--call-red) 100%);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .home-page .header-call::before,
  .home-page .btn-call::before,
  .area-page .btn-call::before,
  .home-page .field-widget-btn-call::before,
  .home-page .fixed-btn-call::before {
    animation: none;
  }

  .home-page .header-call.btn-pulse,
  .home-page .btn-call.btn-pulse,
  .area-page .btn-call.btn-pulse,
  .home-page .field-widget-btn-call.btn-pulse,
  .home-page .fixed-btn-call.btn-pulse,
  .home-page .header-location-btn.btn-pulse {
    animation: none;
  }

  .fixed-call-accent {
    animation: none;
  }

  .header-location-btn::before {
    animation: none;
  }

  .header-location-pin {
    animation: none;
  }
}

/* Slider */
.slider {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  color: white;
}

.slide-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  --slide-overlay: 55;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, calc(var(--slide-overlay) / 100)) 0%,
    rgba(15, 23, 42, calc(var(--slide-overlay) / 100 * 0.55)) 100%
  );
}

.slide.slide-1 { background: linear-gradient(135deg, #1e3a5f, #2d5a87); }
.slide.slide-2 { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.slide.slide-3 { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.slide.slide-4 { background: linear-gradient(135deg, #b91c1c, #dc2626); }

.slide-content {
  position: relative;
  z-index: 2;
  padding: 48px 16px;
}

.slide-content.slide-align-center {
  text-align: center;
}

.slide-content.slide-align-center p {
  margin-left: auto;
  margin-right: auto;
}

.slide-content.slide-align-right {
  text-align: right;
  margin-left: auto;
  max-width: 1100px;
  width: 100%;
}

.slide-content.slide-align-right p {
  margin-left: auto;
}

.slide-content h1 {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.slide-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 20px;
  max-width: 480px;
}

.slide-btn {
  display: inline-flex;
  width: auto;
  padding: 14px 28px;
}

.slider-controls {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 3;
}

.slider-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
}

.slider-dot.active {
  background: white;
  width: 24px;
  border-radius: 4px;
}

/* Trust bar */
.trust-bar {
  background: var(--accent-soft);
  border-bottom: 1px solid #bfdbfe;
  padding: 12px 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
}

.trust-item {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

/* Hero compact */
.hero-compact {
  padding: 32px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero-compact h2 {
  font-size: clamp(1.3rem, 4vw, 1.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.hero-compact > .container > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(0.97);
}

.btn-call {
  background: linear-gradient(135deg, var(--call), var(--call-dark));
  color: white;
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: white;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.btn-lg {
  padding: 18px 28px;
  font-size: 1.05rem;
  width: 100%;
}

.btn-submit {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: white;
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.25);
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-chip {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Sections */
.section {
  padding: 48px 0;
}

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

.section-header {
  margin-bottom: 28px;
}

.section-header h2 {
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--navy);
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 4px solid var(--navy);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Areas */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  box-shadow: var(--shadow);
}

.area-tag-link {
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
}

.area-tag:hover,
.area-tag-link:hover {
  border-color: var(--navy-light);
  color: var(--navy);
  background: var(--accent-soft);
}

.area-tag-link:active {
  transform: scale(0.98);
}

/* Bolge SEO sayfasi */
.area-page-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.area-page-bottom-cta {
  margin-top: 28px;
}

.area-services-strip {
  margin-top: 28px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.area-services-strip h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.area-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.area-services-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.area-services-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.area-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}

.area-keyword {
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 50px;
  background: var(--accent-soft);
  color: var(--navy);
  border: 1px solid var(--border);
}

.area-regions-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.area-region-link {
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 50px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--navy);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.area-region-link:hover {
  border-color: var(--navy-light);
  background: var(--accent-soft);
}

.area-region-link.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  font-weight: 600;
}



/* Features */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.feature-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* Contact */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-success {
  text-align: center;
  color: var(--teal);
  font-size: 0.9rem;
  margin-top: 12px;
  font-weight: 600;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: #e2e8f0;
  padding: 40px 0 0;
}

.footer-grid {
  display: grid;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand strong {
  display: block;
  font-size: 1.15rem;
  color: white;
  margin-bottom: 8px;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.88rem;
  margin: 0 0 6px;
  line-height: 1.5;
}

.footer-extra {
  color: #fca5a5 !important;
  font-weight: 600;
}

.footer-brand small {
  color: var(--teal-light);
  font-size: 0.75rem;
}

.footer-address-block h3,
.footer-contact-block h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-address-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.55;
  transition: color 0.2s ease;
}

.footer-address-link:hover {
  color: #fff;
}

.footer-address-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.footer-hours {
  margin-top: 10px;
  font-size: 0.82rem;
  color: #94a3b8;
}

.footer-phone {
  display: block;
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  margin-bottom: 6px;
}

.footer-phone:hover {
  color: #fecaca;
}

.footer-wa-link {
  display: inline-block;
  color: #86efac;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-wa-link:hover {
  color: #bbf7d0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.footer-social-link.social-instagram:hover { background: linear-gradient(135deg, #f58529, #dd2a7b); }
.footer-social-link.social-facebook:hover { background: #1877f2; }
.footer-social-link.social-youtube:hover { background: #ff0000; }
.footer-social-link.social-tiktok:hover { background: #010101; }
.footer-social-link.social-x:hover { background: #000; }
.footer-social-link.social-whatsapp:hover { background: #25d366; }

.footer-bottom {
  padding: 20px 16px 24px;
  text-align: center;
}

.footer-copy {
  color: #64748b;
  font-size: 0.75rem;
  margin-top: 12px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }
}

/* Google Reviews */
.reviews-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 28px;
}

.reviews-score {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.score-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.score-stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin: 6px 0;
}

.score-count {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.google-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.reviews-marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 8px;
  padding: 8px 0 16px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.reviews-marquee-inner {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: reviews-scroll 90s linear infinite;
  will-change: transform;
}

.reviews-marquee:hover .reviews-marquee-inner {
  animation-play-state: paused;
}

@keyframes reviews-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  flex: 0 0 280px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

@media (prefers-reduced-motion: reduce) {
  .reviews-marquee-inner {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding: 0 16px;
  }

  .reviews-marquee {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: auto;
  }
}

.review-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.review-stars {
  color: #fbbf24;
  font-size: 0.85rem;
}

.review-stars .empty {
  color: #e2e8f0;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-logo {
  height: 48px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Field service widget — sol sabit */
.field-service-widget {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 250;
  display: flex;
  align-items: stretch;
  pointer-events: none;
}

.field-service-widget > * {
  pointer-events: auto;
}

.field-widget-tab {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 44px;
  padding: 14px 8px;
  border: none;
  border-radius: 0 12px 12px 0;
  background: var(--navy);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.field-widget-tab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: live-dot-pulse 2s ease-in-out infinite;
  transform: rotate(180deg);
}

.field-widget-tab-text {
  transform: rotate(180deg);
}

.field-widget-panel {
  position: relative;
  width: 220px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: none;
  border-radius: 0 16px 16px 0;
  box-shadow: var(--shadow-lg);
  animation: slide-in-left 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.field-widget-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: none;
}

.field-widget-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.field-widget-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.field-widget-status {
  min-width: 0;
}

.field-widget-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #16a34a;
  margin-bottom: 4px;
}

.field-widget-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: live-dot-pulse 2s ease-in-out infinite;
}

.field-widget-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
}

.field-widget-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 12px;
}

.field-widget-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-widget-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  color: white;
}

.field-widget-btn-call {
  background: var(--navy);
}

.field-widget-btn-wa {
  background: var(--whatsapp);
}

.field-service-widget.is-collapsed .field-widget-panel {
  display: none;
}

.field-service-widget.is-collapsed .field-widget-tab {
  display: flex;
}

.field-service-widget.is-dismissed {
  display: none;
}

@keyframes live-dot-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 599px) {
  .field-service-widget {
    top: auto;
    bottom: calc(88px + var(--safe-bottom));
    transform: none;
  }

  body.has-call-bar .field-service-widget {
    bottom: calc(156px + var(--safe-bottom));
  }

  .field-widget-panel {
    position: relative;
    width: min(260px, calc(100vw - 52px));
    padding-top: 36px;
  }

  .field-widget-close {
    display: block;
  }

  .field-service-widget:not(.is-collapsed) .field-widget-tab {
    display: none;
  }

  .field-service-widget.is-collapsed .field-widget-tab {
    display: flex;
    writing-mode: horizontal-tb;
    transform: none;
    width: auto;
    padding: 10px 14px;
    flex-direction: row;
    border-radius: 0 12px 12px 0;
  }

  .field-widget-tab-dot,
  .field-widget-tab-text {
    transform: none;
  }
}

@media (min-width: 900px) {
  .field-widget-panel {
    width: 240px;
    padding: 18px;
  }

  .field-widget-title {
    font-size: 1rem;
  }
}

/* Fixed call bar */
.fixed-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  padding-bottom: calc(10px + var(--safe-bottom));
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #4a1520 100%);
  color: white;
  box-shadow: 0 -4px 28px rgba(30, 58, 95, 0.35), 0 -2px 0 rgba(220, 38, 38, 0.5);
  animation: slide-up-bar 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.home-page .fixed-call-bar {
  background: linear-gradient(120deg, var(--navy-dark) 0%, #2c3e62 35%, #6b1d24 70%, var(--call-red-dark) 100%);
  box-shadow: 0 -6px 32px rgba(185, 28, 28, 0.28), 0 -2px 0 rgba(255, 255, 255, 0.25);
}

.fixed-call-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #fff 0%, var(--call-red-light) 35%, #fff 50%, var(--call-red) 75%, #fff 100%);
  background-size: 200% 100%;
  animation: bar-accent-slide 4s linear infinite;
  pointer-events: none;
}

@keyframes bar-accent-slide {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.fixed-call-pulse {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), rgba(255,255,255,0.14), rgba(255,255,255,0.08), transparent);
  animation: bar-glow 3s ease-in-out infinite;
  pointer-events: none;
}

.fixed-call-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.fixed-call-label {
  font-size: 0.72rem;
  opacity: 0.9;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.fixed-call-phone {
  color: white;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
}

.fixed-call-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.fixed-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  color: white;
  white-space: nowrap;
}

.fixed-btn-call {
  background: linear-gradient(135deg, var(--call-red) 0%, var(--call-red-dark) 100%);
  border: 2px solid #fff;
  position: relative;
  overflow: hidden;
}

.home-page .fixed-btn-call {
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
}

.fixed-btn-wa {
  background: var(--whatsapp);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.fixed-call-phone:hover {
  color: #fff;
  text-decoration: underline;
}

/* Tablet+ */
@media (min-width: 600px) {
  .header-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .site-header-inner {
    flex-wrap: nowrap;
  }

  .site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 6px;
    order: 2;
  }

  .logo {
    order: 1;
    flex-shrink: 0;
  }

  .header-meta {
    order: 3;
    width: auto;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    flex-shrink: 0;
  }

  .site-nav-list {
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }

  .site-nav-link {
    width: auto;
    padding: 9px 14px;
    font-size: 0.84rem;
    border-radius: 999px;
    color: var(--text-muted);
  }

  .site-nav-link:hover,
  .site-nav-link.is-active {
    color: #fff;
  }

  .site-nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 280px;
    padding: 12px;
    background: #fff;
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    z-index: 50;
  }

  .site-nav-dropdown.is-open .site-nav-dropdown-panel {
    display: block;
    animation: dropdown-fade 0.2s ease;
  }

  @keyframes dropdown-fade {
    from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
  }

  .site-nav-dropdown-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .home-page .header-meta {
    display: flex;
  }

  .slide {
    min-height: 380px;
  }

  .reviews-header {
    flex-direction: row;
    align-items: center;
  }

  .reviews-score {
    flex-shrink: 0;
    min-width: 200px;
  }

  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-cta .btn {
    flex: 1;
    min-width: 200px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-buttons {
    flex-direction: row;
  }

  .contact-buttons .btn {
    flex: 1;
  }
}

@media (min-width: 768px) {
  .home-page .header-time {
    font-size: 1.1rem;
  }

  .home-page .header-date {
    font-size: 0.72rem;
  }

  .site-nav-link {
    padding: 10px 16px;
    font-size: 0.88rem;
  }
}

@media (max-width: 599px) {
  .home-page .header-meta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .home-page .header-clock {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-right: none;
    padding-right: 0;
    width: 100%;
  }

  .home-page .header-time {
    font-size: 0.95rem;
  }

  .home-page .header-date {
    font-size: 0.68rem;
    text-align: right;
  }

  .home-page .header-location-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
  }

  .home-page .header-location-text strong {
    font-size: 0.95rem;
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .section {
    padding: 64px 0;
  }

  .slide {
    min-height: 420px;
  }

  .review-card {
    flex: 0 0 300px;
  }

  .fixed-call-bar {
    padding: 12px 32px;
  }

  .fixed-call-phone {
    font-size: 1.15rem;
  }
}

/* Blog */
.blog-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  padding: 48px 0;
  text-align: center;
}

.blog-hero h1 {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.blog-hero p {
  opacity: 0.9;
  font-size: 0.95rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.blog-grid-home {
  grid-template-columns: 1fr;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img-wrap {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 20px;
}

.blog-card-body time {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.blog-card-body h2,
.blog-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 8px 0;
  color: var(--navy);
}

.blog-card-body h2 a,
.blog-card-body h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-card-body h2 a:hover,
.blog-card-body h3 a:hover {
  color: var(--accent);
}

.blog-card-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.blog-read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.blog-read-more:hover {
  color: var(--accent);
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.blog-empty {
  text-align: center;
  padding: 48px 20px;
}

/* Yazi detay sayfasi */
.article-body {
  background: var(--bg);
}

.article-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff;
  padding: 36px 0 44px;
}

.article-hero h1 {
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 16px 0 12px;
  max-width: 800px;
}

.article-lead {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 680px;
  line-height: 1.6;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  opacity: 0.85;
}

.breadcrumb-light a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.breadcrumb-light a:hover {
  color: #fff;
}

.breadcrumb-light span {
  opacity: 0.5;
  margin: 0 6px;
}

.article-main {
  padding: 40px 0 64px;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.article-content-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.article-figure {
  margin: 0 0 28px;
  border-radius: var(--radius);
  overflow: hidden;
}

.article-figure img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.article-prose {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.article-prose p {
  margin-bottom: 18px;
}

.article-prose h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin: 32px 0 12px;
}

.article-prose h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 10px;
}

.article-prose ul,
.article-prose ol {
  margin: 0 0 18px 24px;
}

.article-prose li {
  margin-bottom: 8px;
}

.article-prose a {
  color: var(--accent);
  font-weight: 600;
}

.article-prose blockquote {
  border-left: 4px solid var(--navy);
  padding: 12px 20px;
  margin: 20px 0;
  background: var(--bg-alt);
  color: var(--text-muted);
  font-style: italic;
}

.article-share {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.article-share p {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.article-share-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.sidebar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.sidebar-cta p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.related-list {
  list-style: none;
}

.related-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.related-list li:last-child {
  border-bottom: none;
}

.related-list a {
  display: block;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.related-list a:hover {
  color: var(--accent);
}

.related-list small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (min-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr 300px;
  }

  .article-content-box {
    padding: 36px 40px;
  }
}

.blog-article-wrap {
  max-width: 760px;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--navy);
  text-decoration: none;
}

.blog-article-header {
  margin-bottom: 24px;
}

.blog-article-header time {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.blog-article-header h1 {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin: 10px 0;
  line-height: 1.25;
}

.blog-article-excerpt {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.blog-article-img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.blog-article-content {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

.blog-article-content p {
  margin-bottom: 16px;
}

.blog-article-content h2,
.blog-article-content h3 {
  color: var(--navy);
  margin: 24px 0 12px;
}

.blog-article-cta {
  margin-top: 40px;
  padding: 28px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  text-align: center;
}

.blog-article-cta p {
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--navy);
}

.footer-links {
  margin: 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.btn-ghost {
  background: var(--surface);
  color: var(--navy);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

@media (min-width: 600px) {
  .blog-grid,
  .blog-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-grid-home {
    grid-template-columns: repeat(3, 1fr);
  }
}