/* ── 'The Platinum Lion' – Official Leo Club CI 2025 ── */

/* Local Fonts - DSGVO-konform */
@import url('assets/fonts/fonts.css');

:root {
  /* Official CI Palette */
  --leo-blue: #00305d;
  --leo-gold: #fbb800;
  --leo-red: #b70e0c;
  --leo-graphit: #5b5c5b;
  --leo-platin: #8a867e;
  --leo-platin-light: #f3f3f2;
  
  --primary: var(--leo-blue);
  --accent: var(--leo-gold);
  --text-main: #1a1a1a;
  --text-muted: #555;
  --bg-white: #ffffff;
  
  /* Layout */
  --border-radius: 4px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --font-heading: 'Palanquin', sans-serif;
  --font-body: 'Titillium Web', sans-serif;
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: auto !important; /* Back to normal for professional feel */
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Custom Cursor (Removed for Official CI) ── */
#cursor, #cursor-follower { display: none; }

/* ── Typography Styling ── */
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--leo-blue);
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); text-transform: uppercase; line-height: 1.1; }
h2 { font-size: 2.5rem; margin-bottom: 2rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

/* Official Arrow Prefix (deactivated — design feedback) */
.arrow-prefix::before {
  content: none;
}

/* ── Navigation (Dual Layer Premium) ── */
/* ── Header Structure ── */
header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 10000; /* Ensure it stays above everything */
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}



.header-main {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-bottom: 2px solid var(--leo-platin-light);
  padding: 0.5rem 0;
  transition: all 0.5s ease;
}

.header-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

/* Nav Groups */
.nav-left ul, .nav-right ul {
  display: flex;
  gap: 3rem;
  list-style: none;
  align-items: center;
}

.nav-left { justify-self: end; }
.nav-right { justify-self: start; }

.nav-left a, .nav-right a {
  text-decoration: none;
  color: var(--leo-blue);
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-left a:hover, .nav-right a:hover { color: var(--leo-gold); }

/* Logo Centered */
.logo-centered {
  display: block;
  z-index: 10001;
  transform: translateY(0); /* Removed downward shift */
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#nav-logo {
  height: 130px; /* Refined from 220px to not completely overwhelm the content */
  width: auto;
  display: block;
  transition: all 0.5s ease;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.08));
}



header.scrolled .header-main {
  padding: 0.3rem 0;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 48, 93, 0.12);
}

header.scrolled .logo-centered {
  transform: translateY(0);
}

header.scrolled #nav-logo {
  height: 65px; /* Shrunk state */
  filter: none;
}

/* ── FAQ Section ── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.faq-item h3 {
  color: var(--leo-blue);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid var(--leo-gold);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.btn-mini {
  padding: 0.6rem 1.2rem !important;
  font-size: 0.75rem !important;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--leo-blue);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.logo-platin { color: var(--leo-platin); }

/* ── Hero Section ── */
.hero {
  background: var(--leo-platin-light);
  padding: 14rem 0 6rem; /* Increased top padding to definitively clear the fixed header */
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid var(--leo-gold);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 { margin-bottom: 1.5rem; }
.hero p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2.5rem; }

