/* ============================================
   SPÄTKAUF NAUNYNSTRASSE – DESIGN SYSTEM
   Berlin Kreuzberg SO36
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Colors – Urban Night Theme */
  --bg-primary: #0f131a;
  --bg-secondary: #161a22;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --bg-glass: rgba(17, 17, 24, 0.75);

  /* Neon Accent Palette */
  --accent-amber: #f5a623;
  --accent-amber-glow: rgba(245, 166, 35, 0.3);
  --accent-warm: #e8734a;
  --accent-magenta: #d64f8a;
  --accent-green: #4ade80;
  --accent-cyan: #22d3ee;
  --flix-green: #71bf44;
  --flix-green-glow: rgba(113, 191, 68, 0.2);

  /* Text */
  --text-primary: #f0ede8;
  --text-secondary: rgba(240, 237, 232, 0.65);
  --text-muted: rgba(240, 237, 232, 0.4);

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(245, 166, 35, 0.25);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-glow: 0 0 40px rgba(245, 166, 35, 0.15);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 16px 48px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--accent-amber);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-warm);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  max-width: 65ch;
}

/* ── Utility ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-amber);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent-amber);
  border-radius: 2px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-amber) 0%, var(--accent-warm) 50%, var(--accent-magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ╔══════════════════════════════════════╗
   ║          HEADER / NAVIGATION        ║
   ╚══════════════════════════════════════╝ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: all var(--transition-smooth);
}

.header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.6rem 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-warm));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-glow);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--accent-amber);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-amber);
  border-radius: 2px;
  transition: width var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-warm));
  color: var(--bg-primary) !important;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--bg-primary) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ╔══════════════════════════════════════╗
   ║            HERO SECTION             ║
   ╚══════════════════════════════════════╝ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.3) 0%,
    rgba(10, 10, 15, 0.5) 40%,
    rgba(10, 10, 15, 0.85) 75%,
    rgba(10, 10, 15, 1) 100%
  );
}

/* Animated gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-amber);
  top: 10%;
  right: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-magenta);
  bottom: 20%;
  left: -80px;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-amber);
  margin-bottom: var(--space-md);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(245, 166, 35, 0); }
}

.hero-badge .status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.float-anim {
  animation: float 4s ease-in-out infinite;
}

@keyframes textShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer-text {
  background: linear-gradient(
    90deg,
    var(--accent-amber) 0%,
    var(--accent-magenta) 25%,
    #ffffff 50%,
    var(--accent-magenta) 75%,
    var(--accent-amber) 100%
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: textShimmer 6s linear infinite;
  display: inline-block;
}

.hero h1 {
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-warm));
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.4);
  color: var(--bg-primary);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-amber);
  color: var(--text-primary);
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}

.stat {
  text-align: left;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-amber);
}

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

/* ╔══════════════════════════════════════╗
   ║           ÜBER UNS SECTION          ║
   ╚══════════════════════════════════════╝ */

.about {
  padding: var(--space-3xl) 0;
  position: relative;
}

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

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-smooth);
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.about-badge-float {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

.about-badge-float .icon {
  font-size: 1.5rem;
}

.about-text h2 {
  margin-bottom: var(--space-md);
}

.about-text p {
  margin-bottom: var(--space-sm);
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.about-feature:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  color: var(--text-primary);
}

.about-feature .icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ╔══════════════════════════════════════╗
   ║         SORTIMENT SECTION           ║
   ╚══════════════════════════════════════╝ */

.sortiment {
  padding: var(--space-3xl) 0;
  position: relative;
}

.sortiment-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.sortiment-header .section-label {
  justify-content: center;
}

.sortiment-header p {
  margin: var(--space-sm) auto 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: var(--space-sm);
}

.bento-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  cursor: default;
}

.bento-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.bento-item.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.08), rgba(214, 79, 138, 0.05));
  border-color: var(--border-accent);
}

.bento-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 166, 35, 0.1);
  border-radius: var(--radius-md);
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
  transition: transform var(--transition-bounce);
}

