/* ===================================
   RADIO LYNGDAL - MODERN DESIGN 2024
   =================================== */

/* Import Modern Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

/* ===================================
   CSS CUSTOM PROPERTIES (Variables)
   =================================== */
:root {
  /* Primary Colors - Warm Radio Theme */
  --primary: #e63946;
  --primary-dark: #c1121f;
  --primary-light: #ff6b6b;

  /* Secondary Colors */
  --secondary: #1d3557;
  --secondary-light: #457b9d;
  --accent: #f77f00;

  /* Neutral Colors */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --medium-gray: #adb5bd;
  --dark-gray: #495057;
  --text: #2b2d42;
  --heading: #1a1a2e;

  /* Backgrounds */
  --bg-light: #f5f7fa;
  --bg-dark: #1a1a2e;
  --bg-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-primary: 0 8px 24px rgba(230, 57, 70, 0.3);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Poppins', sans-serif;

  /* Font Sizes */
  --h1-size: clamp(2rem, 5vw, 3.5rem);
  --h2-size: clamp(1.5rem, 3vw, 2.25rem);
  --h3-size: clamp(1.25rem, 2vw, 1.5rem);
  --h4-size: 1.125rem;
  --h5-size: 1rem;
  --body-size: 1rem;
  --small-size: 0.875rem;

  /* Spacing */
  --section-padding: clamp(3rem, 8vw, 7rem);
  --container-padding: clamp(1rem, 3vw, 2rem);

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===================================
   BASE RESET & DEFAULTS
   =================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 0;
}

h1 {
  font-size: var(--h1-size);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--h2-size);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--h3-size);
}

h4 {
  font-size: var(--h4-size);
}

h5 {
  font-size: var(--h5-size);
}

p {
  margin-bottom: 0;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding) 0;
}

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

.text-white {
  color: var(--white);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: var(--transition-normal);
  cursor: pointer;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.3);
}

.btn i {
  font-size: 1rem;
}

.btn-inline,
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.btn-inline:hover,
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(230, 57, 70, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary-light);
  border-color: var(--secondary-light);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header-part {
  display: none;
}

@media (min-width: 992px) {
  .header-part {
    display: block;
  }
}

.header-bg {
  background: var(--bg-gradient);
  padding: 1rem 0;
}

.header-logo img {
  width: 200px;
  height: auto;
}

.header-content {
  text-align: center;
  margin-top: 1rem;
}

.header-content h3 {
  font-size: 1.25rem;
  color: var(--white);
}

.header-btn {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

/* Navigation */
.navbar-part {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.navbar-bg {
  background: var(--white);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.navbar-logo img {
  width: 140px;
  height: auto;
}

.navbar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: var(--white);
  transition: var(--transition-fast);
}

.navbar-toggle:hover {
  background: var(--primary-dark);
}

.navbar-toggle i {
  font-size: 1.25rem;
}

.navbar-list {
  display: none;
  align-items: center;
  gap: 0;
}

@media (min-width: 992px) {
  .navbar-list {
    display: flex;
  }

  .navbar-logo,
  .navbar-toggle {
    display: none;
  }
}

.navbar-item {
  position: relative;
}

.navbar-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 1.25rem 1rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition-fast);
}

.navbar-link:hover {
  color: var(--primary);
}

.navbar-link i {
  display: none;
}

.navbar-link small {
  font-size: 0.625rem;
  margin-left: 0.25rem;
  transition: var(--transition-fast);
}

.navbar-item.active .navbar-link {
  color: var(--primary);
}

/* Dropdown Menu */
.navbar-dropdown {
  position: relative;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-fast);
  overflow: hidden;
}

.navbar-dropdown:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-list li {
  border-bottom: 1px solid var(--light-gray);
}

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

.dropdown-link {
  display: block;
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition-fast);
}

.dropdown-link:hover,
.dropdown-link.active {
  background: var(--primary);
  color: var(--white);
}

/* Player in Nav */
.navbar-player {
  margin: 0 2rem;
}

.player {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-full);
  background: var(--bg-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.player::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.player-btn {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-normal);
  animation: playerPulse 2s ease-in-out infinite;
}

