:root {
  /* Use Blue (Mavi Tonları) as accent for Nakliye */
  --accent: var(--blue);
}

/* Page base light styling */
body {
  background: var(--bg-secondary) !important;
  color: var(--label) !important;
}

/* Desktop Sidebar Layout for Nakliye (Make it feel like a different desktop app) */
@media (min-width: 769px) {
  body {
    display: block !important;
    min-height: 100vh;
  }

  /* Navigation Sidebar */
  header.site-header {
    width: 260px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    border-right: 1px solid var(--separator);
    border-bottom: none !important;
    background: var(--surface) !important;
    box-shadow: var(--shadow-sm);
  }

  header.site-header .nav-container {
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
  }

  header.site-header .logo {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
  }

  header.site-header nav {
    width: 100%;
    margin-bottom: auto;
  }

  header.site-header nav ul {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  header.site-header nav ul li {
    width: 100%;
  }

  header.site-header nav ul a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: var(--r-sm);
    font-size: 15px;
    font-weight: 600;
    transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
  }

  header.site-header nav ul a:hover {
    background: var(--fill);
    color: var(--accent) !important;
  }

  header.site-header nav ul a.active {
    background: color-mix(in oklab, var(--accent) 12%, transparent);
    color: var(--accent) !important;
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
  }

  /* Main area content pushed to the right of sidebar */
  main.container {
    margin-left: 260px !important;
    max-width: calc(100% - 260px) !important;
    padding: 40px 32px !important;
  }

  footer.site-footer {
    margin-left: 260px !important;
    max-width: calc(100% - 260px) !important;
  }
}

/* Header style for mobile viewport */
@media (max-width: 768px) {
  header.site-header {
    background: var(--surface) !important;
    border-bottom: 1px solid var(--separator) !important;
    padding: 0 16px;
  }
  
  header.site-header nav ul {
    display: none; /* Hide default top nav menu list */
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(242, 242, 247, 0.7) 100%), url('/assets/container_hero.png') no-repeat center center;
  background-size: cover;
  border-radius: var(--r-lg);
  margin-top: 0;
  border: 1px solid var(--separator);
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

[data-theme="dark"] .hero-section {
  background: linear-gradient(135deg, rgba(20, 20, 25, 0.95) 0%, rgba(28, 28, 30, 0.8) 100%), url('/assets/container_hero.png') no-repeat center center;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0px;
  margin-bottom: 48px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--separator);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}

/* Service Info style */
.service-icon {
  width: 48px;
  height: 48px;
  background: color-mix(in oklab, var(--accent) 12%, transparent);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  border: 1px solid color-mix(in oklab, var(--accent) 20%, transparent);
}

/* Map area */
.map-placeholder {
  width: 100%;
  height: 350px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--surface) 100%);
  border: 1px solid var(--separator);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.map-placeholder svg {
  color: var(--accent);
  opacity: 0.2;
}

.map-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(80px);
  opacity: 0.08;
  pointer-events: none;
}
