@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap');

:root {
  --brand-yellow: #ffcc00;
  --bg-default: #f6f7f8;
  --text: #0f1720;
  --muted: #6b7280;

  --tint-green: #e8f5ee;
  --tint-blue: #e8f0f9;
  --tint-cream: #fdf7e8;
  --tint-lavender: #f5f0fa;
  --tint-gray: #f3f4f6;

  --card-white: #ffffff;
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: 1200px;
  --ease: cubic-bezier(.2,.9,.3,1);
}

/* reset */
* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--text);
  background: var(--bg-default);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color .6s ease;
}

/* Panels container */
.panels-container {
  display: flex;
  gap: 30px; /* increased gap for better spacing */
  align-items: center;
  justify-content: flex-start;
  max-width: var(--container);
  width: 100%;
  position: relative;
}

/* Base styling for all small panels */
.small-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px) saturate(140%);
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(14, 20, 26, 0.06);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  /* No transition on transform/opacity — JS drives them scroll-linked.
     Keep transition only for hover lift when at top (progress=0). */
  transition: box-shadow 0.2s ease, padding 0.35s cubic-bezier(.2,.9,.3,1);
  will-change: transform, opacity;
}

/* Hover lift — only visible when not collapsed (progress ~0) */
.small-panel:hover {
  box-shadow: 0 10px 25px rgba(14, 20, 26, 0.15);
}

/* Active pill: glowing yellow ring */
.small-panel.nav-active {
  background: rgba(255, 204, 0, 0.15);
  box-shadow: 0 4px 18px rgba(255, 204, 0, 0.22), 0 6px 18px rgba(14,20,26,0.06);
  transition: box-shadow 0.2s ease, padding 0.35s cubic-bezier(.2,.9,.3,1), background 0.3s ease;
}
.small-panel.nav-active a {
  color: #5a3e00;
  font-weight: 800;
}
/* Dot underline on active */
.small-panel.nav-active::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--brand-yellow);
  animation: activeDot 0.35s cubic-bezier(.2,.9,.3,1) both;
}
@keyframes activeDot {
  from { width: 0; opacity: 0; }
  to   { width: 18px; opacity: 1; }
}


.small-panel:nth-child(1){
  left: 20px;
}
.small-panel:nth-child(2){
  left:120px;
}
.small-panel:nth-child(3){
  left:220px;
}

.small-panel:nth-child(4){
  left: 320px;
}
.small-panel:nth-child(5){
  left:400px;
}

.logo-panel {
  position: absolute;
  top: 150px;
  left: 0;
  transform: translateX(50px); /* keep initial horizontal offset */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: auto;
  max-width: 500px;
  color: var(--brand-yellow);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 3.8rem;
  cursor: default;
  z-index: 1200;
  pointer-events: none;
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

 
/* Style links inside panels */
.small-panel a {
  position: relative;
  text-decoration: none;
  color: inherit;
  padding: 6px 12px;
  display: block;
  font-weight: 700;
}

/* Special style for Subscribe button panel */
.cta-panel {
  background: var(--brand-yellow);
  color: #081018;
}
.cta-panel a {
  color: #081018;
}

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 18px;
  z-index: 1200;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px) saturate(140%);
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(14, 20, 26, 0.06);

  /* Slide + fade entrance */
  animation: headerEntrance 0.65s cubic-bezier(.2,.9,.3,1) both;

  /* Smooth compacting transition */
  transition:
    padding 0.4s cubic-bezier(.2,.9,.3,1),
    top 0.4s cubic-bezier(.2,.9,.3,1),
    box-shadow 0.4s ease,
    background 0.4s ease;
}