/* ── Sections & Components ── */
.section { padding: 8rem 0; }
.section-dark { background: var(--leo-blue); color: #fff; }
.section-dark h2 { color: #fff; }

/* ── About Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* CI Card Style (Vertical Border) */
.ci-card {
  background: #fff;
  border-left: 5px solid var(--leo-gold);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ci-card.blue-accent {
  background: var(--leo-blue);
  border-left: 5px solid var(--leo-platin);
}

.ci-card.blue-accent p, .ci-card.blue-accent strong {
  color: #fff !important;
}

.ci-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.ci-card.blue { border-left-color: var(--leo-blue); }

/* ── Activities Grid ── */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border-radius: var(--border-radius);
}

.btn-primary { background: var(--leo-gold); color: #fff; border: 2px solid var(--leo-gold); }
.btn-primary:hover { background: transparent; color: var(--leo-gold); }

.btn-outline { border: 2px solid var(--leo-blue); color: var(--leo-blue); }
.btn-outline:hover { background: var(--leo-blue); color: #fff; }

/* ── Carousel (Galerie) ── */
.carousel-container {
  position: relative;
  height: 600px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.carousel-track-wrapper {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-track {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #001f3e; /* Dark elegant background for uncropped images */
}

.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0.7; /* Darkened for text readability */
  transition: opacity 0.4s;
}

.carousel-slide.current-slide img {
  opacity: 0.8;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4rem 5rem 3rem;
  background: linear-gradient(to top, rgba(0, 48, 93, 0.98) 0%, rgba(0, 48, 93, 0.7) 60%, transparent 100%);
  color: #fff;
}

.carousel-date {
  display: inline-block;
  background: var(--leo-gold);
  color: var(--leo-blue);
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.carousel-caption h4 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.carousel-caption p {
  font-size: 1.1rem;
  max-width: 600px;
  color: rgba(255,255,255,0.9);
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--leo-blue);
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.carousel-button:hover {
  background: var(--leo-gold);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-button--left { left: 20px; }
.carousel-button--right { right: 20px; }
.is-hidden { display: none; }

.carousel-nav {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 10;
}

.carousel-indicator {
  border: 0;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-indicator.current-indicator {
  background: var(--leo-gold);
  transform: scale(1.3);
}

/* ── Donation Module ── */
.donation-box {
  background: var(--leo-platin-light);
  padding: 4rem;
  border-top: 8px solid var(--leo-gold);
  text-align: center;
}

.iban-display {
  font-family: monospace;
  font-size: 1.5rem;
  color: var(--leo-blue);
  margin: 2rem 0;
  font-weight: 700;
}

/* ── Instagram Grid ── */
.instagram-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 600px;
}

/* ── Timeline (Leo-Jahr) ── */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-year {
  margin-bottom: 3rem;
}

.timeline-year-heading {
  font-size: 1.8rem;
  color: var(--leo-gold) !important;
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 2px solid rgba(251, 184, 0, 0.3);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: -1.5rem;
  width: 2px;
  background: rgba(251, 184, 0, 0.3);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--leo-gold);
  border: 3px solid var(--leo-blue);
  z-index: 2;
}

.timeline-item.past .timeline-dot {
  background: var(--leo-platin);
  border-color: var(--leo-graphit);
}

.timeline-item.upcoming .timeline-dot {
  background: var(--leo-gold);
  border-color: #fff;
}

.timeline-dot.pulse {
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(251, 184, 0, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(251, 184, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 184, 0, 0); }
}

.timeline-content {
  background: rgba(255,255,255,0.05);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  border-left: 3px solid var(--leo-gold);
  transition: transform 0.3s ease, background 0.3s ease;
}

.timeline-item.past .timeline-content {
  border-left-color: var(--leo-platin);
  opacity: 0.85;
}

.timeline-item.highlight .timeline-content {
  border-left-color: var(--leo-gold);
  background: rgba(251, 184, 0, 0.1);
}

.timeline-item.upcoming .timeline-content {
  border-left-color: var(--leo-gold);
  background: rgba(251, 184, 0, 0.08);
}

.timeline-content:hover {
  transform: translateX(5px);
  background: rgba(255,255,255,0.1);
}

.timeline-badge {
  display: inline-block;
  background: var(--leo-gold);
  color: var(--leo-blue);
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 50px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-item.past .timeline-badge {
  background: var(--leo-platin);
  color: #fff;
}

.timeline-item.highlight .timeline-badge {
  background: var(--leo-gold);
  color: var(--leo-blue);
}

.timeline-badge.upcoming-badge {
  background: var(--leo-gold);
  color: var(--leo-blue);
}

.timeline-content h4 {
  color: #fff !important;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}

.timeline-item.past .timeline-content h4 {
  color: rgba(255,255,255,0.7) !important;
}

.timeline-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* ── Chatbot ── */
#leo-chatbot {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9999;
  font-family: var(--font-body);
}

.chatbot-toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--leo-gold);
  color: var(--leo-blue);
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(251, 184, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-toggle:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 30px rgba(251, 184, 0, 0.5);
}

.chatbot-window {
  display: none;
  position: absolute;
  bottom: 4.5rem;
  left: 0;
  width: 360px;
  max-height: 500px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  overflow: hidden;
  flex-direction: column;
  border: 2px solid var(--leo-gold);
}

.chatbot-window.open {
  display: flex;
}

.chatbot-header {
  background: var(--leo-blue);
  color: #fff;
  padding: 1rem 1.2rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 0.3rem;
  line-height: 1;
}

.chatbot-messages {
  padding: 1rem;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--leo-platin-light);
  min-height: 280px;
  max-height: 350px;
}

.chatbot-msg {
  padding: 0.7rem 1rem;
  border-radius: 12px;
  max-width: 85%;
  font-size: 0.9rem;
  line-height: 1.4;
}

.chatbot-msg.bot {
  background: #fff;
  color: var(--text-main);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid #e0ddd6;
}

.chatbot-msg.user {
  background: var(--leo-blue);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot-input-area {
  display: flex;
  border-top: 1px solid #e0ddd6;
  padding: 0.5rem;
  gap: 0.5rem;
  background: #fff;
}

.chatbot-input-area input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 24px;
  padding: 0.6rem 1rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}

.chatbot-input-area input:focus {
  border-color: var(--leo-gold);
}

.chatbot-input-area button {
  background: var(--leo-gold);
  color: var(--leo-blue);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.chatbot-input-area button:hover {
  background: #e5a800;
}

/* ── Chatbot Quick Replies ── */
.chatbot-quickreplies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.5rem 0.8rem;
}
.chatbot-qr-btn {
  background: rgba(251, 184, 0, 0.15);
  border: 1px solid var(--leo-gold, #fbb800);
  color: var(--leo-blue, #00305d);
  border-radius: 16px;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.chatbot-qr-btn:hover {
  background: var(--leo-gold, #fbb800);
  color: #fff;
}

/* ── Chatbot Typing Indicator ── */
.chatbot-typing {
  display: flex;
  gap: 4px;
  padding: 0.5rem 0.8rem;
  align-items: center;
}
.typing-dot {
  width: 6px;
  height: 6px;
  background: var(--leo-gold, #fbb800);
  border-radius: 50%;
  animation: typingBounce 1.2s infinite ease-in-out;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* ── Recruitment Section (Split Layout) ── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--leo-blue);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-info-panel {
  padding: 4rem;
  color: #fff;
}

.contact-info-panel h2 { color: #fff; margin-bottom: 1.5rem; }

.contact-form-panel {
  background: #fff;
  padding: 4rem;
}

.form-group { margin-bottom: 2rem; }
.form-group label { display: block; font-weight: 700; margin-bottom: 0.5rem; color: var(--leo-blue); text-transform: uppercase; font-size: 0.8rem; }
.form-group input, .form-group textarea {
  width: 100%; border: 2px solid #eee; padding: 1rem; border-radius: var(--border-radius);
  font-family: inherit; transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--leo-gold); outline: none; }

/* ── Footer ── */
.main-footer {
  background: var(--leo-blue);
  color: #fff;
  padding: 5rem 0 2rem;
  border-top: 4px solid var(--leo-gold);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.footer-tagline {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
}

.footer-socials a:hover {
  background: var(--leo-gold);
  color: var(--leo-blue);
  transform: translateY(-3px);
}

.footer-contact-direct {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.footer-contact-direct a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed var(--leo-gold);
  transition: color 0.3s;
}

.footer-contact-direct a:hover {
  color: var(--leo-gold);
}

.footer-heading {
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  color: var(--leo-gold);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.6);
}

.footer-credit span {
  color: var(--leo-gold);
  font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .header-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  
  /* Mobile Navigation Stack */
  .nav-left, .nav-right {
    display: block; /* Unhide navigation on mobile */
    justify-self: center;
  }
  
  .nav-left ul, .nav-right ul {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-right ul {
    margin-top: 0.5rem;
  }
  
  .logo-centered { 
    transform: none; 
    margin: 0 auto; 
    order: -1; /* Push logo to the top of the stack */
  }
  
  #nav-logo { height: 80px; } /* Mobile logo reduction */
  
  .hero { padding-top: 18rem; } /* Extra clearance for stacked header */
  .hero h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 16rem; text-align: center; }
  .hero h1 { font-size: 2.8rem; }
  .footer-top { grid-template-columns: 1fr; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 1rem; border-radius: 50%; }
  .contact-split { grid-template-columns: 1fr; gap: 2rem; }
  .contact-info-panel, .contact-form-panel { padding: 2rem; }
  .cookie-premium-card { flex-direction: column; text-align: center; }
  .cookie-icon { margin: 0 auto 1rem; }
}

/* ── Premium Cookie Overlay ── */
.cookie-premium-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 20000;
  display: flex;
  justify-content: center;
  padding: 2rem;
  animation: slideUpCookie 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpCookie {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-premium-card {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 48, 93, 0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 900px;
  width: 100%;
}

.cookie-icon {
  font-size: 2.5rem;
  line-height: 1;
  background: var(--leo-platin-light);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.cookie-content h4 {
  color: var(--leo-blue);
  margin-bottom: 0.3rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.cookie-content p {
  color: var(--leo-graphit);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.cookie-content a {
  color: var(--leo-gold);
  font-weight: bold;
  text-decoration: none;
}

.cookie-actions {
  flex-shrink: 0;
}
