/* shared.css - COMPLETE & OPTIMIZED */
/* ============================================================
   LIVRAMENTO SHIPPING - GLOBAL SHARED STYLES
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Barlow+Condensed:wght@600;700;800&display=swap');

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

body {
  background: #f8f9fa;
  min-height: 100vh;
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
}
:root {
  --primary: #0a2a5c;
  --primary-light: #1a4a8a;
  --primary-dark: #051830;
  --primary-deep: rgba(0, 14, 48, 0.98);
  --accent: #1e7fcc;
  --accent-light: #4aabf0;
  --accent-orange: #f07820;
  --white: #ffffff;
  --light-gray: #f4f6f9;
  --mid-gray: #d0d8e4;
  --dark-gray: #6b7c93;
  --text: #1a2940;
  --text-light: #4a5568;
  --border: #dce4ef;
  --shadow: 0 4px 20px rgba(10, 42, 92, 0.1);
  --shadow-lg: 0 12px 48px rgba(10, 42, 92, 0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 80px;
  --font-main: 'Inter', sans-serif;
  --font-display: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }


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

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

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
/* === WAVE DIVIDER === */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
/* ========== CTA STRIP ========== */
.cta-strip {
  background-attachment: fixed;
  padding: 3rem 2rem;
  color: var(--white);
  position: relative;
  background-size: cover;
  background-position: center;
}
.cta-strip-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}
.cta-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
  flex-direction: column;
}
.cta-strip-inner h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.cta-strip-inner p {
  opacity: 0.85;
}
.cta-strip-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   NAVBAR - FIXED & STABLE
   ============================================================ */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(0, 26, 58, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 26, 58, 0.25);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav-logo-img {
  max-width: 180px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.05);
}

/* Desktop Navigation */
.nav-menu {
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  transition: color var(--transition);
  position: relative;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform var(--transition);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--white);
}

.nav-links .fa-chevron-down {
  font-size: 0.6rem;
  transition: transform var(--transition);
}

/* Dropdown Menu */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(0, 14, 48, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  list-style: none;
  min-width: 200px;
  padding: 0.5rem 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  display: block;
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.83rem;
  font-weight: 500;
  padding: 0.65rem 1.25rem;
  transition: background var(--transition), color var(--transition);
}

.dropdown li a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--accent);
}

.dropdown li a i {
  width: 16px;
  color: var(--accent);
  font-size: 0.75rem;
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px 0;
  z-index: 1101;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay - IMPROVED STABLE VERSION */
.mobile-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: linear-gradient(160deg, #041830 0%, #081e3c 40%, #0a2a5c 100%);
  z-index: 1099;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-overlay.open {
  transform: translateX(0);
}

/* Mobile Backdrop */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 10, 30, 0.7);
  z-index: 1098;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(4px);
}

.mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* Mobile Header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.mobile-nav-logo img {
  max-width: 140px;
  height: auto;
  filter: brightness(1.1);
}

.mobile-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-close:hover {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
}

/* Mobile Links */
.mobile-links {
  list-style: none;
  padding: 0.75rem 0;
  flex: 1;
}

.mobile-links > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-links > li:last-child {
  border-bottom: none;
}

.mobile-links > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-links > li > a:hover,
.mobile-links > li > a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-toggle-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  transition: all 0.25s ease;
}

.mobile-toggle-icon.rotated {
  transform: rotate(45deg);
  background: rgba(244, 163, 0, 0.2);
  border-color: rgba(244, 163, 0, 0.4);
  color: var(--accent);
}

.mobile-sub {
  display: none;
  list-style: none;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-sub.open {
  display: block;
}

.mobile-sub li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.75rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-sub li a:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-sub li a i {
  width: 18px;
  font-size: 0.78rem;
  color: var(--accent);
}

.mobile-nav-footer {
  padding: 1.25rem 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.mobile-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(244, 163, 0, 0.35);
}

/* ============================================================
   FOOTER
   ============================================================ */

#site-footer {
  background: rgba(0, 26, 58, 0.97);
  color: rgba(255, 255, 255, 0.75);
  position: relative;
}

.footer-wave {
  background: #f4f6f9;
  margin-bottom: 0;
}

.footer-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-logo-img {
  max-width: 160px;
  height: auto;
  filter: brightness(1.1);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.65rem;
  position: relative;
}

.footer-links-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.footer-links-col ul li:hover {
  color: rgba(255, 255, 255, 0.88);
}

.footer-links-col ul li i {
  color: var(--accent);
  font-size: 0.75rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-links-col ul li a {
  color: rgba(255, 255, 255, 0.58);
  transition: color var(--transition);
}

.footer-links-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.25rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */

#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(0, 87, 168, 0.4);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all var(--transition);
  z-index: 500;
}

#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

#scroll-top:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.from-left {
  transform: translateX(-32px);
}

