/* Burger menu as a package */
#burger-menu {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.7,-0.4,.3,1.4);
  background: #fffbe7;
  border: 2.5px solid #b3a16c;
  border-radius: 7px;
  box-shadow: 0 2px 8px #b3a16c33, 0 0.5px 0 #fff;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 12;
}
#burger-menu.burger-fadein {
  opacity: 1;
}
#burger-menu .burger-bar {
  width: 24px;
  height: 4px;
  background: #b3a16c;
  margin: 3px 0;
  border-radius: 2px;
  box-shadow: 0 1px 2px #fffbe7cc;
  transition: background 0.2s;
}
#burger-menu:before {
  content: '';
  position: absolute;
  left: 7px; top: 7px;
  width: 30px; height: 30px;
  border: 2px solid #ffe082;
  border-radius: 5px;
  box-shadow: 0 0 0 2px #fffbe7cc inset;
  z-index: 1;
}

/* Nav links as packages */
.main-nav ul li a {
  background: #fffbe7;
  border: 2.5px solid #b3a16c;
  border-radius: 10px;
  box-shadow: 0 2px 8px #b3a16c33, 0 0.5px 0 #fff;
  color: #b3a16c;
  font-weight: 700;
  padding: 0.7em 1.5em;
  margin: 0 0.5em;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(-30px) scale(0.8);
  transition: opacity 0.5s, transform 0.7s cubic-bezier(.7,-0.4,.3,1.4);
}
.main-nav ul li a.package-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.5s, transform 0.7s cubic-bezier(.7,-0.4,.3,1.4);
}

