/* ==========================================================================
   OLIV AGENCY — MODERN HIGH-END REVAMP
   Animations, Ambient Lighting, Glassmorphism & Polished UI / Buttons
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Unica+One&display=swap');

:root {
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Unica One', var(--font-main);
  
  --bg-dark: #08040f;
  --bg-card: rgba(18, 11, 29, 0.7);
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(139, 92, 246, 0.4);
  
  --brand-purple: #7c3aed;
  --brand-purple-light: #a78bfa;
  --brand-indigo: #6366f1;
  --brand-cyan: #06b6d4;
  --brand-glow: rgba(124, 58, 237, 0.5);
}

/* Global Font & Smooth Scroll */
html {
  font-family: var(--font-main) !important;
  scroll-behavior: smooth !important;
  background-color: var(--bg-dark) !important;
}

body {
  font-family: var(--font-main) !important;
  background-color: var(--bg-dark) !important;
  color: #f3f1f6 !important;
  position: relative;
  overflow-x: hidden !important;
  min-height: 100vh;
}

/* Animated Ambient Glow Mesh in Background */
body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(140px);
  opacity: 0.28;
  will-change: transform;
}

body::before {
  top: -15vw;
  left: -15vw;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, #7c3aed 0%, #4c1d95 60%, transparent 80%);
  animation: floatOrbLeft 18s ease-in-out infinite alternate;
}

body::after {
  top: 25vh;
  right: -15vw;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, #06b6d4 0%, #6366f1 50%, transparent 80%);
  animation: floatOrbRight 22s ease-in-out infinite alternate;
}

@keyframes floatOrbLeft {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 80px) scale(1.1); }
  100% { transform: translate(-40px, 120px) scale(0.95); }
}

@keyframes floatOrbRight {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-80px, 60px) scale(1.15); }
  100% { transform: translate(40px, -60px) scale(0.9); }
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  background: rgba(8, 4, 15, 0.8) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom: 1px solid var(--border-glass) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  transition: all 0.3s ease;
}

.nav {
  height: 84px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.brand {
  font-family: var(--font-main) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 26px !important;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.03);
}

.brand img {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(167, 139, 250, 0.4) !important;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.4) !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.brand:hover img {
  transform: rotate(10deg);
  box-shadow: 0 0 25px rgba(124, 58, 237, 0.7) !important;
}

.brand-period {
  color: var(--brand-purple-light) !important;
}

.nav nav {
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
}

.nav nav a {
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: #c4b5d4 !important;
  position: relative !important;
  padding: 6px 0 !important;
  transition: color 0.25s ease !important;
}

.nav nav a::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, #a78bfa, #06b6d4) !important;
  border-radius: 2px !important;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav nav a:hover {
  color: #ffffff !important;
}

.nav nav a:hover::after,
.nav nav a[aria-current]::after {
  width: 100% !important;
}

.nav nav a[aria-current] {
  color: #ffffff !important;
}

/* ==========================================================================
   BUTTONS — COMPLETE OVERHAUL & BUG FIXES
   Fixes the awkward 24px gap, huge misaligned arrow, and rigid dimensions
   ========================================================================== */
.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important; /* Fixed: was 24px! */
  min-height: 48px !important;
  padding: 12px 24px !important;
  border-radius: 9999px !important; /* Modern pill shape */
  font-family: var(--font-main) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