.bento-item:hover .bento-icon {
  transform: scale(1.15) rotate(-5deg);
}

.bento-item h3 {
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.bento-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.bento-highlight {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
  pointer-events: none;
  transition: all var(--transition-smooth);
  opacity: 0;
}

.bento-item:hover .bento-highlight {
  opacity: 1;
}

/* ╔══════════════════════════════════════╗
   ║         KIEZ-GUIDE SECTION          ║
   ╚══════════════════════════════════════╝ */

.kiez {
  padding: var(--space-3xl) 0;
  position: relative;
}

.kiez-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--space-xl);
}

.kiez-header .section-label {
  justify-content: center;
}

.kiez-header p {
  margin: var(--space-sm) auto 0;
}

.kiez-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.kiez-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  gap: var(--space-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  will-change: transform;
  transform-style: preserve-3d;
  transition: transform 0.1s linear, border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.kiez-card:hover {
  border-color: var(--accent-magenta);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 25px rgba(216, 27, 96, 0.15);
  z-index: 10;
}

.kiez-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.6rem;
  flex-shrink: 0;
}

.kiez-card-icon.culture { background: rgba(214, 79, 138, 0.1); }
.kiez-card-icon.food { background: rgba(245, 166, 35, 0.1); }
.kiez-card-icon.nature { background: rgba(74, 222, 128, 0.1); }
.kiez-card-icon.nightlife { background: rgba(34, 211, 238, 0.1); }

.kiez-card-content h3 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.kiez-card-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.kiez-card-distance {
  font-size: 0.75rem;
  color: var(--accent-amber);
  font-weight: 600;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ╔══════════════════════════════════════╗
   ║       ÖFFNUNGSZEITEN & KONTAKT      ║
   ╚══════════════════════════════════════╝ */

.contact {
  padding: var(--space-3xl) 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.hours-card {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.08), rgba(214, 79, 138, 0.04));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.hours-card h3 {
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}

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

.hours-list .day {
  color: var(--text-secondary);
}

.hours-list .time {
  font-weight: 600;
  color: var(--text-primary);
}

.hours-list li.today {
  color: var(--accent-amber);
}

.hours-list li.today .day,
.hours-list li.today .time {
  color: var(--accent-amber);
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.status-open {
  background: rgba(74, 222, 128, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.status-closed {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.contact-item:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.contact-item .icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
}

.contact-item-text .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-item-text .value {
  font-weight: 600;
  color: var(--text-primary);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 100%;
  min-height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.8) contrast(1.1) saturate(0.8);
  transition: filter var(--transition-smooth);
}

.map-wrapper:hover iframe {
  filter: brightness(0.9) contrast(1.05) saturate(0.9);
}

/* ╔══════════════════════════════════════╗
   ║              FOOTER                 ║
   ╚══════════════════════════════════════╝ */

.footer {
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--space-lg);
}

.footer-brand .logo {
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 300px;
}

.footer-column h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-column ul a:hover {
  color: var(--accent-amber);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.social-link:hover {
  background: rgba(245, 166, 35, 0.1);
  border-color: var(--accent-amber);
  color: var(--accent-amber);
  transform: translateY(-2px);
}

/* ╔══════════════════════════════════════╗
   ║          TRUST BANNER               ║
   ╚══════════════════════════════════════╝ */

.trust-banner {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-md) 0;
  overflow: hidden;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}

.trust-icon {
  font-size: 1.4rem;
}

.trust-text {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.trust-divider {
  width: 4px;
  height: 4px;
  background: var(--accent-amber);
  border-radius: 50%;
  opacity: 0.4;
  flex-shrink: 0;
}

/* ╔══════════════════════════════════════╗
   ║       HIGHLIGHTS / SERVICES         ║
   ╚══════════════════════════════════════╝ */

.highlights {
  padding: var(--space-3xl) 0;
  position: relative;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.highlight-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.highlight-card.highlight-hero {
  grid-column: span 2;
  flex-direction: row;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.06), rgba(214, 79, 138, 0.04), rgba(34, 211, 238, 0.03));
  border-color: var(--border-accent);
}

.highlight-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  min-height: 120px;
}

.highlight-card.highlight-hero .highlight-card-visual {
  min-width: 200px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.08), rgba(34, 211, 238, 0.06));
}