.player-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 0 0 8px rgba(230, 57, 70, 0.3);
}

.player-btn i {
  font-size: 2.5rem;
}

.player-btn h5 {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes playerPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(230, 57, 70, 0);
  }
}

/* Mobile Navigation Overlay */
.navbar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 1000;
}

.navbar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.navbar-slide {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  transform: translateX(-100%);
  transition: var(--transition-normal);
  overflow-y: auto;
  z-index: 1001;
}

.navbar-overlay.active .navbar-slide {
  transform: translateX(0);
}

.slide-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  background: var(--bg-gradient);
}

.slide-head a img {
  width: 120px;
}

.slide-head button {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.slide-head button:hover {
  background: var(--off-white);
  transform: rotate(90deg);
}

@media (max-width: 991px) {
  .navbar-list {
    display: block;
    padding: 1rem 0;
  }

  .navbar-list li {
    border-bottom: 1px solid var(--light-gray);
  }

  .navbar-link {
    padding: 1rem 1.25rem;
    justify-content: space-between;
  }

  .navbar-link i {
    display: block;
    color: var(--primary);
    margin-right: 0.5rem;
  }

  .navbar-player {
    display: none;
  }

  .dropdown-list {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    width: 100%;
    display: none;
    background: var(--off-white);
  }

  .navbar-dropdown:hover .dropdown-list {
    display: block;
  }

  .navbar-btn {
    padding: 1.5rem 1.25rem;
    text-align: center;
  }
}

/* Fixed Navigation on Scroll */
.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.navbar-fixed .player {
  width: 140px;
  height: 140px;
  margin-top: -30px;
  margin-bottom: -30px;
}

.navbar-fixed .player-btn i {
  font-size: 2rem;
}

/* ===================================
   BOTTOM MOBILE PLAYER
   =================================== */
.bottom-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem;
  display: none;
  z-index: 998;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

@media (max-width: 991px) {
  .bottom-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.bottom-player .row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bottom-player .col {
  display: flex;
  align-items: center;
}

.bottom-player .player {
  width: 60px;
  height: 60px;
}

.bottom-player .player-btn i {
  font-size: 1.25rem;
}

/* ===================================
   BANNER / HERO SECTION
   =================================== */
.banner-slider {
  position: relative;
}

.banner-1,
.banner-2,
.banner-3,
.banner-4 {
  position: relative;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.banner-1 {
  background-image: url('../../img/banner-1.jpg');
}

.banner-2 {
  background-image: url('../../img/banner-2.jpg');
}

.banner-3 {
  background-image: url('../../img/banner-3.jpg');
}

.banner-4 {
  background-image: url('../../img/banner-4.jpg');
}

.banner-oly {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.banner-content h1 {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.banner-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.banner-content small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

/* ===================================
   SECTION HEADINGS
   =================================== */
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  color: var(--heading);
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

/* ===================================
   SHOW/PROGRAM CARDS
   =================================== */
.show-part {
  background: var(--bg-light);
}

.show-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  margin-bottom: 1.5rem;
}

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

.show-content {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.show-bg {
  position: absolute;
  inset: 0;
}

.show-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.show-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.95), rgba(26, 26, 46, 0.4));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.show-time p {
  font-size: 0.875rem;
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.show-time h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

.show-meta {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--light-gray);
}

.show-meta h5 {
  font-size: 0.875rem;
  color: var(--medium-gray);
}

.show-btn {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ===================================
   BLOG / NEWS SECTION
   =================================== */
.blog-part {
  background: var(--white);
}

.blog-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Feed Styling */
.feedDiv {
  float: none;
  padding-right: 0;
}

#lister24,
#l-a {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

#lister24 li,
#l-a li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-gray);
}

#lister24 li:last-child,
#l-a li:last-child {
  border-bottom: none;
}

#lister24 a,
#l-a a {
  font-weight: 500;
  color: var(--heading);
  transition: var(--transition-fast);
}

#lister24 a:hover,
#l-a a:hover {
  color: var(--primary);
}