/* Arrow inside buttons */
.btn span, 
.btn svg {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 15px !important; /* Fixed: was 20px giant */
  line-height: 1 !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn:hover span {
  transform: translate(3px, -3px) !important; /* Dynamic arrow lift */
}

.btn:active {
  transform: scale(0.97) !important;
}

/* Primary Button (Neon Gradient Glow) */
.btn.primary {
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.btn.primary:hover {
  background: linear-gradient(135deg, #8b5cf6 0%, #4f46e5 100%) !important;
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.65), 0 0 15px rgba(99, 102, 241, 0.4) !important;
  transform: translateY(-2px) !important;
}

/* Ghost Button (Glass & Subtle Border) */
.btn.ghost {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: #f3edf9 !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(167, 139, 250, 0.6) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(167, 139, 250, 0.2) !important;
  transform: translateY(-2px) !important;
}

/* Small Button (e.g. Nav CTA) */
.btn.small,
.nav-cta {
  min-height: 42px !important;
  padding: 10px 20px !important;
  font-size: 12px !important;
  gap: 8px !important;
  border-radius: 9999px !important;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(99, 102, 241, 0.25)) !important;
  border: 1px solid rgba(167, 139, 250, 0.4) !important;
  color: #ffffff !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #7c3aed, #6366f1) !important;
  border-color: #a78bfa !important;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.5) !important;
}

/* In Division worlds, ensure primary buttons don't turn into black text */
body[style] .btn.primary {
  background: linear-gradient(135deg, var(--accent, #7c3aed), var(--accent-light, #a78bfa)) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 25px color-mix(in srgb, var(--accent) 50%, transparent) !important;
}

body[style] .btn.primary:hover {
  filter: brightness(1.15) !important;
  transform: translateY(-2px) !important;
}

/* ==========================================================================
   HERO SECTION — HIGH-TECH & VIBRANT
   ========================================================================== */
.hero {
  padding-block: 70px 80px !important;
  display: grid !important;
  grid-template-columns: 1.25fr 1fr !important;
  gap: 50px !important;
  align-items: center !important;
}

.hero-copy h1 {
  font-family: var(--font-main) !important;
  font-size: clamp(48px, 5.5vw, 80px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.05 !important;
  color: #ffffff !important;
  margin-bottom: 24px !important;
}

.hero-copy h1 span {
  background: linear-gradient(135deg, #c49aff 0%, #818cf8 50%, #06b6d4 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
}

.hero-copy > p {
  font-size: 18px !important;
  line-height: 1.7 !important;
  color: #cec4dc !important;
  max-width: 540px !important;
  margin-bottom: 34px !important;
}

.hero-copy .eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 6px 14px !important;
  background: rgba(124, 58, 237, 0.15) !important;
  border: 1px solid rgba(167, 139, 250, 0.3) !important;
  border-radius: 9999px !important;
  color: #c4b5fd !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  margin-bottom: 24px !important;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.25) !important;
}

.hero-copy .eyebrow i {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #a78bfa !important;
  box-shadow: 0 0 8px #a78bfa !important;
  animation: pulseDot 2s infinite alternate !important;
}

@keyframes pulseDot {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 1; }
}

.hero .actions {
  display: flex !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  align-items: center !important;
}

.hero-note {
  margin-top: 36px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #9d8ea9 !important;
  font-size: 12px !important;
}

.mini-dots i {
  display: inline-block !important;
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  box-shadow: 0 0 8px currentColor !important;
}

/* Hero Art Card Revamp (Replaces flat lilac with deep luminous container) */
.hero-art {
  border-radius: 28px !important;
  background: radial-gradient(circle at 50% 30%, rgba(124, 58, 237, 0.35), rgba(16, 10, 28, 0.95)) !important;
  border: 1px solid rgba(167, 139, 250, 0.35) !important;
  box-shadow: 0 20px 60px -15px rgba(109, 40, 217, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
  aspect-ratio: 1/1 !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  animation: heroArtFloat 6s ease-in-out infinite alternate !important;
  transition: transform 0.5s ease, box-shadow 0.5s ease !important;
}

.hero-art:hover {
  box-shadow: 0 25px 70px -10px rgba(124, 58, 237, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

@keyframes heroArtFloat {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(0.6deg); }
}

.hero-art > img {
  width: 72% !important;
  height: 72% !important;
  object-fit: contain !important;
  mix-blend-mode: normal !important; /* Fixed: was multiply on pastel */
  position: relative !important;
  filter: drop-shadow(0 0 35px rgba(124, 58, 237, 0.75)) !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-art:hover > img {
  transform: scale(1.06) rotate(-2deg) !important;
}

.art-top, .art-bottom {
  position: absolute !important;
  left: 28px !important;
  right: 28px !important;
  display: flex !important;
  justify-content: space-between !important;
  z-index: 2 !important;
  color: #e2d3f5 !important;
}

.art-top {
  top: 24px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
}

.art-bottom {
  bottom: 24px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding-top: 14px !important;
  font-size: 12px !important;
  align-items: center !important;
}

.art-bottom span:last-child {
  font-size: 24px !important;
  color: #a78bfa !important;
}

/* ==========================================================================
   ECOSYSTEM DIVISION CARDS — 5 PILLARS
   ========================================================================== */
.division-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-top: 30px !important;
}

.division-card {
  background: var(--bg-card) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid var(--border-glass) !important;
  border-top: 3px solid var(--card-color) !important;
  border-radius: 20px !important;
  padding: 26px 20px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 380px !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.division-card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 120px !important;
  background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--card-color) 25%, transparent), transparent 70%) !important;
  pointer-events: none !important;
  opacity: 0.6 !important;
  transition: opacity 0.3s ease !important;
}

.division-card:hover {
  transform: translateY(-8px) scale(1.015) !important;
  border-color: var(--card-color) !important;
  box-shadow: 0 20px 50px -10px color-mix(in srgb, var(--card-color) 45%, transparent), 0 0 25px -5px var(--card-color) !important;
}

.division-card:hover::before {
  opacity: 1 !important;
}

.division-top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 24px !important;
}

.division-top img {
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  border: 2px solid color-mix(in srgb, var(--card-color) 50%, rgba(255, 255, 255, 0.2)) !important;
  box-shadow: 0 0 15px color-mix(in srgb, var(--card-color) 40%, transparent) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease !important;
}

.division-card:hover .division-top img {
  transform: scale(1.14) rotate(6deg) !important;
  box-shadow: 0 0 30px var(--card-color) !important;
}

.division-top .micro {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #7b6f89 !important;
  letter-spacing: 0.1em !important;
}

.division-card > .micro {
  font-size: 10px !important;
  font-weight: 700 !important;
  color: var(--card-light) !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
}

.division-card h3 {
  font-size: 26px !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  color: #ffffff !important;
  margin-bottom: 12px !important;
}

.division-card p {
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: #beb0cc !important;
  min-height: 42px !important;
  margin-bottom: 20px !important;
}

.division-foot {
  margin-top: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-block: 16px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: #d1c4dc !important;
  transition: color 0.25s ease !important;
}

.division-card:hover .division-foot {
  color: #ffffff !important;
}

.division-foot span {
  color: var(--card-light) !important;
  font-size: 18px !important;
  transition: transform 0.3s ease !important;
}

.division-card:hover .division-foot span {
  transform: translate(3px, -3px) !important;
}

/* ==========================================================================
   CONNECTION STRIP & STEPS
   ========================================================================== */
.connection-strip {
  background: rgba(18, 10, 31, 0.5) !important;
  border-block: 1px solid var(--border-glass) !important;
  backdrop-filter: blur(12px) !important;
}

.connection-steps > div {
  padding: 16px 20px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  transition: all 0.3s ease !important;
}

.connection-steps > div:hover {
  background: rgba(124, 58, 237, 0.12) !important;
  border-color: rgba(167, 139, 250, 0.3) !important;
  transform: translateY(-2px) !important;
}

.connection-steps b {
  color: #a78bfa !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

/* ==========================================================================
   PROJECT CARDS & GALLERY
   ========================================================================== */
.project-card {
  border-radius: 20px !important;
  overflow: hidden !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.project-card:hover {
  transform: translateY(-6px) !important;
}

.project-cover {
  border-radius: 20px !important;
  border: 1px solid var(--border-glass) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
  transition: box-shadow 0.4s ease, border-color 0.4s ease !important;
}

.project-card:hover .project-cover {
  border-color: rgba(167, 139, 250, 0.5) !important;
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3) !important;
}

/* ==========================================================================
   METRICS SECTION
   ========================================================================== */
.results {
  background: rgba(14, 9, 23, 0.7) !important;
  border-block: 1px solid var(--border-glass) !important;
}

.metrics strong {
  background: linear-gradient(135deg, #ffffff 30%, #c49aff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
}

.metrics strong span {
  color: #a78bfa !important;
  -webkit-text-fill-color: #a78bfa !important;
}

/* ==========================================================================
   CALL TO ACTION (CTA)
   ========================================================================== */
.cta {
  background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #4338ca 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 28px !important;
  box-shadow: 0 20px 70px -10px rgba(109, 40, 217, 0.6) !important;
  position: relative !important;
  overflow: hidden !important;
}

.cta::before {
  content: "" !important;
  position: absolute !important;
  top: -50% !important;
  right: -20% !important;
  width: 400px !important;
  height: 400px !important;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%) !important;
  pointer-events: none !important;
}

.cta h2 {
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}

/* In CTA, primary is crisp white */
.cta .primary {
  background: #ffffff !important;
  color: #3b0764 !important;
  border-color: #ffffff !important;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3) !important;
}

.cta .primary:hover {
  background: #f3e8ff !important;
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4) !important;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON WITH RADAR PULSE
   ========================================================================== */
#floating-whatsapp-btn {
  position: fixed !important;
  bottom: 28px !important;
  left: 28px !important;
  z-index: 99 !important;
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  background: #25D366 !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  animation: waRadarPulse 2.8s infinite !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease !important;
}

#floating-whatsapp-btn:hover {
  transform: scale(1.12) !important;
  background: #20ba59 !important;
}

