/* ==========================================================================
   Saarbrücken als Lebensort - Material Design CSS
   Mobile-first, WCAG 2.1 AA compliant
   ========================================================================== */

/* CSS Variables - DMM-CI + Saarbrücken Theme */
:root {
  /* DMM-CI Colors (HS-KL) */
  --dmm-primary: #00305e;
  --dmm-secondary: #e30613;
  --dmm-accent: #009fe3;
  
  /* Saarbrücken Theme */
  --sb-blue: #1a4f7a;
  --sb-green: #2d5a27;
  --sb-light: #f5f7fa;
  --sb-dark: #1a1a2e;
  
  /* Material Design Colors */
  --md-primary: #1a4f7a;
  --md-primary-dark: #0d3a5c;
  --md-primary-light: #4a7faa;
  --md-secondary: #00897b;
  --md-surface: #ffffff;
  --md-background: #fafafa;
  --md-error: #b00020;
  --md-on-primary: #ffffff;
  --md-on-surface: #1a1a1a;
  --md-on-background: #1a1a1a;
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* Material Design Elevation */
  --elevation-1: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --elevation-2: 0 3px 6px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.12);
  --elevation-3: 0 10px 20px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.10);
  --elevation-4: 0 15px 25px rgba(0,0,0,0.15), 0 5px 10px rgba(0,0,0,0.05);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Container */
  --container-max: 1200px;
  --container-padding: 1rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--md-on-background);
  background-color: var(--md-background);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--md-on-surface);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--md-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover, a:focus {
  color: var(--md-primary-dark);
  text-decoration: underline;
}

a:focus-visible {
  outline: 3px solid var(--dmm-accent);
  outline-offset: 2px;
}

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

/* Skip Link - Accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dmm-primary);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  z-index: 10000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-md);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  background: var(--md-surface);
  box-shadow: var(--elevation-2);
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  gap: var(--space-md);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--md-primary);
  text-decoration: none;
}

.header__logo:hover {
  text-decoration: none;
}

.header__logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--sb-blue), var(--sb-green));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 80vw);
  height: 100vh;
  background: var(--md-surface);
  box-shadow: var(--elevation-4);
  padding: 5rem var(--space-xl) var(--space-xl);
  transition: right var(--transition-normal);
  overflow-y: auto;
}

.nav[data-visible="true"] {
  right: 0;
}

.nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.nav__link {
  display: block;
  padding: var(--space-md);
  font-weight: 500;
  color: var(--md-on-surface);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav__link:hover,
.nav__link:focus {
  background: var(--sb-light);
  color: var(--md-primary);
  text-decoration: none;
}

.nav__link--active {
  background: var(--md-primary);
  color: var(--md-on-primary);
}

.nav__link--active:hover,
.nav__link--active:focus {
  background: var(--md-primary-dark);
  color: var(--md-on-primary);
}

/* Backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
  z-index: 999;
}

.nav-backdrop[data-visible="true"] {
  opacity: 1;
  visibility: visible;
}

/* Desktop Navigation */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
  
  .nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
  }
  
  .nav__list {
    flex-direction: row;
    gap: var(--space-xs);
  }
  
  .nav__link {
    padding: var(--space-sm) var(--space-md);
  }
  
  .nav-backdrop {
    display: none;
  }
}

/* ==========================================================================
   HERO SECTION - Minimalist Modern
   ========================================================================== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: #fafafa;
  color: var(--md-on-surface);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: linear-gradient(135deg, rgba(56, 213, 255, 0.08) 0%, rgba(210, 242, 225, 0.12) 100%);
  border-radius: 0 0 0 40%;
  transform: skewY(-6deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__title {
  color: var(--md-on-surface);
  margin-bottom: var(--space-lg);
  text-shadow: none;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #555;
  margin-bottom: var(--space-xl);
  max-width: 580px;
  line-height: 1.7;
  font-weight: 400;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background: transparent;
  backdrop-filter: none;
  padding: var(--space-xs) 0;
  padding-right: var(--space-md);
  border-radius: 0;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--md-primary);
  border-right: 1px solid rgba(0,0,0,0.1);
}

.hero__feature:last-child {
  border-right: none;
  padding-right: 0;
}

.hero__feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--md-primary);
}

/* Hero on subpages - compact variant */
.hero[style*="min-height:40vh"],
.hero[style*="min-height: 40vh"] {
  min-height: 35vh !important;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid var(--dmm-accent);
  outline-offset: 2px;
}

