/* =====================
   ANIMATION SYSTEM
   ===================== */

/* Base hidden state for scroll-triggered elements */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in {
  opacity: 0;
  transform: none;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.scale-in {
  opacity: 0;
  transform: scale(0.96) translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Revealed state (added via JS IntersectionObserver) */
.fade-up.show,
.fade-in.show,
.scale-in.show {
  opacity: 1;
  transform: none;
}

/* Stagger delays for cards (nth-child) */
.card:nth-child(1) {
  transition-delay: 0ms;
}

.card:nth-child(2) {
  transition-delay: 120ms;
}

.card:nth-child(3) {
  transition-delay: 240ms;
}

/* Stagger delays for how-it-works steps */
.step-row:nth-child(2) {
  transition-delay: 0ms;
}

.step-row:nth-child(3) {
  transition-delay: 140ms;
}

.step-row:nth-child(4) {
  transition-delay: 280ms;
}

.step-row:nth-child(5) {
  transition-delay: 420ms;
}

.step-row:nth-child(6) {
  transition-delay: 560ms;
}

.step-row:nth-child(7) {
  transition-delay: 700ms;
}

.step-row:nth-child(8) {
  transition-delay: 840ms;
}

.step-row:nth-child(9) {
  transition-delay: 980ms;
}

.step-row:nth-child(10) {
  transition-delay: 1120ms;
}

.step-row:nth-child(11) {
  transition-delay: 1260ms;
}

/* Hero — animates on page load (not on scroll) */
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: heroReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
  max-width: 1200px;
  width: 100%;
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0B0B0F;
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

/* CONTAINER */
.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 20px;
}

.hero .container {
  width: min(1400px, 100%);
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 15, 25, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-inner {
  height: 78px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: all 0.4s ease;
}

.navbar.scrolled .nav-inner {
  height: 68px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1; /* New: take remaining space */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  flex-wrap: nowrap;
  overflow: hidden;
  /* flex: 1;v  New: stretch and center inside nav-menu */
  justify-content: center;
}

/* LANGUAGE SWITCHER - PILL TOGGLE */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
  margin: 0 20px;
}

.lang-switcher a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.lang-switcher a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.lang-switcher a.active {
  color: #fff;
  background: rgba(59, 130, 246, 0.8);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.lang-switcher .lang-sep {
  display: none;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 100;
  padding: 4px;
}

.hamburger svg {
  width: 28px;
  height: 28px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

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

/* LOGO WRAPPER */
.logo {
  display: flex;
  align-items: center;
  position: relative;
  gap: 8px;
}

/* LINK */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* SVG ICON */
.logo-icon {
  width: 34px;
  height: 34px;

  /* FIXED VISIBILITY */
  filter: brightness(1.4) contrast(1.2) drop-shadow(0 0 6px rgba(112, 74, 227, 0.7)) drop-shadow(0 0 14px rgba(112, 74, 227, 0.5));

  transition: all 0.35s ease;
}

/* HOVER GLOW (PREMIUM) */
.logo-link:hover .logo-icon {
  transform: scale(1.08);

  filter: brightness(1.8) drop-shadow(0 0 12px rgba(112, 74, 227, 1)) drop-shadow(0 0 24px rgba(112, 74, 227, 0.8));
}

/* SOFT BACKGROUND GLOW */
.logo::before {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  background: radial-gradient(circle, rgba(112, 74, 227, 0.25), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* TEXT */
.logo-text {
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 1;

  /* CLEAN (NO UNDERLINE) */
  text-decoration: none;
  border: none;

  /* BETTER VISIBILITY */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px; /* English default slightly larger */
  font-weight: 500;
  letter-spacing: 0.2px; /* Tightened visually */
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 0;
}

html[lang="sq"] .nav-links a,
html[lang="al"] .nav-links a {
  font-size: 14px;
}

html[lang="sq"] .nav-links,
html[lang="al"] .nav-links {
  gap: 16px;
}

/* Underline Animation */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-link {
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 100px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  display: inline-block;
  text-align: center;
}

.nav-link:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  color: #fff;
}

/* LOGO BASE */
.logo-icon {
  width: 28px;
  height: 28px;
  filter: brightness(1.3);

  /* animation */
  animation: logoGlow 2.5s ease-in-out infinite;
}

/* GLOW ANIMATION */
@keyframes logoGlow {
  0% {
    filter: brightness(1.2) drop-shadow(0 0 4px rgba(112, 74, 227, 0.3));
  }

  50% {
    filter: brightness(1.4) drop-shadow(0 0 14px rgba(112, 74, 227, 0.8));
  }

  100% {
    filter: brightness(1.2) drop-shadow(0 0 4px rgba(112, 74, 227, 0.3));
  }
}

.logo-link:hover .logo-icon {
  animation: none;
  filter: brightness(1.5) drop-shadow(0 0 18px rgba(112, 74, 227, 1));
  transform: scale(1.08);
  transition: 0.3s ease;
}

.nav-links a.active::before {
  display: none;
}

/* NAVBAR SCROLLED */
.navbar.scrolled {
  background: rgba(10, 15, 25, 0.9);
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .nav-inner {
  height: 70px;
}

.btn-outline {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.btn-outline:hover {
  border-color: #38bdf8;
  color: #38bdf8;
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

/* Navbar scrolled state */
.navbar.scrolled {
  background: rgba(11, 11, 15, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* HERO */
/* HERO */
.hero {
  min-height: 100vh;
  max-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding-top: 82px;
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
  padding-left: 15px;
}

.inner-hero,
.ip-hero {
  padding-top: 82px;
}

@media (max-width: 767px) {
  .hero {
    max-height: calc(100vh - 100px);
  }
}

/* VIDEO */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  min-width: 100%;
  min-height: 100%;
  pointer-events: none;

  /* smoother rendering */
  filter: brightness(1.05) contrast(1.05);
}

.desktop-video {
  display: block;
  object-fit: cover;
}

.mobile-video {
  display: none;
  object-fit: contain;
  background: #02071c;
}

/* OVERLAY (premium, light) */
.hero-overlay {
  background: rgba(5, 15, 40, 0.35);
  z-index: 1;
}



/* CONTENT ABOVE VIDEO */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  justify-items: center;
}

/* Top atmospheric gradient (brand blue/purple) - LIGHTER */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(
    to bottom,
    rgba(14, 27, 78, 0.25) 0%,
    rgba(59, 130, 246, 0.08) 45%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Soft cinematic glow near top center */
.hero::after {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 320px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.22), rgba(90, 53, 224, 0.12) 45%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

/* HERO CONTENT */
.tag {
  display: inline-block;
  border: 1px solid rgba(59, 130, 246, 0.4);
  padding: 8px 18px;
  border-radius: 999px;
  color: #60a5fa;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: -1px;
  max-width: 900px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero h1 span {
  background: linear-gradient(to right, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  color: #ffffff; /* Brighter for readability */
  max-width: 520px;
  margin-bottom: 35px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-title {
  letter-spacing: -1px;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 700;
  max-width: 700px;
  /* 🔥 important */
}

.hero-title span {
  display: inline-block;
}

/* Gradient text (same as EN) */
.gradient-text {
  background: linear-gradient(90deg, #6ea8ff, #9b6bff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
    max-width: 100%;
  }
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  padding: 16px 32px;
  border-radius: 999px;
  background: #2563eb;
  color: white;
  border: none;
  font-weight: 500;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
  transition: 0.3s;
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.7);
  transform: scale(1.03);
}

.btn-secondary {
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
  transform: scale(1.03);
}

/* (Removed Image styles as they are replaced by video) */

/* EVENTS */
.events {
  padding: 140px 0;
  text-align: center;
}

.events h2 {
  font-size: 48px;
  margin-bottom: 60px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: linear-gradient(180deg, #12192b 0%, #0b0d14 100%);
  padding: 48px 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  text-align: left;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.2), transparent);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.2);
  box-shadow: 0 30px 60px rgba(56, 189, 248, 0.05);
}

/* Card as link — preserve card styling on anchor tags */
a.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.card-link:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 30px 60px rgba(56, 189, 248, 0.1), 0 0 0 1px rgba(56, 189, 248, 0.12);
}

a.card-link h3 {
  color: #ffffff;
}

a.card-link:hover h3 {
  color: #e0f2fe;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: #38bdf8;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5px;
}

.card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.card p {
  font-size: 15px;
  color: #8b95a5;
  line-height: 1.6;
  font-weight: 300;
}

.card-highlight {
  display: block;
  font-size: 14px;
  color: #38bdf8;
  font-weight: 500;
  margin-top: 12px;
  letter-spacing: 0.5px;
}

/* HOW */
.how {
  padding: 140px 0;
  background: #0B0B0F;
}

.how-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 120px;
  align-items: center;
}

.how-text h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.how-text h2 span {
  color: #60a5fa;
}

.how-text p {
  font-size: 16px;
  color: #9ca3af;
  line-height: 1.8;
  font-weight: 300;
}

.steps-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.steps-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 0;
}

.step-row {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #050508;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #38bdf8;
}

.step-card {
  background: #101117;
  padding: 36px 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  flex-grow: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.step-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #f8fafc;
  letter-spacing: -0.5px;
}

.step-card p {
  font-size: 15px;
  color: #9ca3af;
  line-height: 1.6;
  font-weight: 300;
}

/* CTA */
.cta {
  padding: 160px 20px;
  text-align: center;
  background: linear-gradient(#0B0B0F, #02071C);
}

.cta h2 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.cta h2 span {
  font-style: italic;
  font-weight: 300;
  color: #38bdf8;
}

.cta p {
  font-size: 18px;
  color: #8b95a5;
  max-width: 600px;
  margin: 0 auto 48px auto;
  line-height: 1.6;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  border: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

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

.btn-white svg {
  width: 20px;
  height: 20px;
}

/* FOOTER */
.footer {
  padding: 90px 0 0;
  background: #050508;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding: 0 32px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand .logo {
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-brand p {
  margin-top: 16px;
  color: #8b95a5;
  font-size: 14px;
  max-width: 280px;
  line-height: 1.7;
  font-weight: 300;
}

.footer-links h4 {
  font-size: 12px;
  margin-bottom: 20px;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  color: #8b95a5;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #38bdf8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 32px;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 13px;
  color: #6b7280;
}

.footer-bottom a {
  margin-left: 20px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: white;
}

/* Legacy minimal footer (fallback) */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* RESPONSIVE DESIGN */

/* Tablet Breakpoint (768px - 1199px) */
@media(max-width: 1199px) {
  .hero h1 {
    font-size: 52px;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .events h2,
  .how-text h2,
  .cta h2 {
    font-size: 40px;
  }
}

/* Mobile Breakpoint (<768px) */
@media(max-width: 767px) {
  .hero {
    min-height: calc(100vh - 100px);
    padding-top: 100px;
  }

  .hero::before {
    height: 50%;
  }

  .hero::after {
    width: 380px;
    height: 240px;
    top: -90px;
    filter: blur(52px);
  }

  .desktop-video {
    display: none;
  }

  .mobile-video {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    margin-bottom: 12px;
  }

  .hero p {
    margin: 0 auto 30px;
  }

  /* Hamburger Menu Visibility */
  .hamburger {
    display: block;
  }

  /* Side Drawer Layout */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #0B0B0F;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 90;
    padding: 20px;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-bottom: 30px;
  }

  .nav-links a {
    margin: 10px 0;
    font-size: 18px;
    padding: 10px 0;
  }

  /* Replace top line with text color for active on mobile */
  .nav-links a.active::before {
    display: none;
  }

  .nav-links a.active {
    color: #38bdf8;
  }

  /* Section grid to single column */
  .cards,
  .how-grid {
    grid-template-columns: 1fr;
  }

  /* Timeline adjustments */
  .steps-line {
    display: none;
  }

  .step-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .step-card {
    width: 100%;
    padding: 30px 20px;
  }

  /* Padding adjustments */
  .events,
  .how,
  .cta {
    padding: 80px 0;
  }

  /* Footer responsive */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 16px;
  }

  .footer-bottom a {
    margin: 0 8px;
  }
}

/* Tiny mobile footer */
@media(max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

/* INNER HERO */
.inner-hero {
  padding: 160px 20px 100px;
  text-align: center;
  background: linear-gradient(#0B0B0F, #02071C);
}

.inner-hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.inner-hero p {
  color: #9ca3af;
}

/* SECTION */
.section {
  padding: 100px 0;
  text-align: center;
}

.section-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

/* LEGAL PAGES */
.legal-section {
  padding: 80px 20px;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.legal-card {
  position: relative;
  background: linear-gradient(145deg, #0b0f1a, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease;
}

.legal-card::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: rgba(59, 130, 246, 0.6);
  margin-bottom: 12px;
}

.legal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.08);
}

.legal-card h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.legal-card p {
  margin: 0 0 14px;
  font-size: 15px;
  opacity: 0.8;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

/* PACKAGES */
.packages {
  padding: 120px 0;
  text-align: center;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

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

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

/* ✨ PREMIUM GLOW BACKGROUND */
.packages {
  position: relative;
}

.packages::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.15);
  filter: blur(120px);
  top: 20%;
  left: 10%;
  z-index: 0;
}

.packages::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(79, 70, 229, 0.15);
  filter: blur(150px);
  bottom: 10%;
  right: 10%;
  z-index: 0;
}

/* ✨ PACKAGE GRID FIX */
.packages-grid {
  position: relative;
  z-index: 1;
}

/* ✨ PREMIUM CARDS */
.package-card {
  background: linear-gradient(180deg, #12121A 0%, #0b0d14 100%);
  padding: 48px 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* TOP LIGHT LINE */
.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.3), transparent);
}

/* HOVER EFFECT */
.package-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(56, 189, 248, 0.1);
}

/* ✨ FEATURED CARD (CENTER ONE) */
.package-card.featured {
  border: 2px solid #3B82F6;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
}

.package-card.featured:hover {
  box-shadow:
    0 30px 80px rgba(59, 130, 246, 0.25),
    0 0 60px rgba(59, 130, 246, 0.4);
}

/* ✨ PRICE STYLE */
.package-price {
  font-size: 28px;
  font-weight: 600;
  margin: 25px 0;
  color: #60a5fa;
}

/* ✨ SUBTITLE STYLE */
.package-subtitle {
  font-size: 16px;
  color: #9ca3af;
  margin: 15px 0;
  line-height: 1.4;
}

/* ✨ FEATURES LIST */
.package-features {
  flex-grow: 1;
  list-style: none;
  margin: 20px 0;
}

.package-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #9ca3af;
}

.package-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #38bdf8;
}

/* ✨ BUTTON ALIGNMENT */
.package-card .btn-primary {
  margin-top: auto;
  transition: all 0.3s ease;
}

.package-card .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
}

/* ✨ FADE ANIMATION */
.package-card {
  opacity: 0;
  transform: translateY(40px);
}

.package-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =============================================
   BOOKING MODAL
   ============================================= */

/* Overlay (fullscreen dim) */
.booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.booking-modal {
  z-index: 10060;
}

.booking-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Modal card */
.booking-modal {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(160deg, #13151f 0%, #0c0e18 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 60px rgba(56, 189, 248, 0.04);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  /* top light line */
}

.booking-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.25), transparent);
  border-radius: 24px 24px 0 0;
}