@keyframes headerEntrance {
  0%   { opacity: 0; transform: translateY(-28px) scale(0.97); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Compact state when scrolled */
.header.scrolled {
  top: 10px;
  padding: 8px 16px;
  box-shadow: 0 8px 28px rgba(14, 20, 26, 0.11);
  background: rgba(255, 255, 255, 0.88);
}
.header.scrolled .small-panel {
  padding: 7px 14px;
  font-size: 0.92rem;
  transition: padding 0.4s cubic-bezier(.2,.9,.3,1), font-size 0.4s ease;
}
.header.scrolled .panels-container {
  gap: 18px;
  transition: gap 0.4s cubic-bezier(.2,.9,.3,1);
}

/* (active pill styles are defined with .small-panel above) */

/* Logo font updated to Quicksand */
.logo {
  font-family: "Quicksand", sans-serif;
  font-weight: 800;
  color: var(--brand-yellow);
  letter-spacing: 0.06em;
  font-size: 1.05rem;
}

/* Nav styling */
.nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 600;
}
.nav a:hover {
  background: rgba(14, 20, 26, 0.04);
}
.cta {
  background: var(--brand-yellow);
  color: #081018;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 700;
}

/* Hide horizontal panels on mobile */
@media (max-width: 768px) {
  .panels-container {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .mobile-menu {
    display: none;
  }
}

/* Additional responsive styles omitted for brevity */

/* Keep the rest of your CSS as is */


/* Hide horizontal panels on mobile */
@media (max-width: 768px) {
  .panels-container {
    display: none;
  }
  
  /* Ensure hamburger button is visible on mobile */
  .hamburger {
    display: block; /* or flex, depending on your layout */
  }

  /* Show the mobile menu by default or toggle it via JS */
  .mobile-menu {
    display: none; /* initially hidden */
  }
}

/* ===== Mobile Menu ===== */
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger {
    display: block;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
  }
}



.mobile-menu > {
  display: none; /* hidden by default */
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  width: 100%;
  padding: 10px 12px;
  box-sizing: border-box;
  text-decoration: none;
  color: #333;
  border-radius: 50px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 40px;
}


/* CTA button inside mobile menu */
.mobile-menu .cta {
  background: var(--brand-yellow);
  color: #081018;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255, 204, 0, 0.1);
}




@media (min-width: 769px) {
  .desktop-nav { display: flex; gap: 16px; }
  .mobile-menu { display: none !important; }
  .hamburger { display: none; }
}
@media (max-width: 768px) {
  .mobile-menu .small-panel {
    position: static !important;
    left: auto !important;
    margin-left: 0 !important;
    width: 100%;
    border-radius: 50px;
    box-shadow: none;
    margin-bottom: 8px;
  }
}


/* Hero */
.hero{
  padding:84px 0 48px;
  display:grid;
  grid-template-columns: 1fr 520px;
  gap:40px;
  align-items:center;
  border-radius:22px;
}
.hero-left h1{
  margin:0 0 14px;
  font-family:"Manrope",sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height:1.02;
  color:var(--text);
}
.kicker{display:inline-block;color:var(--muted);font-weight:600;margin-bottom:12px}
.lead{color:var(--muted);max-width:56ch;margin-bottom:20px;font-size:1.05rem}

/* Buttons */
.actions{display:flex;gap:12px;align-items:center}
.btn{display:inline-flex;align-items:center;gap:10px;padding:12px 18px;border-radius:12px;text-decoration:none;font-weight:700;cursor:pointer}
.btn-ghost{background:transparent;border:1px solid rgba(14,20,26,0.06);color:var(--text)}
.btn-primary{background:linear-gradient(90deg,var(--brand-yellow),#ffd84d);color:#081018;box-shadow:0 10px 30px rgba(255,204,0,0.07)}

/* floating card */
.floating-card{
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(14,20,26,0.06);
  background:linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.95));
  padding:18px
}

/* Panels / Features - floating effect */
.panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 26px;
}
.panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(14, 20, 26, 0.08);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

/* Default hover effect for panels (last 4 and any non-interactive) */
.panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(14, 20, 26, 0.12);
}

/* Pill styling */
.panel .pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(14, 20, 26, 0.04);
  font-weight: 700;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

/* Services grid - floating effect */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:18px;
  margin-top:18px
}
.service-card{
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding:20px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(14,20,26,0.08);
  transition:transform .22s var(--ease), box-shadow .22s var(--ease);
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 30px rgba(14,20,26,0.12);
}