/* Ripple Effect */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s, opacity 0.3s;
}

.btn:active::after {
  transform: scale(2);
  opacity: 1;
  transition: 0s;
}

.btn--primary {
  background: var(--md-primary);
  color: var(--md-on-primary);
  box-shadow: var(--elevation-2);
}

.btn--primary:hover {
  background: var(--md-primary-dark);
  box-shadow: var(--elevation-3);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--md-primary);
  border: 2px solid var(--md-primary);
}

.btn--secondary:hover {
  background: var(--md-primary);
  color: var(--md-on-primary);
}

.btn--white {
  background: white;
  color: var(--md-primary);
  box-shadow: var(--elevation-2);
}

.btn--white:hover {
  background: var(--sb-light);
  box-shadow: var(--elevation-3);
  transform: translateY(-2px);
}

.btn--dmm {
  background: var(--dmm-secondary);
  color: white;
  box-shadow: var(--elevation-2);
}

.btn--dmm:hover {
  background: #c00510;
  box-shadow: var(--elevation-3);
  transform: translateY(-2px);
}

.btn--sm {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9rem;
}

.btn--lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.1rem;
}

/* ==========================================================================
   CARDS
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

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

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

.card {
  background: var(--md-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--elevation-1);
  overflow: hidden;
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

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

.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--sb-light) 0%, #e0e5ec 100%);
}

.card__image-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--sb-light) 0%, #dce3ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--md-primary);
  font-size: 3rem;
}

.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.card__content {
  padding: var(--space-lg);
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.card__text {
  color: #666;
  margin-bottom: var(--space-md);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 600;
  color: var(--md-primary);
}

.card__link:hover {
  gap: var(--space-sm);
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
  padding: var(--space-3xl) 0;
}

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

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

.section--dark h2,
.section--dark h3 {
  color: white;
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.section__header p {
  font-size: 1.1rem;
  color: #666;
}

/* ==========================================================================
   DMM BANNER (Required on all pages)
   ========================================================================== */
.dmm-banner {
  background: linear-gradient(135deg, var(--dmm-primary) 0%, #004080 100%);
  color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
  box-shadow: var(--elevation-2);
  position: relative;
  overflow: hidden;
}

.dmm-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: var(--dmm-accent);
  opacity: 0.1;
  border-radius: 50%;
}

.dmm-banner__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .dmm-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.dmm-banner__content {
  flex: 1;
}

.dmm-banner__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.dmm-banner__logo-img {
  height: 40px;
  width: auto;
}

.dmm-banner__badge {
  background: var(--dmm-secondary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.dmm-banner__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: white;
}

.dmm-banner__text {
  opacity: 0.9;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.dmm-banner__cta {
  flex-shrink: 0;
}

/* ==========================================================================
   TABLE
   ========================================================================== */
.table-wrapper {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  border-radius: var(--radius-md);
  box-shadow: var(--elevation-1);
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--md-surface);
}

.table th,
.table td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.table th {
  background: var(--sb-light);
  font-weight: 600;
  color: var(--md-on-surface);
  white-space: nowrap;
}

.table tbody tr:hover {
  background: rgba(26, 79, 122, 0.05);
}

.table tbody tr:last-child td {
  border-bottom: none;
}

/* ==========================================================================
   MAP
   ========================================================================== */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--elevation-2);
  background: var(--sb-light);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   STATS
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
  padding: var(--space-lg);
  background: var(--md-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--elevation-1);
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--md-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat__label {
  font-size: 0.9rem;
  color: #666;
}

/* ==========================================================================
   LIST STYLES
   ========================================================================== */
.list {
  list-style: none;
  margin: var(--space-lg) 0;
}

.list__item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid #e0e0e0;
}

.list__item:last-child {
  border-bottom: none;
}

.list__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--sb-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--md-primary);
  font-size: 1.5rem;
}

.list__content {
  flex: 1;
}

