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

@font-face {
  font-family: 'Anton';
  src: url('../fonts/Anton-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Color Palette */
  --bg-primary: #0b0c10;
  --bg-secondary: #121824;
  --color-cyan: #00a2de;
  --color-red: #ba5252;
  --color-peach: #fec59e;
  --color-olive: #9cae6a;
  --color-green: #00ab00;
  --color-white: #ffffff;
  --color-text-muted: #b5c0d0;
  
  /* Fonts */
  --font-heading: 'Anton', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* CSS Reset & General Page Setup */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--color-white);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

li {
  list-style: none;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-py {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section-py {
    padding: 7.5rem 0;
  }
}

.text-gradient-cyan {
  background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-peach) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphism utility */
.glass-card {
  background: rgba(18, 24, 36, 0.7);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

/* Header & Sticky Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 12, 16, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-normal);
}

header.scrolled {
  background: rgba(11, 12, 16, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 0.25rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.nav-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-eureka {
  height: 2.2rem;
  width: auto;
}

.logo-casa-sogra {
  height: 2.2rem;
  width: auto;
}

.nav-links-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: none; /* Mobile hidden */
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-cyan);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-cyan);
  transition: var(--transition-normal);
  transform: translateX(-50%);
}

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

.badge-lang {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 171, 0, 0.3);
  background: rgba(0, 171, 0, 0.1);
  color: var(--color-white);
  white-space: nowrap;
}

/* Mobile Menu Button */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.8rem;
  height: 1.2rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-normal);
}

/* Mobile active menu styles */
@media (max-width: 991px) {
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 4.5rem;
    left: 0;
    width: 100%;
    background: rgba(11, 12, 16, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 1.25rem;
    gap: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    animation: slideDown 0.3s ease forwards;
  }
  
  .nav-links.active a {
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
  }

  .nav-links-wrapper {
    gap: 0.75rem;
  }
}

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

@media (min-width: 992px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  background-image: linear-gradient(to bottom, rgba(11, 12, 16, 0.8) 0%, rgba(11, 12, 16, 0.98) 100%), url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

@media (min-width: 992px) {
  .hero-section {
    background-image: linear-gradient(to right, rgba(11, 12, 16, 0.98) 40%, rgba(11, 12, 16, 0.4) 100%), url('../img/hero-bg.jpg');
    background-position: center right;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-pretitle {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-peach);
  text-transform: uppercase;
  border-left: 3px solid var(--color-cyan);
  padding-left: 0.75rem;
  line-height: 1;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 1px;
}

.hero-title span {
  color: var(--color-cyan);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  font-weight: 300;
  max-width: 38rem;
}

.hero-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0.5rem 0;
}

.hero-info-badge {
  background: rgba(18, 24, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-info-badge svg {
  color: var(--color-cyan);
  width: 1.25rem;
  height: 1.25rem;
}

.hero-info-badge.location svg {
  color: var(--color-peach);
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1rem;
}

/* Premium Buttons */
.btn-primary {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.1rem 2.2rem;
  background-color: var(--color-cyan);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 162, 222, 0.3);
  transition: var(--transition-normal);
  text-align: center;
  display: inline-block;
  animation: pulseCyan 2s infinite;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(0, 162, 222, 0.5);
  background-color: #00b0f0;
}

.btn-red {
  background-color: var(--color-red);
  box-shadow: 0 4px 15px rgba(186, 82, 82, 0.3);
}

.btn-red:hover {
  background-color: #d15c5c;
  box-shadow: 0 0 25px rgba(186, 82, 82, 0.5);
}

@keyframes pulseCyan {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 162, 222, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 162, 222, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 162, 222, 0);
  }
}

.hero-scarcity-copy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-red);
  font-weight: 600;
  max-width: 32rem;
}

.hero-scarcity-copy svg {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
}

/* Sections General H2 styling */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3.5rem;
  text-align: center;
}

.section-title::after {
  content: '';
  display: block;
  width: 4rem;
  height: 4px;
  background: var(--color-cyan);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* About Section */
.about-section {
  background-color: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-peach);
  line-height: 1.3;
}

.about-content p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-content p strong {
  color: var(--color-white);
}

.about-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

/* Grid of features (4 cards) */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.feature-card {
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 162, 222, 0.15);
  border-color: rgba(0, 162, 222, 0.3);
}

.feature-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(0, 162, 222, 0.1);
  border: 1px solid rgba(0, 162, 222, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan);
}

.feature-icon-wrapper svg {
  width: 1.75rem;
  height: 1.75rem;
}

.feature-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-peach);
}

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