.booking-overlay.active .booking-modal {
  transform: scale(1) translateY(0);
}

/* Scrollbar for modal */
.booking-modal::-webkit-scrollbar {
  width: 4px;
}

.booking-modal::-webkit-scrollbar-track {
  background: transparent;
}

.booking-modal::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

/* Close button */
.booking-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #6b7280;
  border-radius: 10px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.booking-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Header */
.booking-header {
  margin-bottom: 36px;
}

.booking-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.15);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.booking-header h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
  line-height: 1.15;
}

.booking-header h2 span {
  color: #60a5fa;
}

.booking-header p {
  font-size: 15px;
  color: #8b95a5;
  font-weight: 300;
  line-height: 1.6;
}

/* Form layout */
.booking-form,
.app-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-section {
  background: rgba(17, 22, 40, 0.75);
  border: 1px solid rgba(147, 161, 194, 0.2);
  border-radius: 20px;
  padding: 32px;
  margin: 24px 0;
  box-shadow: 0 18px 45px rgba(7, 10, 23, 0.4);
}

.form-card {
  max-width: 860px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: #9ca3af;
  letter-spacing: 0.3px;
}

/* Inputs, selects, textareas */
.booking-form input,
.booking-form select,
.booking-form textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 14px 18px;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  width: 100%;
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #4b5563;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(56, 189, 248, 0.03);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.08);
}

