/* ============================================================
   global.css — Foundation styles for ALL pages
   Design: Premium industrial logistics — bold, image-driven,
   authoritative. Inspired by Maersk, DHL, XPO Logistics.
   Fonts: Bebas Neue (display) + DM Sans (body)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  /* Core brand colors */
  --navy:        #0c1a2e;
  --navy-mid:    #112240;
  --navy-light:  #1a3458;
  --orange:      #e85d04;
  --orange-dk:   #c44d00;
  --orange-lt:   #ff7a2f;

  /* Neutral palette */
  --white:       #ffffff;
  --off-white:   #f8f6f3;
  --gray-50:     #f2f0ed;
  --gray-100:    #e8e4df;
  --gray-300:    #b8b2aa;
  --gray-500:    #807870;
  --gray-700:    #4a4540;
  --black:       #0a0e14;

  /* Typography */
  --font-display: 'Bebas Neue', 'Oswald', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Layout */
  --max-width: 1240px;
  --nav-height: 76px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.12), 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.18), 0 24px 64px rgba(0,0,0,0.12);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.24), 0 32px 80px rgba(0,0,0,0.16);

  /* Border radius */
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 16px;

  /* Image overlays */
  --overlay-dark:  rgba(12, 26, 46, 0.75);
  --overlay-mid:   rgba(12, 26, 46, 0.55);
  --overlay-light: rgba(12, 26, 46, 0.35);
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--gray-700);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400; /* Bebas Neue is inherently bold */
  letter-spacing: 1px;
  line-height: 1.05;
  color: var(--navy);
}

h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h5 { font-size: 1rem; }

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-500);
}

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section-pad     { padding: 100px 0; }
.section-pad-sm  { padding: 64px 0; }
.section-pad-lg  { padding: 128px 0; }

/* Eyebrow label above headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

/* Decorative line before eyebrow text */
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background-color: var(--orange);
  flex-shrink: 0;
}

/* Orange accent underline under headings */
.accent-line {
  width: 64px;
  height: 4px;
  background: linear-gradient(to right, var(--orange), var(--orange-lt));
  border-radius: 2px;
  margin: 20px 0 28px;
}

.accent-line.center { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}

/* Arrow icon inside button */
.btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.btn:hover svg { transform: translateX(3px); }

/* Solid orange */
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  animation: ctaPulse 2s ease-in-out infinite;
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,93,4,0.35);
  animation: none;
}

/* Outline white (for dark backgrounds) */
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* Outline dark (for light backgrounds) */
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.navbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.navbar__logo-mark {
  width: 42px;
  height: 42px;
  background: var(--orange);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar__logo-mark svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.navbar__logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}

.navbar__logo-name span { color: var(--orange); }

/* Nav links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar__links a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.09);
}

/* Nav CTA */
.navbar__cta {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange);
  padding: 10px 24px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.navbar__cta:hover {
  background: var(--orange-dk);
  box-shadow: 0 4px 16px rgba(232,93,4,0.4);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}


/* Mobile menu */
.navbar__mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 2px solid var(--orange);
  box-shadow: var(--shadow-lg);
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--navy-mid);
  /* Animation — slides down on open */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-top-width: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease,
              padding 0.3s ease, border-top-width 0.3s ease;
}

.navbar__mobile-menu.open {
  max-height: 400px;
  opacity: 1;
  padding-top: 16px;
  padding-bottom: 24px;
  border-top-width: 2px;
}

.navbar__mobile-menu a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 14px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.navbar__mobile-menu a:last-child { border-bottom: none; }
.navbar__mobile-menu a:hover { color: var(--orange); }

/* ── PAGE HERO BANNER (inner pages) ── */
/* Background image set in each page's CSS */
.page-hero {
  position: relative;
  padding: 100px 0 80px;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Dark overlay on hero image */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 26, 46, 0.92) 0%,
    rgba(12, 26, 46, 0.70) 100%
  );
}

/* Orange bottom border */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--orange), var(--orange-lt));
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 580px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { opacity: 0.4; }

/* ── FOOTER ── */
footer {
  background-color: var(--black);
  color: var(--gray-300);
  margin-top: auto;
}

.footer__top {
  padding: 80px 0 56px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand column */
.footer__brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--white);
}

.footer__brand .logo-text span { color: var(--orange); }

.footer__brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 280px;
}

/* Orange divider under brand */
.footer__brand-line {
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 20px 0;
}

/* Nav columns */
.footer__col h6 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col ul li a {
  font-size: 0.9rem;
  color: var(--gray-500);
  transition: color 0.2s, padding-left 0.2s;
}

.footer__col ul li a:hover {
  color: var(--orange);
  padding-left: 4px;
}

/* Contact items */
.footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.footer__contact-row svg {
  width: 15px;
  height: 15px;
  fill: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Bottom bar */
.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--gray-700);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .navbar__links,
  .navbar__cta { display: none; }

  .navbar__hamburger { display: flex; }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 0 40px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .section-pad    { padding: 72px 0; }
  .section-pad-lg { padding: 96px 0; }
}