.highlight-card-emoji {
  font-size: 3.5rem;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  transition: transform var(--transition-bounce);
}

.highlight-card:hover .highlight-card-emoji {
  transform: scale(1.15) rotate(-3deg);
}

.highlight-card-body {
  padding: var(--space-lg);
  flex: 1;
}

.highlight-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.highlight-card-body p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

/* Tags */
.highlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: var(--space-sm);
}

.tag {
  padding: 0.35rem 0.85rem;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-amber);
  letter-spacing: 0.03em;
}

/* Brand Chips */
.card-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: var(--space-sm);
}

.brand-chip {
  padding: 0.3rem 0.75rem;
  background: var(--bg-card-hover);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.brand-chip:hover {
  border-color: var(--border-accent);
  color: var(--text-primary);
  background: rgba(245, 166, 35, 0.06);
}

.brand-chip.accent {
  background: rgba(245, 166, 35, 0.1);
  border-color: rgba(245, 166, 35, 0.2);
  color: var(--accent-amber);
  font-weight: 600;
}

/* ╔══════════════════════════════════════╗
   ║               GALERIE               ║
   ╚══════════════════════════════════════╝ */

.gallery {
  padding: var(--space-3xl) 0;
  position: relative;
}

.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.gallery-header .section-label {
  justify-content: center;
}

.gallery-header p {
  margin: var(--space-sm) auto 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  transition: opacity var(--transition-smooth);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ╔══════════════════════════════════════╗
   ║             BEWERTUNGEN             ║
   ╚══════════════════════════════════════╝ */

.reviews {
  padding: var(--space-3xl) 0;
  position: relative;
}

.reviews-wrapper {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.1), rgba(214, 79, 138, 0.05));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  box-shadow: var(--shadow-glow);
}

.reviews-content {
  flex: 1;
  max-width: 600px;
}

.reviews-content h2 {
  margin: var(--space-xs) 0 var(--space-sm);
}

.review-stars {
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  margin-top: var(--space-md);
  filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.5));
}

@media (max-width: 900px) {
  .reviews-wrapper {
    flex-direction: column;
    text-align: center;
    padding: var(--space-xl);
  }
  
  .reviews-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* ╔══════════════════════════════════════╗
   ║                 FAQ                 ║
   ╚══════════════════════════════════════╝ */

.faq {
  padding: var(--space-3xl) 0;
  position: relative;
}

.faq-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.faq-header .section-label {
  justify-content: center;
}

.faq-header p {
  margin: var(--space-sm) auto 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-accent);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent-amber);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active {
  border-color: var(--accent-amber);
  background: var(--bg-card-hover);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* arbitrary large value */
}

.faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ╔══════════════════════════════════════╗
   ║       SERVICES & PREPAID CENTER     ║
   ╚══════════════════════════════════════╝ */

.services {
  padding: var(--space-3xl) 0;
  position: relative;
  background: radial-gradient(circle at 30% 20%, rgba(245, 166, 35, 0.03) 0%, transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(214, 79, 138, 0.03) 0%, transparent 60%);
}

.services-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--space-xl);
}

.services-header .section-label {
  justify-content: center;
}

.services-header p {
  margin: var(--space-sm) auto 0;
}

/* Tab Navigation */
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.services-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.services-tab:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  color: var(--text-primary);
}

.services-tab.active {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(232, 115, 74, 0.1));
  border-color: var(--accent-amber);
  color: var(--accent-amber);
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.1);
}

.tab-icon {
  font-size: 1.2rem;
}

.tab-text {
  white-space: nowrap;
}

/* Tab Panels */
.services-panels {
  position: relative;
}

.services-panel {
  display: none;
  animation: fadeInPanel 0.4s ease;
}

.services-panel.active {
  display: block;
}

