/* ================================================================
   A1 Bau GmbH — Custom CSS
   Design System: Navy Blue (#0d1b2a) + Orange (#f4761a) accent
   Font: Outfit (headings) + Inter (body)
================================================================ */

:root {
  --navy: #0d1b2a;
  --navy-mid: #132338;
  --navy-light: #1e3553;
  --orange: #f4761a;
  --orange-dark: #d4600e;
  --orange-glow: rgba(244, 118, 26, 0.18);
  --white: #ffffff;
  --off-white: #f5f7fa;
  --text-muted: #8a9bb0;
  --card-bg: #162035;
  --border: rgba(255, 255, 255, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.35);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--navy);
  color: #d0dce8;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: var(--white);
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--orange-dark);
}

.text-orange {
  color: var(--orange) !important;
}
.bg-orange {
  background: var(--orange) !important;
}

/* ---- Utility ---- */
.section-padding {
  padding: 90px 0;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}
.divider-orange {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  border-radius: 2px;
  margin: 0.75rem 0 1.5rem;
}

/* ---- Buttons ---- */
.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white) !important;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(244, 118, 26, 0.35);
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244, 118, 26, 0.55);
  filter: brightness(1.08);
}

.btn-outline-orange {
  border: 2px solid var(--orange);
  color: var(--orange) !important;
  background: transparent;
  border-radius: 8px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  transition: var(--transition);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* ---- Navbar ---- */
#mainNav {
  background: transparent;
  padding: 18px 0;
  transition: var(--transition);
}
#mainNav.scrolled {
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
  background: rgba(244, 118, 26, 0.15);
}
.navbar-nav .btn-orange.nav-link {
  background: linear-gradient(
    135deg,
    var(--orange),
    var(--orange-dark)
  ) !important;
  color: var(--white) !important;
}
.logo-img {
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}
.brand-name {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -0.3px;
}

@media (max-width: 991px) {
  #mainNav {
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  }
  #navbarNav {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }
  .navbar-nav .nav-item {
    margin-bottom: 0.5rem;
  }
  .navbar-nav .nav-item:last-child {
    margin-bottom: 0;
  }
  .lang-switcher {
    display: inline-flex;
    margin-top: 0.5rem;
  }
}

/* ---- Hero ---- */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/hero.png");
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) saturate(0.7);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.92) 0%,
    rgba(13, 27, 42, 0.65) 60%,
    rgba(244, 118, 26, 0.12) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-glow);
  border: 1px solid rgba(244, 118, 26, 0.3);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title .accent {
  color: var(--orange);
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ---- Services Section ---- */
.services-section {
  background: var(--navy-mid);
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 118, 26, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 64px;
  height: 64px;
  background: var(--orange-glow);
  border: 1px solid rgba(244, 118, 26, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(244, 118, 26, 0.4);
}
.service-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- Posts / Project Cards ---- */
.post-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
}
.post-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 118, 26, 0.3);
  box-shadow: var(--shadow-lg);
}
.post-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.post-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-card-img-wrap img {
  transform: scale(1.06);
}
.post-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.8) 0%,
    transparent 50%
  );
}
.post-card-body {
  padding: 1.5rem;
}
.post-card-date {
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 0.5rem;
}
.post-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.post-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}
.post-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 1rem;
  transition: var(--transition);
}
.post-card-link:hover {
  gap: 10px;
}

/* ---- CTA Banner ---- */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--navy-light) 0%,
    var(--navy-mid) 100%
  );
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(244, 118, 26, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.cta-section::after {
  content: "";
  position: absolute;
  left: -50px;
  bottom: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(244, 118, 26, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* ---- About Page ---- */
.about-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--orange);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 8px 30px rgba(244, 118, 26, 0.5);
}
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.value-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---- Contact Page ---- */
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
  text-align: center;
}
.contact-card:hover {
  border-color: rgba(244, 118, 26, 0.35);
  transform: translateY(-4px);
}
.contact-icon {
  width: 64px;
  height: 64px;
  background: var(--orange-glow);
  border: 1px solid rgba(244, 118, 26, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  margin: 0 auto 1rem;
}
.form-control-dark {
  background: var(--navy-light) !important;
  border: 1px solid var(--border) !important;
  color: var(--white) !important;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: var(--transition);
}
.form-control-dark::placeholder {
  color: var(--text-muted);
}
.form-control-dark:focus {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(244, 118, 26, 0.2) !important;
  outline: none;
}
.form-label-dark {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

/* ---- Office Hours ---- */
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  margin-bottom: 4px;
  transition: var(--transition);
}
.hours-row:hover {
  background: rgba(255, 255, 255, 0.04);
}
.hours-row.today {
  background: var(--orange-glow);
  border: 1px solid rgba(244, 118, 26, 0.25);
}
.hours-day {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--white);
}
.hours-row.today .hours-day {
  color: var(--orange);
  font-weight: 700;
}
.hours-time {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: right;
}
.hours-row.today .hours-time {
  color: var(--orange);
}
.hours-closed {
  color: #e74c3c !important;
}
.hours-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--orange);
  color: #fff;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.4px;
}