/* CTA Banner */
.cta-banner{
  margin:48px 0;
  padding:26px;
  border-radius:12px;
  background:linear-gradient(90deg, rgba(76,175,80,0.12), rgba(74,144,226,0.12));
  display:flex;
  align-items:center;
  justify-content:space-between
}
.cta-banner h2{margin:0;font-family:"Manrope"}

/* Forms - floating effect */
.form-card{
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding:24px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(14,20,26,0.08);
  max-width:720px;
  margin:0 auto
}
.input, textarea{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid rgba(14,20,26,0.06);
  margin-bottom:12px;
  font-size:1rem
}

/* Footer */
footer{
  margin-top:60px;
  padding:28px 20px;
  text-align:center;
  color:var(--muted)
}

/* Section tints */
.section { min-height:100vh; display:flex; align-items:center; padding:84px 20px; transition: background-color .6s ease; }
.section--hero { background: linear-gradient(180deg, var(--tint-green), rgba(255,255,255,0.0)); }
.section--about { background: linear-gradient(180deg, var(--tint-blue), rgba(255,255,255,0.0)); }
.section--services { background: linear-gradient(180deg, var(--tint-cream), rgba(255,255,255,0.0)); }
.section--subscribe { background: linear-gradient(180deg, var(--tint-lavender), rgba(255,255,255,0.0)); }
.section--contact { background: linear-gradient(180deg, var(--tint-gray), rgba(255,255,255,0.0)); }

/* Responsive */
@media (max-width:1024px){
  .hero{grid-template-columns:1fr}
  .floating-card{display:none}
  .nav{display:none}
  .hamburger{display:block}
}
@media (max-width:720px){
  .hero-left h1{font-size:1.8rem}
  .panels{grid-template-columns:1fr}
  .services-grid{grid-template-columns:1fr}
  .cta-banner{flex-direction:column;align-items:flex-start;gap:12px}
}

/* =============================================
   ANIMATIONS
   ============================================= */

/* --- Keyframes --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(255,204,0,0.35); }
  70%  { box-shadow: 0 0 0 14px rgba(255,204,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,204,0,0); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes waveIn {
  0%   { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 0% 0 0); }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(255,204,0,0.15); }
  50%       { border-color: rgba(255,204,0,0.5); }
}
@keyframes counterUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Page load fade --- */
body {
  animation: fadeIn 0.45s ease both;
}

/* --- Hero entrance --- */
.kicker {
  animation: slideInLeft 0.6s 0.1s ease both;
}
.hero-left h1 {
  animation: fadeUp 0.7s 0.2s ease both;
}
.lead {
  animation: fadeUp 0.7s 0.35s ease both;
}
.actions {
  animation: fadeUp 0.7s 0.5s ease both;
}

/* --- Hero panels stagger --- */
.panels .panel:nth-child(1) { animation: fadeUp 0.6s 0.55s ease both; }
.panels .panel:nth-child(2) { animation: fadeUp 0.6s 0.7s  ease both; }
.panels .panel:nth-child(3) { animation: fadeUp 0.6s 0.85s ease both; }

/* --- Floating card --- */
.floating-card {
  animation: scaleIn 0.7s 0.4s ease both, float 5s 1.2s ease-in-out infinite;
}

/* --- Scroll-reveal base (JS adds .visible) --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(.2,.9,.3,1), transform 0.65s cubic-bezier(.2,.9,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s cubic-bezier(.2,.9,.3,1), transform 0.65s cubic-bezier(.2,.9,.3,1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s cubic-bezier(.2,.9,.3,1), transform 0.65s cubic-bezier(.2,.9,.3,1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.6s cubic-bezier(.2,.9,.3,1), transform 0.6s cubic-bezier(.2,.9,.3,1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for grid children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }

/* --- Enhanced service card --- */
.service-card {
  border: 1px solid rgba(14,20,26,0.05);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s ease;
  overflow: hidden;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,204,0,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .28s ease;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 22px 44px rgba(14,20,26,0.13);
  border-color: rgba(255,204,0,0.25);
}

/* --- Enhanced panel hover --- */
.panel {
  border: 1px solid rgba(14,20,26,0.04);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s ease;
}
.panel:not(.interactive):hover {
  border-color: rgba(255,204,0,0.2);
}