.reveal.from-right {
  transform: translateX(32px);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

.reveal-group .reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal-group .reveal:nth-child(2) { transition-delay: 0.15s; }
.reveal-group .reveal:nth-child(3) { transition-delay: 0.25s; }
.reveal-group .reveal:nth-child(4) { transition-delay: 0.35s; }
.reveal-group .reveal:nth-child(5) { transition-delay: 0.45s; }
.reveal-group .reveal:nth-child(6) { transition-delay: 0.55s; }

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */

.section {
  padding: 6rem 2rem;
}

.section-sm {
  padding: 4rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.section-title span {
  color: var(--primary);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 1rem auto 0;
  line-height: 1.75;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1.75rem;
  border-radius: 4px;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 87, 168, 0.3);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}

.btn-accent:hover {
  background: #d08c00;
  border-color: #d08c00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 163, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.bg-light {
  background: var(--off-white);
}

.wave-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (max-width: 1024px) {
  .nav-menu {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
  }
  .nav-container {
    padding: 0 1.5rem;
  }
  .nav-logo-img {
    max-width: 160px;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  #navbar {
    height: 70px;
  }
  :root {
    --nav-height: 70px;
  }
  .nav-container {
    padding: 0 1rem;
  }
  .nav-logo-img {
    max-width: 140px;
  }
  .hamburger {
    width: 28px;
  }
  .hamburger span {
    height: 2px;
  }
  .section {
    padding: 4rem 1.25rem;
  }
  .mobile-overlay {
    width: min(300px, 85vw);
  }
  .mobile-nav-header {
    padding: 1rem 1.25rem;
  }
  .mobile-nav-logo img {
    max-width: 120px;
  }
  .mobile-close {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }
  .mobile-links > li > a {
    padding: 0.85rem 1.25rem;
    font-size: 0.8rem;
  }
  .mobile-sub li a {
    padding: 0.65rem 1.5rem;
    font-size: 0.78rem;
  }
  .mobile-nav-footer {
    padding: 1rem 1.25rem 1.5rem;
  }
}

@media (max-width: 640px) {
  #navbar {
    height: 65px;
  }
  :root {
    --nav-height: 65px;
  }
  .nav-container {
    padding: 0 0.75rem;
  }
  .nav-logo-img {
    max-width: 120px;
  }
  .hamburger {
    width: 26px;
  }
  .hamburger span {
    height: 1.5px;
  }
  .mobile-overlay {
    width: min(280px, 80vw);
  }
  .mobile-nav-header {
    padding: 0.9rem 1rem;
  }
  .mobile-nav-logo img {
    max-width: 100px;
  }
  .mobile-close {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
  .mobile-links > li > a {
    padding: 0.8rem 1rem;
    font-size: 0.78rem;
  }
  .mobile-toggle-icon {
    width: 24px;
    height: 24px;
    font-size: 0.6rem;
  }
  .mobile-sub li a {
    padding: 0.6rem 1.25rem;
    font-size: 0.76rem;
  }
  .mobile-nav-footer {
    padding: 0.9rem 1rem 1.25rem;
  }
  .mobile-cta {
    padding: 0.8rem 1.25rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  #navbar {
    height: 60px;
  }
  :root {
    --nav-height: 60px;
  }
  .nav-container {
    padding: 0 0.5rem;
  }
  .nav-logo-img {
    max-width: 100px;
  }
  .hamburger {
    width: 24px;
  }
  .mobile-overlay {
    width: min(260px, 75vw);
  }
  .mobile-nav-header {
    padding: 0.8rem 0.9rem;
  }
  .mobile-nav-logo img {
    max-width: 90px;
  }
  .mobile-close {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  .mobile-links > li > a {
    padding: 0.75rem 0.9rem;
    font-size: 0.75rem;
  }
  .mobile-toggle-icon {
    width: 22px;
    height: 22px;
    font-size: 0.55rem;
  }
  .mobile-sub li a {
    padding: 0.55rem 1rem;
    font-size: 0.74rem;
  }
  .mobile-nav-footer {
    padding: 0.8rem 0.9rem 1rem;
  }
  .mobile-cta {
    padding: 0.75rem 1rem;
    font-size: 0.72rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  #navbar {
    height: 55px;
  }
  :root {
    --nav-height: 55px;
  }
  .nav-logo-img {
    max-width: 85px;
  }
  .hamburger {
    width: 22px;
  }
  .mobile-overlay {
    width: min(240px, 70vw);
  }
}


/* ============================================================
   MOBILE MENU - SIMPLIFIED & RELIABLE
   ============================================================ */

.mobile-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu-wrapper.active {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-wrapper.active .mobile-menu-overlay {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: linear-gradient(160deg, #041830 0%, #081e3c 40%, #0a2a5c 100%);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu-wrapper.active .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo img {
  max-width: 120px;
  height: auto;
  filter: brightness(1.1);
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: rgba(244, 163, 0, 0.3);
  transform: rotate(90deg);
}

.mobile-menu-links {
  flex: 1;
  list-style: none;
  padding: 20px 0;
}

.mobile-menu-links > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-links > li > a {
  display: block;
  padding: 15px 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.mobile-menu-links > li > a:hover,
.mobile-menu-links > li > a.active {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 25px;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-dropdown-toggle:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.mobile-submenu {
  display: none;
  list-style: none;
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 0;
}

.mobile-submenu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 35px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.mobile-submenu li a:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 40px;
}

.mobile-submenu li a i {
  width: 18px;
  font-size: 12px;
  color: var(--accent);
}

.mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  background: var(--accent);
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mobile-cta-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

/* Ensure body can scroll normally when menu is closed */
body {
  overflow-x: hidden;
}

/* Hamburger button visibility */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 2001;
  position: relative;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive - Show hamburger on mobile */
@media (max-width: 1024px) {
  .nav-menu {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
  }
}

/* Fix for body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}