/* Select wrapper for custom arrow */
.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #4b5563;
  pointer-events: none;
  transition: border-color 0.2s;
}

.select-wrapper:focus-within::after {
  border-top-color: #38bdf8;
}

.booking-form select option {
  background: #13151f;
  color: white;
}

/* Validation errors */
.form-error {
  font-size: 12px;
  color: #f87171;
  display: none;
  padding-left: 2px;
}

.form-group.error .form-error {
  display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: rgba(248, 113, 113, 0.5);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.07);
}

/* Submit button */
.booking-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  padding: 16px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, opacity 0.25s;
  width: 100%;
}

.booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.45);
}

.booking-submit:active {
  transform: translateY(0);
}

.booking-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Success state */
.booking-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  gap: 16px;
}

.booking-success.active {
  display: flex;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
  animation: successPop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes successPop {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.booking-success h3 {
  font-size: 26px;
  font-weight: 700;
}

.booking-success p {
  font-size: 15px;
  color: #8b95a5;
  max-width: 400px;
  line-height: 1.6;
  font-weight: 300;
}

.booking-success .booking-submit {
  max-width: 200px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 8px;
}

.booking-success .booking-submit:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.form-success {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.08);
  color: #dbeafe;
  border-radius: 10px;
  font-size: 14px;
}

.form-success.active {
  display: block;
}

/* Responsive */
@media (max-width: 600px) {
  .booking-modal {
    padding: 32px 24px;
    border-radius: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-header h2 {
    font-size: 26px;
  }
}

.inner-hero {
  position: relative;
}

.inner-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.15);
  filter: blur(120px);
  top: 20%;
  left: 30%;
}