/* ===================================
   FOOTER
   =================================== */
.footer-part {
  background: var(--bg-gradient);
  padding: 4rem 0 2rem;
  border-radius: 3rem 3rem 0 0;
}

.footer-gape {
  margin-top: 4rem;
}

.footer-logo {
  text-align: center;
  margin-bottom: 3rem;
}

.footer-logo a img {
  width: 180px;
  margin: 0 auto 1.5rem;
}

.footer-logo ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.icon {
  display: inline-flex;
}

.icon i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  font-size: 1.125rem;
  transition: var(--transition-fast);
}

.icon-inline i {
  background: var(--white);
  color: var(--primary);
}

.icon-inline i:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  margin-bottom: 1.5rem;
}

.footer-heading h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.footer-heading p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.footer-address {
  margin-bottom: 2rem;
}

.footer-address li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-address li:last-child {
  border-bottom: none;
}

.footer-address li i {
  font-size: 1.25rem;
  color: var(--primary);
  margin-top: 0.25rem;
}

.footer-address li p,
.footer-address li font {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer-link {
  margin-bottom: 2rem;
}

.footer-link li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link li:first-child {
  padding-top: 0;
}

.footer-link li:last-child {
  border-bottom: none;
}

.footer-link li a,
.footer-link li font {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
}

.footer-link li a:hover {
  color: var(--primary);
}

.download-part {
  margin-top: 1.5rem;
}

.download-part ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.download-part ul h5 {
  color: var(--white);
  width: 100%;
  margin-bottom: 0.5rem;
}

.download-part ul li a img {
  height: 50px;
  width: auto;
  transition: var(--transition-fast);
}

.download-part ul li a img:hover {
  transform: scale(1.05);
}

/* Copyright */
.copy-part {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.25rem 0;
  margin-top: 2rem;
}

.copy-part ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
}

.copy-part ul li h6 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 400;
}

.copy-part ul li h6 span,
.copy-part ul li h6 a {
  color: var(--primary-light);
}

.copy-part ul li h6 a:hover {
  text-decoration: underline;
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */
.back2top-btn {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 997;
  display: none;
}

.back2top-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
  transition: var(--transition-fast);
}

.back2top-btn a:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.back2top-btn a i {
  font-size: 1.125rem;
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */
@media (max-width: 767px) {
  .footer-part {
    border-radius: 2rem 2rem 0 0;
    padding: 3rem 0 1.5rem;
  }

  .footer-gape {
    margin-top: 2rem;
  }

  .banner-1,
  .banner-2,
  .banner-3,
  .banner-4 {
    min-height: 60vh;
  }

  .banner-content h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .banner-content p {
    font-size: 1rem;
  }

  .copy-part ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .copy-part ul li {
    border-right: none;
    padding: 0;
  }

  .back2top-btn {
    bottom: 80px;
    right: 15px;
  }

  .footer-address,
  .footer-link {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-part {
    border-radius: 2.5rem 2.5rem 0 0;
  }

  .footer-address,
  .footer-link {
    margin-bottom: 2.5rem;
  }
}

/* ===================================
   BADGE STYLES
   =================================== */
.badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 1rem;
  margin-left: 0.5rem;
}

.text-bg-secondary {
  background: var(--accent);
  color: var(--white);
}

/* ===================================
   NEWS FORM / NEWSLETTER
   =================================== */
.news-form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 3rem;
  position: relative;
}

.news-form input {
  width: 100%;
  height: 56px;
  padding: 0 160px 0 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.news-form input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
}

.news-form .btn {
  position: absolute;
  top: 4px;
  right: 4px;
  height: 48px;
  padding: 0 1.5rem;
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===================================
   SLICK SLIDER OVERRIDES
   =================================== */
.slick-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--medium-gray);
  border: none;
  font-size: 0;
  transition: var(--transition-fast);
}

.slick-dots li.slick-active button {
  background: var(--primary);
  transform: scale(1.2);
}

.slick-prev,
.slick-next {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.slick-prev:hover,
.slick-next:hover {
  background: var(--primary);
  color: var(--white);
}