/* --- Button animations --- */
.btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.btn:hover::after { transform: translateX(0); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,204,0,0.3);
  filter: brightness(1.05);
}
.btn-primary {
  animation: pulse-ring 2.8s 2s ease infinite;
}
.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(14,20,26,0.08);
}

/* --- Input focus glow --- */
.input, textarea {
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(14,20,26,0.1);
}
.input:focus, textarea:focus {
  outline: none;
  border-color: rgba(255,204,0,0.6);
  box-shadow: 0 0 0 3px rgba(255,204,0,0.12);
}

/* --- Form card shimmer on hover --- */
.form-card {
  transition: box-shadow 0.3s ease;
}
.form-card:focus-within {
  box-shadow: 0 12px 36px rgba(14,20,26,0.1), 0 0 0 2px rgba(255,204,0,0.15);
}

/* --- Section heading animated underline --- */
h1, h2, h3 {
  position: relative;
}
.section h1::after,
.section h2::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--brand-yellow), #ffd84d);
  border-radius: 2px;
  margin-top: 6px;
  transition: width 0.6s cubic-bezier(.2,.9,.3,1);
}
.section h1.visible::after,
.section h2.visible::after {
  width: 56px;
}

/* --- Nav panel pop on page load — stagger after header slides in --- */
.small-panel {
  animation: navPillIn 0.5s cubic-bezier(.2,.9,.3,1) both;
}
.panels-container .small-panel:nth-child(1) { animation-delay: 0.30s; }
.panels-container .small-panel:nth-child(2) { animation-delay: 0.40s; }
.panels-container .small-panel:nth-child(3) { animation-delay: 0.50s; }
.panels-container .small-panel:nth-child(4) { animation-delay: 0.60s; }
.panels-container .small-panel:nth-child(5) { animation-delay: 0.70s; }

@keyframes navPillIn {
  0%   { opacity: 0; transform: translateY(-14px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Hamburger animation --- */
.hamburger {
  transition: transform 0.2s ease;
}
.hamburger:hover { transform: scale(1.15) rotate(10deg); }

/* --- Mobile menu slide down --- */
.mobile-menu {
  transform-origin: top center;
  transition: transform 0.3s cubic-bezier(.2,.9,.3,1), opacity 0.3s ease;
  transform: scaleY(0.92);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}

/* --- Footer fade --- */
footer {
  animation: fadeIn 0.5s 0.6s ease both;
}

/* --- Decorative animated background blob (behind sections) --- */
.section {
  overflow: hidden;
}
.section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,204,0,0.06) 0%, transparent 70%);
  pointer-events: none;
  right: -120px;
  bottom: -80px;
  animation: float 8s ease-in-out infinite;
}
.section {
  position: relative;
}

/* --- CTA banner glow --- */
.cta-banner {
  animation: borderGlow 3s ease infinite;
  border: 1px solid rgba(255,204,0,0.15);
}

/* --- Pill badge bounce --- */
.pill {
  transition: transform 0.2s ease, background 0.2s ease;
}
.panel:hover .pill {
  transform: scale(1.06);
  background: rgba(255,204,0,0.12);
}

/* --- section-white card lift --- */
.section-white {
  transition: box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(14,20,26,0.05);
}
.section-white:hover {
  box-shadow: 0 16px 40px rgba(14,20,26,0.09);
}
/* ===== FINAL CLEAN MOBILE FIX ===== */

/* Default (desktop) */
.hamburger {
  display: none;
}

.mobile-menu {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {

  .panels-container {
    display: none !important;
  }

  .hamburger {
    display: block;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    order: -1;
  }

  .mobile-menu {
    position: absolute;
    top: 70px;
    left: 10px;
    width: 220px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);

    display: none;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-menu .small-panel {
    position: static !important;
    left: auto !important;
    transform: none !important;
    width: 100%;
    box-shadow: none;
  }
}

/* Desktop safety */
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}
/* ===== FORCE MOBILE MENU VISIBILITY FIX ===== */

@media (max-width: 768px) {

  .mobile-menu {
    display: none;
  }

  .mobile-menu.active {
    display: flex !important;
    flex-direction: column;
  }

}