/* =============================================
   PORTFOLIO SECTION - PREMIUM GRID
   ============================================= */

.portfolio {
  padding: 140px 0;
  background: #0B0B0F;
  position: relative;
}

/* Premium glow backgrounds */
.portfolio::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.12);
  filter: blur(140px);
  top: 10%;
  left: 5%;
  z-index: 0;
}

.portfolio::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(139, 92, 246, 0.12);
  filter: blur(160px);
  bottom: 5%;
  right: 5%;
  z-index: 0;
}

.portfolio h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 80px;
  letter-spacing: -1px;
  line-height: 1.1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.portfolio h2 span {
  color: #60a5fa;
}

/* Portfolio grid container */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

/* Portfolio item card */
.portfolio-item {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border: 1px solid rgba(65, 81, 131, 0.4);
  background: linear-gradient(180deg, #0a0e20 0%, #06080f 60%, #05070d 100%);
  box-shadow:
    inset 0 0 20px rgba(28, 47, 115, 0.35),
    0 10px 30px rgba(8, 12, 30, 0.45);
}

/* Top light line on portfolio items */
.portfolio-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.8), transparent);
  z-index: 10;
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(92, 170, 255, 0.12), transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(131, 95, 255, 0.12), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}

.portfolio-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
  z-index: 2;
  filter: saturate(1.1) contrast(1.1) brightness(1.05);
}