/* ---- Map embed ---- */
.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 260px;
  display: block;
  filter: grayscale(30%) invert(5%);
}

/* ---- Single Post ---- */
.post-hero {
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.post-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}
.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy) 0%, transparent 60%);
}
.post-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0 2rem;
}
.post-content {
  color: #b8c8d8;
  line-height: 1.9;
}
.post-content h2,
h3,
h4 {
  color: var(--white);
  font-family: "Outfit", sans-serif;
}
.post-content p {
  margin-bottom: 1.2rem;
}

/* ---- Page Hero (about, contact, posts) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    ellipse at right,
    rgba(244, 118, 26, 0.08) 0%,
    transparent 70%
  );
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
}
.breadcrumb {
  background: transparent;
  padding: 0;
}
.breadcrumb-item a {
  color: var(--orange);
}
.breadcrumb-item.active {
  color: var(--text-muted);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
}

/* ---- Footer ---- */
.footer {
  background: var(--navy-mid);
  color: var(--text-muted);
}
.footer-top {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-bottom {
  padding: 1.2rem 0;
  font-size: 0.88rem;
}
.footer-brand {
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-text {
  font-size: 0.88rem;
  line-height: 1.7;
}
.footer-heading {
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.4rem;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
  font-size: 0.88rem;
}
.footer-contact a {
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-contact a:hover {
  color: var(--orange);
}
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* ---- Login Page ---- */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  padding: 2rem;
}
.login-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}
.login-logo {
  text-align: center;
  margin-bottom: 2rem;
}
.login-logo img {
  height: 60px;
  object-fit: contain;
}

/* ---- Admin Panel ---- */
.admin-layout {
  display: flex;
  min-height: 100vh;
}
.admin-sidebar {
  width: 260px;
  background: var(--navy-mid);
  border-right: 1px solid var(--border);
  padding: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.admin-sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.admin-sidebar-header img {
  height: 50px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}
.admin-sidebar-header p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}
.admin-nav {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  flex: 1;
}
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav a:hover,
.admin-nav a.active {
  color: var(--white);
  background: rgba(244, 118, 26, 0.1);
  border-left-color: var(--orange);
}
.admin-nav a i {
  font-size: 1.05rem;
}
.admin-main {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
}
.admin-topbar {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-content {
  max-width: 1100px;
}
.admin-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.admin-card-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-stat {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.admin-stat-icon {
  width: 50px;
  height: 50px;
  background: var(--orange-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
}
.admin-stat-num {
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}
.admin-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.table-dark-custom {
  color: var(--text-muted);
  border-color: var(--border);
  background-color: transparent !important;
  --bs-table-bg: transparent;
  --bs-table-color: var(--text-muted);
}
.table-dark-custom th {
  color: var(--white);
  background-color: var(--navy-light) !important;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-color: var(--border);
  padding: 0.75rem 1rem;
}
.table-dark-custom td {
  border-color: var(--border);
  padding: 0.75rem 1rem;
  vertical-align: middle;
  background-color: transparent !important;
  color: var(--white) !important;
}
.table-dark-custom tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* ---- Animate on scroll ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 {
  transition-delay: 0.1s;
}
.animate-delay-2 {
  transition-delay: 0.2s;
}
.animate-delay-3 {
  transition-delay: 0.3s;
}
.animate-delay-4 {
  transition-delay: 0.4s;
}

/* ---- Alerts ---- */
.alert {
  border-radius: 10px;
  border: none;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--navy-light);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}

/* ---- Language Switcher ---- */
.lang-switcher {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 2px 5px;
  border-radius: 5px;
  transition: var(--transition);
  text-decoration: none;
}
.lang-btn:hover {
  color: var(--white);
  background: rgba(244, 118, 26, 0.15);
}
.lang-btn.lang-active {
  color: var(--orange);
  background: var(--orange-glow);
  border: 1px solid rgba(244, 118, 26, 0.25);
}
.lang-flag {
  font-size: 0.9rem;
  line-height: 1;
}
.lang-code {
  line-height: 1;
}
.lang-divider {
  color: var(--border);
  font-size: 0.7rem;
  user-select: none;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .hero-stats {
    gap: 1.5rem;
  }
  .admin-sidebar {
    width: 220px;
  }
}
@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .admin-layout {
    flex-direction: column;
  }
  .admin-sidebar {
    width: 100%;
  }
  .admin-main {
    padding: 1rem 0.5rem;
  }
  .admin-topbar {
    padding: 0.75rem 1rem;
  }
  .admin-card {
    padding: 1rem;
  }
  .admin-sidebar-header {
    padding: 1rem;
  }
  .admin-nav a {
    padding: 0.6rem 1rem;
  }
}