@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Service Feature Banner (FlixBus) */
.service-feature-banner {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  gap: var(--space-xl);
  align-items: center;
  transition: all var(--transition-smooth);
}

.service-feature-banner:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card);
}

.service-feature-banner.flixbus-banner {
  background: linear-gradient(135deg, rgba(113, 191, 68, 0.06), rgba(113, 191, 68, 0.02));
  border-color: rgba(113, 191, 68, 0.2);
}

.service-feature-banner.flixbus-banner:hover {
  border-color: var(--flix-green);
  box-shadow: 0 8px 32px rgba(113, 191, 68, 0.15);
}

.service-feature-logo {
  flex-shrink: 0;
  width: 180px;
}

.service-logo-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.service-feature-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.service-feature-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.service-feature-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.benefit-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* Route Chips */
.service-feature-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.route-chip {
  padding: 0.3rem 0.85rem;
  background: rgba(113, 191, 68, 0.08);
  border: 1px solid rgba(113, 191, 68, 0.15);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--flix-green);
  letter-spacing: 0.02em;
  transition: all var(--transition-fast);
}

.route-chip:hover {
  background: rgba(113, 191, 68, 0.15);
  border-color: var(--flix-green);
}

.route-chip.accent {
  background: rgba(113, 191, 68, 0.15);
  border-color: rgba(113, 191, 68, 0.3);
  font-weight: 700;
}

/* Service Category */
.service-category {
  margin-bottom: var(--space-xl);
}

.service-category:last-child {
  margin-bottom: 0;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-subtle);
}

.category-icon {
  font-size: 1.5rem;
}

.category-header h3 {
  font-size: 1.15rem;
  color: var(--text-primary);
}

/* Brand Grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-sm);
}

.brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  transition: all var(--transition-fast);
  cursor: default;
}

.brand-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.brand-card-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.brand-card-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.brand-card-info {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* SIM Card specific styling */
.brand-card.sim-card {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.04), rgba(34, 211, 238, 0.01));
  border-color: rgba(34, 211, 238, 0.1);
}

.brand-card.sim-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 4px 20px rgba(34, 211, 238, 0.1);
}

/* Gaming Card specific styling */
.brand-card.gaming-card {
  background: linear-gradient(135deg, rgba(214, 79, 138, 0.04), rgba(214, 79, 138, 0.01));
  border-color: rgba(214, 79, 138, 0.1);
}

.brand-card.gaming-card:hover {
  border-color: var(--accent-magenta);
  box-shadow: 0 4px 20px rgba(214, 79, 138, 0.1);
}

/* SIM Intro */
.sim-intro {
  margin-bottom: var(--space-xl);
}

.sim-intro-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* FlixBus Highlight Card */
.highlight-card.highlight-flixbus {
  background: linear-gradient(135deg, rgba(113, 191, 68, 0.06), rgba(113, 191, 68, 0.02));
  border-color: rgba(113, 191, 68, 0.2);
}

.highlight-card.highlight-flixbus:hover {
  border-color: var(--flix-green);
  box-shadow: 0 8px 32px rgba(113, 191, 68, 0.15);
}

.highlight-brand-logo {
  max-width: 120px;
  max-height: 80px;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.flixbus-tag {
  background: rgba(113, 191, 68, 0.08) !important;
  border-color: rgba(113, 191, 68, 0.15) !important;
  color: var(--flix-green) !important;
}

/* ╔══════════════════════════════════════╗
   ║         LANGUAGE SWITCHER           ║
   ╚══════════════════════════════════════╝ */

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.lang-switcher-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

#google_translate_element {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  color: var(--text-secondary);
  white-space: nowrap;
}

.lang-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-amber);
  color: var(--text-primary);
}

.lang-btn[aria-expanded="true"] {
  border-color: var(--accent-amber);
  background: var(--bg-card-hover);
}

.lang-current-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.lang-current-code {
  letter-spacing: 0.05em;
}

.lang-chevron {
  font-size: 0.7rem;
  transition: transform var(--transition-fast);
  opacity: 0.6;
}