.portfolio-item:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(96, 165, 250, 0.8);
  box-shadow:
    inset 0 0 20px rgba(61, 120, 255, 0.22),
    0 20px 65px rgba(34, 66, 142, 0.55);
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.12);
  filter: saturate(1.15) contrast(1.16) brightness(1.1);
}

.portfolio-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all 0.35s ease;
  padding: 1.85rem;
  background: linear-gradient(180deg, rgba(2, 5, 16, 0) 40%, rgba(6, 9, 23, 0.75) 100%);
}

.portfolio-content h3 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.45);
}

.portfolio-content p {
  font-size: 0.95rem;
  color: #dbe7ff;
  font-weight: 300;
  letter-spacing: 0.3px;
  line-height: 1.6;
}

.portfolio-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
  background: rgba(15, 29, 75, 0.74);
  border: 1px solid rgba(95, 165, 255, 0.6);
  color: #f8fbff;
  backdrop-filter: blur(6px);
}


/* Portfolio image container */
.portfolio-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

/* Hover scale effect on image */
.portfolio-item:hover .portfolio-img {
  transform: scale(1.08);
}

/* Portfolio content overlay */
.portfolio-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Portfolio badges container */
.portfolio-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e0e7ff;
  margin-right: 6px;
}

/* Portfolio item hover state */
.portfolio-item:hover {
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15), 0 0 40px rgba(96, 165, 250, 0.08);
}