/* ============================================================
   ANIMATIONS — Keyframes + Scroll Reveal System
   Used across all pages. Classes applied via JS (main.js).
   ============================================================ */

/* ── Keyframes ── */

/* Fade up — default reveal */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Fade in — simple opacity */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Slide in from left */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Slide in from right */
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Subtle scale up */
@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

/* Orange underline grow — accent-line */
@keyframes lineGrow {
  from { width: 0; }
  to   { width: 64px; }
}

/* Gentle float — WhatsApp button */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* Pulse ring — WhatsApp */
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ── Scroll Reveal Base States ──
   Elements start invisible, JS adds .revealed to trigger animation
── */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Triggered state — JS adds this */
.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-stagger > *.revealed {
  opacity: 1;
  transform: none;
}

/* ── Hero entrance (CSS only — fires on page load) ── */
.hero__content .eyebrow {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.1s;
}

.hero__title {
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.25s;
}

.hero__subtitle {
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.4s;
}

.hero__actions {
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.55s;
}

.hero__stats-panel {
  animation: slideInRight 0.9s ease both;
  animation-delay: 0.4s;
}

/* ── Page hero (inner pages) entrance ── */
.page-hero__content .eyebrow {
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.1s;
}

.page-hero__content h1 {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.2s;
}

.page-hero__content p {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.35s;
}

/* ── Accent line animated width ── */
.accent-line {
  animation: none; /* default off — only trigger after reveal */
  width: 0;
  transition: width 0.6s ease 0.2s;
}

.revealed + .accent-line,
.reveal.revealed ~ .accent-line,
section .accent-line {
  width: 64px;
}

/* Override for sections that are always visible */
.hero .accent-line,
.page-hero .accent-line {
  width: 64px;
  animation: none;
}

/* ── Navbar scrolled state ── */
.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.45);
}

/* ── Service cards — image zoom on hover (already in index.css,
   adding a subtle card lift) ── */
.svc-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ── Value cards lift (about page) ── */
.val-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s;
}

/* ── Info cards (contact page) ── */
.info-card {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.info-card:hover {
  transform: translateX(4px);
}

/* ── Footer links underline slide ── */
.footer__col ul li a {
  position: relative;
}

.footer__col ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.25s ease;
}

.footer__col ul li a:hover::after {
  width: 100%;
}

/* ── Btn micro-interaction — already have hover,
   adding active press feel ── */
.btn:active {
  transform: translateY(1px) scale(0.98);
}

/* ── Reduce motion — respect user preference ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal, .reveal-left, .reveal-right,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}



/* ============================================================
   WHATSAPP POPUP — appears after 20 seconds
   ============================================================ */
/*  */
.wa-popup-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  backdrop-filter: blur(3px);
}


.wa-popup-overlay.visible {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

/* Popup card */
.wa-popup {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 36px 32px;
  max-width: 420px;
  width: calc(100% - 40px);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(32px) scale(0.95);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              opacity 0.5s ease;
}

.wa-popup-overlay.visible .wa-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Green WhatsApp icon circle */
.wa-popup__icon {
  width: 72px;
  height: 72px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  animation: float 3s ease-in-out infinite;
}

.wa-popup__icon svg {
  width: 38px;
  height: 38px;
  fill: var(--white);
}

.wa-popup h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.wa-popup p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Chat now button */
.wa-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: #25d366;
  color: var(--white);
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  animation: btnNudge 1.5s ease-in-out infinite;
}

.wa-popup__btn:hover {
  animation: none;
  background: #1ebe5d;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transform: translateY(-1px);
}

.wa-popup__btn svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

/* Maybe later link */
.wa-popup__dismiss {
  display: block;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--gray-300);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: var(--font-body);
  text-decoration: underline;
}

.wa-popup__dismiss:hover { color: var(--gray-500); }

/* Close X button */
.wa-popup__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--gray-300);
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
  font-family: var(--font-body);
}

.wa-popup__close:hover { color: var(--navy); }

@media (max-width: 480px) {
  .wa-popup { padding: 32px 24px 24px; }
  .wa-popup h3 { font-size: 1.5rem; }
}

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 9999;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  animation: float 3.5s ease-in-out infinite,
             pulseRing 2.5s ease-out infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  animation: none;
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}

@keyframes btnNudge {
  0%, 60%, 100% { transform: translateY(0); }
  30%            { transform: translateY(-6px); }
}

@keyframes ctaPulse {
  0%, 100% { 
    box-shadow: 0 6px 20px rgba(232,93,4,0.35);
    transform: translateY(0);
  }
  50% { 
    box-shadow: 0 6px 32px rgba(232,93,4,0.65), 0 0 0 6px rgba(232,93,4,0.15);
    transform: translateY(-4px);
  }
}