.lang-btn[aria-expanded="true"] .lang-chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
  padding: 0.4rem;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.96);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.6rem 0.8rem;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  text-align: left;
}

.lang-option:hover {
  background: rgba(245, 166, 35, 0.08);
  color: var(--text-primary);
}

.lang-option.active {
  color: var(--accent-amber);
  background: rgba(245, 166, 35, 0.1);
  font-weight: 600;
}

.lang-option.active::after {
  content: '✓';
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--accent-amber);
}

.lang-flag {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.lang-name {
  flex: 1;
}

/* Google Translate Overrides */
.goog-te-banner-frame.skiptranslate,
.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-te-gadget {
  font-size: 0 !important;
}

/* ╔══════════════════════════════════════╗
   ║         RESPONSIVE DESIGN           ║
   ╚══════════════════════════════════════╝ */

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-item.featured {
    grid-column: span 2;
  }

  .highlight-card.highlight-hero {
    flex-direction: column;
  }

  .highlight-card.highlight-hero .highlight-card-visual {
    min-width: auto;
    min-height: 100px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(22, 26, 34, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl);
    gap: var(--space-lg);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }

  .hero-content {
    padding-top: 5rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

  .trust-items {
    gap: var(--space-sm);
    justify-content: flex-start;
  }

  .trust-divider {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-image-wrapper img {
    height: 300px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card.highlight-hero {
    grid-column: span 1;
    flex-direction: column;
  }

  .highlight-card.highlight-hero .highlight-card-visual {
    min-width: auto;
    min-height: 80px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-item.featured {
    grid-column: span 1;
  }

  .kiez-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    min-height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .service-feature-banner {
    flex-direction: column;
    padding: var(--space-lg);
  }

  .service-feature-logo {
    width: 140px;
  }

  .service-feature-benefits {
    grid-template-columns: 1fr;
  }

  .brand-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }

  .services-tab {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .lang-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  html {
    font-size: 14px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: var(--space-md);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Special animated divider ── */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-accent) 50%,
    transparent 100%
  );
  margin: 0 auto;
}

/* ── QR Code Footer Area ── */
.footer-social-qr {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
}

.qr-code-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  background: var(--bg-card);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
}

.qr-code-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
  border-color: var(--accent-amber);
}

.qr-code-box img {
  border-radius: var(--radius-sm);
}

.qr-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-amber);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ╔══════════════════════════════════════╗
   ║            EVENTS SECTION           ║
   ╚══════════════════════════════════════╝ */

.events {
  padding: var(--space-3xl) 0;
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(245, 166, 35, 0.03) 0%, transparent 70%);
}

.events-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--space-xl);
}

.events-header .section-label {
  justify-content: center;
}

.events-header p {
  margin: var(--space-sm) auto 0;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  transition: all var(--transition-bounce);
  overflow: hidden;
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-elevated);
}

.event-card.event-highlight {
  background: linear-gradient(135deg, rgba(214, 79, 138, 0.1), rgba(245, 166, 35, 0.1));
  border-color: rgba(245, 166, 35, 0.6);
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.2);
  animation: pulse-border 3s infinite;
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(245, 166, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.7); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(108, 92, 231, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(108, 92, 231, 0); }
}

.event-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-xs);
  display: inline-block;
  transition: transform var(--transition-bounce);
}

.event-card:hover .event-icon {
  transform: scale(1.2) rotate(5deg);
}

.event-card h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
}

.event-status {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.3rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.event-status.highlight {
  background: rgba(46, 213, 115, 0.15);
  color: #2ed573;
}

/* Sticky CTA Mobile */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-warm));
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.4);
  z-index: 900;
  text-decoration: none;
  transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
  white-space: nowrap;
}

.mobile-sticky-cta:hover {
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 0 15px 40px rgba(245, 166, 35, 0.6);
}

@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
  .mobile-sticky-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
  40% {transform: translateX(-50%) translateY(-10px);}
  60% {transform: translateX(-50%) translateY(-5px);}
}