.portfolio-item:hover .portfolio-content {
  transform: translateY(0);
}

/* Portfolio content text styling */
.portfolio-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.portfolio-content p {
  font-size: 14px;
  color: #cbd5e1;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Magnetic button interaction for portfolio */
.portfolio-item.magnetic-btn {
  transition: transform 0.3s ease;
}

.portfolio-item.magnetic-btn:active {
  transform: scale(0.98);
}

/* =============================================
   PORTFOLIO RESPONSIVE DESIGN
   ============================================= */

/* Tablet breakpoint (1200px-768px) */
@media(max-width: 1199px) {
  .portfolio {
    padding: 100px 0;
  }

  .portfolio h2 {
    font-size: 42px;
    margin-bottom: 60px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

/* Mobile breakpoint (767px and below) */
@media(max-width: 767px) {
  .portfolio {
    padding: 80px 0;
  }

  .portfolio h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-content h3 {
    font-size: 20px;
  }

  .portfolio-content p {
    font-size: 13px;
  }

  .portfolio-item {
    aspect-ratio: 16 / 10;
  }

  /* Remove hover effects on mobile */
  .portfolio-item:hover {
    border-color: rgba(96, 165, 250, 0.2);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
  }
}

/* =====================
   FLATPICKR DARK THEME
   ===================== */
.flatpickr-calendar {
  background: #0b1221 !important;
  border: 1px solid #334155 !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.45) !important;
  color: #e2e8f0 !important;
}

.flatpickr-months {
  background: transparent !important;
}

/* Header: Month + Year */
.flatpickr-current-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  color: #ffffff !important;
  font-weight: 600 !important;
}

/* Fix dropdown list text color (keep it black for visibility on light OS dropdowns) */
.flatpickr-monthDropdown-month,
.flatpickr-monthDropdown-months option {
  color: #000000 !important;
  background: #ffffff !important;
}

/* Navigation Arrows */
.flatpickr-prev-month svg,
.flatpickr-next-month svg {
  fill: #ffffff !important;
  transition: fill 0.2s ease;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
  fill: #60a5fa !important;
}

/* Weekdays */
.flatpickr-weekday {
  color: #94a3b8 !important;
  font-weight: 500 !important;
}

/* Days */
.flatpickr-day {
  color: #e2e8f0 !important;
  border-radius: 8px !important;
}

.flatpickr-day:hover {
  background: rgba(96, 165, 250, 0.2) !important;
  color: #ffffff !important;
}

.flatpickr-day.today {
  border-color: #3b82f6 !important;
}

.flatpickr-day.selected {
  background: #3b82f6 !important;
  color: #ffffff !important;
}

.flatpickr-day.disabled {
  color: #475569 !important;
}

/* Time Picker */
.flatpickr-time {
  background: #0b1221 !important;
  border-top: 1px solid #334155 !important;
}

.flatpickr-time input,
.flatpickr-time .flatpickr-am-pm {
  color: #e2e8f0 !important;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover {
  background: #1e293b !important;
}

/* Time Picker Arrows fix */
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #ffffff !important;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #ffffff !important;
}

.flatpickr-time .numInputWrapper span:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}