#floating-whatsapp-btn:active {
  transform: scale(0.95) !important;
}

@keyframes waRadarPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65), 0 6px 20px rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0), 0 6px 20px rgba(37, 211, 102, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 6px 20px rgba(37, 211, 102, 0.4);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1100px) {
  .division-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .hero {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
  .hero-copy > p {
    margin-inline: auto !important;
  }
  .hero .actions {
    justify-content: center !important;
  }
  .hero-note {
    justify-content: center !important;
  }
  .hero-art {
    max-width: 480px !important;
    margin-inline: auto !important;
  }
}

@media (max-width: 768px) {
  .nav {
    height: 72px !important;
  }
  .division-grid {
    grid-template-columns: 1fr !important;
  }
  .hero {
    padding-block: 40px !important;
  }
  .hero-copy h1 {
    font-size: clamp(38px, 9vw, 54px) !important;
  }
  #floating-whatsapp-btn {
    bottom: 20px !important;
    left: 20px !important;
    width: 52px !important;
    height: 52px !important;
  }
  .olivia-launch {
    bottom: 20px !important;
    right: 20px !important;
  }
}
/* Scroll entrance animations */
.fade-up-element {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform;
}

.fade-up-element.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Button ripple */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  background-color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  width: 100px;
  height: 100px;
  margin-left: -50px;
  margin-top: -50px;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Scrolled Header */
.site-header.scrolled {
  height: 72px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.site-header.scrolled .nav {
  height: 72px !important;
}