.list__title {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.list__text {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ==========================================================================
   CONTENT SECTIONS
   ========================================================================== */
.content-block {
  margin-bottom: var(--space-2xl);
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .content-grid--reverse .content-grid__text {
    order: 1;
  }
  
  .content-grid--reverse .content-grid__media {
    order: 0;
  }
}

.content-grid__media img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--elevation-2);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--sb-dark);
  color: white;
  padding: var(--space-3xl) 0 var(--space-xl);
  margin-top: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

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

@media (min-width: 900px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.footer__logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--sb-blue), var(--sb-green));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.footer__text {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: white;
}

.footer__links {
  list-style: none;
}

.footer__link {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: white;
  text-decoration: none;
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__copyright {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.footer__legal {
  display: flex;
  gap: var(--space-md);
}

.footer__legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.footer__legal a:hover {
  color: white;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.text-primary {
  color: var(--md-primary);
}

.text-dmm {
  color: var(--dmm-secondary);
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

/* Featured Box */
.featured-box {
  background: linear-gradient(135deg, var(--dmm-primary), var(--sb-blue));
  color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.featured-box h3,
.featured-box h4 {
  color: white;
}

/* Info Box */
.info-box {
  background: var(--sb-light);
  border-left: 4px solid var(--md-primary);
  padding: var(--space-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-lg) 0;
}

.info-box--dmm {
  border-left-color: var(--dmm-secondary);
}

/* Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: var(--sb-light);
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  color: var(--md-on-surface);
}

.chip--primary {
  background: var(--md-primary);
  color: white;
}

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb a {
  color: var(--md-primary);
}

.breadcrumb__separator {
  color: #999;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fadeIn {
  animation: fadeIn 0.4s ease-out forwards;
}

/* Staggered animations */
.stagger > * {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

.stagger > *:nth-child(1) { animation-delay: 0.1s; }
.stagger > *:nth-child(2) { animation-delay: 0.2s; }
.stagger > *:nth-child(3) { animation-delay: 0.3s; }
.stagger > *:nth-child(4) { animation-delay: 0.4s; }
.stagger > *:nth-child(5) { animation-delay: 0.5s; }

/* ==========================================================================
   DMM BANNER - HS-KL CORPORATE DESIGN
   ========================================================================== */
.dmm-banner--hskl {
  background: linear-gradient(135deg, #38d5ff 0%, #D2F2E1 100%);
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.dmm-banner--hskl::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: #f3f707;
  opacity: 0.25;
  border-radius: 0;
  transform: rotate(15deg);
}

.dmm-banner--hskl .dmm-banner__inner {
  position: relative;
  z-index: 1;
}

.dmm-banner--hskl .dmm-banner__badge {
  background: #000000;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 0;
}

.dmm-banner--hskl .dmm-banner__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: #000000;
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}

.dmm-banner--hskl .dmm-banner__text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #000000;
  opacity: 0.9;
  font-size: 0.95rem;
  line-height: 1.6;
}

.dmm-banner--hskl .dmm-banner__cta .btn--dmm,
.dmm-banner--hskl .btn--dmm {
  background: #000000;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;
  letter-spacing: 0.02em;
  box-shadow: none;
}

.dmm-banner--hskl .dmm-banner__cta .btn--dmm:hover,
.dmm-banner--hskl .btn--dmm:hover {
  background: #333333;
  transform: translateY(-2px);
}

/* Featured Box - HS-KL Corporate Design */
.featured-box--hskl {
  background: linear-gradient(135deg, #38d5ff 0%, #D2F2E1 100%);
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  color: #000000;
}

.featured-box--hskl::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: #f3f707;
  opacity: 0.25;
  border-radius: 0;
  transform: rotate(15deg);
}

.featured-box--hskl > * {
  position: relative;
  z-index: 1;
}

.featured-box--hskl h2,
.featured-box--hskl h3,
.featured-box--hskl h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: #000000;
  letter-spacing: -0.01em;
}

.featured-box--hskl p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #000000;
  opacity: 0.9;
}

.featured-box--hskl .dmm-banner__badge {
  background: #000000;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 0;
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
  .header,
  .nav-toggle,
  .nav-backdrop,
  .dmm-banner,
  .footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: black;
    background: white;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
    background: none;
    color: black;
  }
}