.about-cta {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

/* Artist Section */
.artist-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.artist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .artist-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.artist-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.artist-image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.artist-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.artist-content p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.artist-highlights-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-top: 0.5rem;
}

.artist-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.artist-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.artist-highlights li svg {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--color-cyan);
  margin-top: 0.2rem;
}

.artist-highlights li strong {
  color: var(--color-white);
}

/* Tickets & Pricing Section */
.tickets-section {
  background-color: var(--bg-primary);
  position: relative;
}

/* Ticket Design */
.ticket-wrapper {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.ticket-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .ticket-card {
    flex-direction: row;
  }
}

/* Ticket Body & Stub layout */
.ticket-body {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ticket-stub {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 2px dashed rgba(255, 255, 255, 0.1);
  position: relative;
}

@media (min-width: 768px) {
  .ticket-stub {
    width: 250px;
    flex-shrink: 0;
    border-top: none;
    border-left: 2px dashed rgba(255, 255, 255, 0.1);
  }
  
  /* Ticket circle cutouts */
  .ticket-card::before,
  .ticket-card::after {
    content: '';
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--bg-primary);
    border-radius: 50%;
    right: 250px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ticket-card::before {
    top: -0.75rem;
    transform: translateX(50%);
  }

  .ticket-card::after {
    bottom: -0.75rem;
    transform: translateX(50%);
  }
}

.ticket-header-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1rem;
}

.ticket-header-logos img {
  opacity: 0.6;
  max-height: 1.5rem;
}

.ticket-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ticket-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.ticket-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--color-text-muted);
  font-size: 1rem;
}

.ticket-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-cyan);
}

.ticket-badge-red {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(186, 82, 82, 0.15);
  color: #ff7d7d;
  border: 1px solid rgba(186, 82, 82, 0.3);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  width: fit-content;
}

.ticket-price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ticket-price-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}

.ticket-price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--color-peach);
  line-height: 1;
}

.ticket-stub .btn-primary {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

.ticket-urgency-notice {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--color-peach);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.ticket-urgency-notice svg {
  color: var(--color-peach);
  width: 1.25rem;
  height: 1.25rem;
}

/* Location & Access Section */
.location-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-detail-item {
  display: flex;
  gap: 1rem;
}

.location-detail-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-cyan);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.location-detail-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.location-detail-content p {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.location-directions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.location-directions h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-peach);
}

.direction-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.direction-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-cyan);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.direction-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.direction-content p strong {
  color: var(--color-cyan);
}

.location-map-wrapper {
  height: 100%;
  min-height: 350px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.location-map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
  /* Dark mode filter for Google Maps */
  filter: invert(90%) hue-rotate(180deg) grayscale(10%) contrast(90%);
}

.location-cta {
  margin-top: 1.5rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border: 1px solid var(--color-cyan);
  color: var(--color-cyan);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  background: transparent;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-secondary:hover {
  background: rgba(0, 162, 222, 0.08);
  box-shadow: 0 0 15px rgba(0, 162, 222, 0.2);
  transform: translateY(-2px);
}

/* FAQ Accordion Section */
.faq-section {
  background-color: var(--bg-primary);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-accordion {
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-accordion summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none; /* Hide default arrow */
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-accordion summary::-webkit-details-marker {
  display: none; /* Hide Safari default arrow */
}

.faq-accordion summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-cyan);
  transition: var(--transition-normal);
  line-height: 1;
}

.faq-accordion[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-accordion:hover {
  border-color: rgba(0, 162, 222, 0.25);
  background: rgba(18, 24, 36, 0.85);
}

/* Footer Section */
footer {
  background-color: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 2rem 0;
}

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

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-col.logos {
  align-items: center;
}

@media (min-width: 768px) {
  .footer-col.logos {
    align-items: flex-start;
  }
}

.footer-partner-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-partner-logos img {
  height: 2.2rem;
  width: auto;
  opacity: 0.6;
  transition: var(--transition-fast);
}

.footer-partner-logos img:hover {
  opacity: 1;
}

.footer-partner-logos-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.footer-col h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2rem;
  height: 2px;
  background-color: var(--color-cyan);
}

.footer-col.logos h4::after {
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .footer-col.logos h4::after {
    left: 0;
    transform: none;
  }
}

.footer-support-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-support-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.footer-support-item svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--color-cyan);
  flex-shrink: 0;
}

.footer-support-item a:hover {
  color: var(--color-cyan);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  width: fit-content;
}

.footer-links-list a:hover {
  color: var(--color-cyan);
  padding-left: 5px;
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