/* Dust z-index fix */
#van-dust {
  z-index: 11;
}
/* Van Dust Effect */
#van-dust {
  position: absolute;
  right: -40px;
  bottom: 0;
  width: 60px;
  height: 32px;
  background: radial-gradient(ellipse at 60% 80%, #e3f0fc 60%, #b3dafe 90%, transparent 100%);
  opacity: 0;
  filter: blur(6px) brightness(1.2);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.5s, transform 1.7s cubic-bezier(.7,-0.4,.3,1.4);
  transform: translateX(0) scaleX(1) scaleY(1);
}
#van-dust.dust-animate {
  opacity: 0.7;
  transform: translateX(-80px) scaleX(1.7) scaleY(1.2);
  transition: opacity 0.7s, transform 1.7s cubic-bezier(.7,-0.4,.3,1.4);
}
/* Header Logo Animation: Van speeds in from right */
#header-logo {
  position: relative;
  left: 100vw;
  opacity: 1;
  transition: left 2.2s cubic-bezier(.7,-0.4,.3,1.4);
  will-change: left;
  z-index: 10;
}
#header-logo.van-animate {
  left: 0;
  transition: left 2.2s cubic-bezier(.7,-0.4,.3,1.4);
}
#burger-menu {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.7,-0.4,.3,1.4);
}
#burger-menu.burger-fadein {
  opacity: 1;
  transition: opacity 0.7s cubic-bezier(.7,-0.4,.3,1.4);
}
/* Footer accent background and text style */
.footer-bg-accent {
  position: absolute;
  bottom: -30px;
  left: -60px;
  width: 180px;
  height: 80px;
  background: linear-gradient(120deg,#fff 10%,#b3dafe 60%,#42a5f5 100%);
  opacity: 0.22;
  filter: blur(12px) saturate(1.5);
  border-radius: 50%;
  z-index: 0;
}
.footer-md {
  font-weight: 600;
  color: #1565c0;
  text-shadow: 0 2px 12px #b3dafe, 0 1.5px 0 #fff;
}
/* Override for homepage slider inside card */
.jazz-in-card {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  transform: none !important;
  border-radius: 1em;
  background: none;
}
.jazz-in-card .jazz-content {
  width: 100% !important;
  max-width: 100% !important;
  padding: 2.5em 2.5em !important;
  box-sizing: border-box;
}
/* Jazzed up slideshow styles */
.jazz-slide {
  background: linear-gradient(120deg, #e3f0fc 0%, #fff 60%, #b3dafe 100%);
  border-radius: 32px;
  box-shadow: 0 8px 48px 0 rgba(33,150,243,0.18), 0 2px 16px 0 rgba(13,71,161,0.13);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}
.jazz-border {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  pointer-events: none;
  z-index: 2;
  border: 4px solid transparent;
  background: linear-gradient(120deg, #fff 0%, #42a5f5 40%, #ffb300 60%, #1565c0 100%) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: jazzBorderAnim 2.5s linear infinite alternate;
}
@keyframes jazzBorderAnim {
  0% { filter: blur(0px) brightness(1); }
  100% { filter: blur(2.5px) brightness(1.15); }
}
.jazz-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100%;
  gap: 2.5em;
  position: relative;
  z-index: 3;
}
.jazz-img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 24px #42a5f5cc;
  margin-left: 2em;
}
.jazz-text {
  flex: 1 1 400px;
  text-align: left;
  padding: 0 2em 0 0;
}
.jazz-text h2 {
  color: #1565c0;
  font-size: 2.2rem;
  margin-bottom: 0.7em;
  text-shadow: 0 2px 12px #b3dafe, 0 1.5px 0 #fff;
  font-family: 'Exo 2', 'Inter', sans-serif;
}
.jazz-text p {
  color: #23262b;
  font-size: 1.18rem;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .jazz-content { flex-direction: column; gap: 1.2em; }
  .jazz-img { width: 90vw; height: 180px; margin-left: 0; }
  .jazz-text { padding: 0 1em; text-align: center; }
}
/* --- All41 Modern Redesign: 2025 --- */
:root {
  --blue: #1565c0;
  --blue-light: #e3f0fc;
  --blue-mid: #b3dafe;
  --blue-dark: #0d47a1;
  --gold: #ffb300;
  --white: #fff;
  --grey-bg: #fafdff;
  --text: #23262b;
  --text-muted: #6b7a90;
  --radius: 22px;
  --shadow: 0 8px 32px rgba(21,101,192,0.13), 0 1.5px 8px rgba(13,71,161,0.10);
  --shadow-3d: 0 12px 36px 0 rgba(21,101,192,0.18), 0 2px 16px 0 rgba(13,71,161,0.13);
  --shadow-glow: 0 0 32px 8px #42a5f5cc;
  --max-width: 1100px;
  --font-base: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Exo 2', var(--font-base);
  --transition-snappy: cubic-bezier(.7,-0.4,.3,1.4) 0.7s;
  --transition-hero: cubic-bezier(.8,-0.2,.2,1.2) 1.2s;
}

html { box-sizing: border-box; scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: inherit; }

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 1.08rem;
  line-height: 1.7;
  background: url('/assets/images/background.png') left top/cover no-repeat, linear-gradient(120deg, #e3f0fc99 0%, #fff9 60%, #b3dafe99 100%) fixed, var(--grey-bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--blue-dark); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  background: linear-gradient(100deg, var(--blue-light) 0%, var(--blue-mid) 60%, var(--blue) 100%);
  box-shadow: 0 8px 32px 0 #42a5f544, 0 1.5px 0 #fff;
  border-bottom: 3.5px solid var(--blue-mid);
  position:sticky; top:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding: 1.2rem 0.5rem;
}
.logo img {
  height: 44px;
  filter: drop-shadow(0 2px 12px #42a5f5cc) drop-shadow(0 0 2px #fff);
}
.main-nav ul {
  display: flex;
  gap: 1.5em;
  background: linear-gradient(90deg, #fff 0%, var(--blue-mid) 100%);
  border-radius: 16px;
  box-shadow: 0 2px 12px #42a5f522;
  padding: 0.2em 1.2em;
  list-style: none;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-dark);
  padding: 0.5em 1.2em;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a[aria-current="page"], .main-nav a:hover {
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: #fff;
  box-shadow: 0 2px 12px #42a5f5cc;
}

.hero {
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: #fff;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero .hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  padding: 3.5rem 2rem 2.5rem 2rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.7rem;
  color: #fff;
  margin-bottom: 0.5em;
  text-shadow: 0 8px 32px var(--blue),0 1.5px 0 #fff;
  letter-spacing: 1px;
}
.hero p {
  font-size: 1.25rem;
  color: var(--blue-light);
  text-shadow: 0 2px 12px var(--blue);
}
.hero .explosive-accent {
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #fff 0%, var(--blue) 40%, var(--gold) 60%, var(--blue-dark) 100%);
  box-shadow: 0 0 18px 4px #42a5f5cc, 0 0 8px 2px #ffb30099;
  border-radius: 8px;
  margin: 1.2em 0 1.7em 0;
  animation: accentExplode 2.2s cubic-bezier(.4,2,.6,1) infinite alternate;
}
@keyframes accentExplode {
  0% { filter: brightness(1) blur(0px); }
  60% { filter: brightness(1.25) blur(2px); }
  100% { filter: brightness(1) blur(0px); }
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  justify-content: center;
  margin: 2.5rem 0 0 0;
}
.card {
  background: linear-gradient(120deg, #fafdff 0%, var(--blue-light) 40%, var(--blue-mid) 80%, #fff 100%);
  border-radius: var(--radius);
  box-shadow: 0 4px 32px 0 rgba(33,150,243,0.16), 0 0.5px 0 #fff, 0 0 0 2.5px #b3dafe55 inset, 0 0 24px 4px #42a5f5cc inset;
  padding: 2.4rem 2rem 2.4rem 2rem;
  min-width: 260px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 2.5px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  transition: box-shadow 0.33s cubic-bezier(.4,2,.6,1), transform 0.33s cubic-bezier(.4,2,.6,1), background 0.33s cubic-bezier(.4,2,.6,1);
}
.card::before {
  content: '';
  position: absolute;
  top: -30px; left: -30px; width: 120%; height: 120%;
  background: linear-gradient(120deg, #fff 10%, var(--blue-mid) 40%, var(--blue) 70%, var(--blue-light) 100%);
  opacity: 0.13;
  filter: blur(22px) saturate(2.2);
  z-index: 0;
  pointer-events: none;
  border-radius: 30px;
  animation: shimmer 3.2s linear infinite;
}
.card::after {
  content: '';
  position: absolute;
  bottom: 18px; right: 24px; width: 110px; height: 18px;
  background: linear-gradient(90deg, #fff 0%, var(--blue-mid) 60%, var(--blue) 100%);
  opacity: 0.22;
  filter: blur(8px);
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
  animation: shimmer 2.8s linear infinite reverse;
}
@keyframes shimmer {
  0% { opacity: 0.13; filter: blur(22px) saturate(2.2); }
  50% { opacity: 0.22; filter: blur(16px) saturate(2.8); }
  100% { opacity: 0.13; filter: blur(22px) saturate(2.2); }
}
.card h2 {
  color: var(--blue);
  text-shadow: 0 2px 12px var(--blue-mid), 0 1.5px 0 #fff;
  font-weight: 800;
  letter-spacing: 0.7px;
  font-size: 1.45rem;
  margin-top: 0;
  margin-bottom: 0.7em;
  font-family: var(--font-display);
}
.card ul {
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--text);
  font-size: 1.13rem;
  font-family: var(--font-base);
}
.card li {
  margin-bottom: 0.5em;
}
.site-footer {
  background: linear-gradient(100deg, var(--blue-light) 0%, var(--blue-mid) 60%, var(--blue) 100%);
  box-shadow: 0 -8px 32px 0 #42a5f544, 0 -1.5px 0 #fff;
  border-top: 3.5px solid var(--blue-mid);
  position:relative; overflow:hidden;
  padding: 2.5rem 0 1.2rem;
  margin-top: 3rem;
  font-size: 0.97rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-logo {
  height: 32px;
  width: auto;
  display: inline-block;
  margin-bottom: 0.7em;
  filter: drop-shadow(0 2px 12px #42a5f5cc) drop-shadow(0 0 2px #fff);
}
.legal-line {
  text-align: center;
  padding-top: 1.2rem;
  color: var(--blue);
  font-size: 0.92rem;
  text-shadow: 0 2px 12px var(--blue-mid),0 1.5px 0 #fff;
}
@media (max-width: 900px) {
  .card-list, .footer-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .hero .hero-content {
    padding: 1.5rem 1rem;
  }
}
