/* Enhanced Dropdown Menu Styles - Premium UI */
@font-face {
    font-family: Moisette-Light;
    src: url(font/Moisette-Light.woff) format("woff"), url(font/Moisette-Light.otf) format("opentype");
    font-weight: 400;
    text-rendering: optimizeLegibility;
}
@font-face {
    font-family: Moisette-Regular;
    src: url(font/Moisette-Regular.woff) format("woff"), url(font/Moisette-Regular.otf) format("opentype");
    font-weight: 400;
    text-rendering: optimizeLegibility;
}
h1, h2{
    font-family: Moisette-Regular !important;
    font-weight: 400 !important;
}
.Moisette-Regular{
    font-family: Moisette-Regular;
}
.Moisette-Light{
    font-family: Moisette-Light;
}
:root {
    /* Original colors for reference */
    --apple-blue: #0075b0;
    --apple-blue-hover: #025f8e;
    
    /* Premium White Dropdown Theme */
    --dropdown-bg: #ffffff;
    --dropdown-border-color: rgba(0, 0, 0, 0.08);
    --dropdown-shadow-primary: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    --dropdown-shadow-secondary: 0 8px 16px -8px rgba(0, 0, 0, 0.1);
    --dropdown-shadow-hover: 0 24px 48px -16px rgba(0, 0, 0, 0.2);
    
    /* Text and interaction colors */
    --dropdown-item-text: #1f2937;
    --dropdown-item-text-secondary: #6b7280;
    --dropdown-item-hover-bg: #e2f1ff;
    --dropdown-item-hover-text: var(--apple-blue);
    --dropdown-item-active-bg: #cfe3fc;
    --dropdown-item-active-text: var(--apple-blue);
    --dropdown-accent-color: var(--apple-blue);
}

.dropdown-container {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-toggle:hover {
    color: var(--dropdown-accent-color);
}

.dropdown-arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    stroke: currentColor;
    opacity: 0.7;
}

.dropdown-toggle:hover .dropdown-arrow-icon {
    opacity: 1;
}

.dropdown-container .dropdown-toggle[aria-expanded="true"] .dropdown-arrow-icon {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu-actual {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dropdown-bg);
    border: 1px solid var(--dropdown-border-color);
    border-radius: 12px;
    box-shadow: var(--dropdown-shadow-primary), var(--dropdown-shadow-secondary);
    list-style: none;
    margin: 0;
    padding: 8px;
    min-width: 240px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%) translateY(-8px) scale(0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dropdown-menu-actual.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    box-shadow: var(--dropdown-shadow-hover), var(--dropdown-shadow-secondary);
}

.dropdown-menu-actual li {
    margin: 0;
    padding: 0;
}

.dropdown-menu-actual .dropdown-item {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    color: var(--dropdown-item-text);
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.925rem;
    font-weight: 500;
    border-radius: 8px;
    margin: 2px 0;
    position: relative;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Subtle hover animation with sliding background */
.dropdown-menu-actual .dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--dropdown-item-hover-bg), transparent);
    transition: left 1.0s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.dropdown-menu-actual .dropdown-item:hover::before {
    left: 100%;
}

.dropdown-menu-actual .dropdown-item:hover {
    background-color: var(--dropdown-item-hover-bg);
    color: var(--dropdown-item-hover-text);
    transform: translateX(4px);
    box-shadow: 0 4px 12px -4px rgba(0, 117, 176, 0.15);
}

/* Active state */
.dropdown-menu-actual .dropdown-item.active {
    background-color: var(--dropdown-item-active-bg);
    color: var(--dropdown-item-active-text);
    font-weight: 600;
    position: relative;
}

.dropdown-menu-actual .dropdown-item.active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background-color: var(--dropdown-accent-color);
    border-radius: 0 2px 2px 0;
}

/* Micro-interaction: Scale on press */
.dropdown-menu-actual .dropdown-item:active {
    transform: translateX(4px) scale(0.98);
    transition-duration: 0.1s;
}

/* Separator between items (optional) */
.dropdown-menu-actual li:not(:last-child) .dropdown-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
}

/* Remove separator for active items */
.dropdown-menu-actual .dropdown-item.active::after {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background-color: var(--dropdown-accent-color);
    border-radius: 0 2px 2px 0;
    bottom: auto;
    right: auto;
}

/* Enhanced focus states for accessibility */
.dropdown-menu-actual .dropdown-item:focus {
    outline: 2px solid var(--dropdown-accent-color);
    outline-offset: -2px;
    background-color: var(--dropdown-item-hover-bg);
}

/* Staggered animation for menu items */
.dropdown-menu-actual.show .dropdown-item {
    animation: slideInItem 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(8px);
}

.dropdown-menu-actual.show .dropdown-item:nth-child(1) { animation-delay: 0.05s; }
.dropdown-menu-actual.show .dropdown-item:nth-child(2) { animation-delay: 0.1s; }
.dropdown-menu-actual.show .dropdown-item:nth-child(3) { animation-delay: 0.15s; }
.dropdown-menu-actual.show .dropdown-item:nth-child(4) { animation-delay: 0.2s; }
.dropdown-menu-actual.show .dropdown-item:nth-child(5) { animation-delay: 0.25s; }

@keyframes slideInItem {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    :root {
        --dropdown-bg: #1f2937;
        --dropdown-border-color: rgba(255, 255, 255, 0.1);
        --dropdown-item-text: #f9fafb;
        --dropdown-item-hover-bg: #374151;
        --dropdown-item-active-bg: #3730a3;
    }
}
/* Hero Content Wrapper - Positioned between sections */
.hero-content-wrapper {
  position: absolute;
  margin-top: -180px;
  margin-bottom: 200px; /* Position it so it spans both sections */
  left: 0;
  right: 0;
  z-index: 100; /* High z-index to appear above both sections */
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

/* Hero Content Wrapper - Positioned between sections */
.hero-content-wrapper2 {
  position: absolute;
  margin-top: -180px;
  margin-bottom: 200px; /* Position it so it spans both sections */
  left: 0;
  right: 0;
  z-index: 100; /* High z-index to appear above both sections */
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.hero-content {
  text-align: center;
  max-width: 900px;
  width: 100%;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title {
  font-size: 56px; 
  color: #fff;
  margin: 0 0 40px 0; 
  line-height: 1.1; 
}

.hero-title2 {
  font-size: 70px; 
  color: #c2185b;
  margin: -50px 0 80px 0; 
  line-height: 1.1; 
}

.hero-quote {
  position: relative;
  padding: 40px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.quote-text {
  font-size: 22px;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  margin: 0 0 20px 0;
  font-weight: 400;
  position: relative;
  z-index: 1; 
}
/* Mobile optimizations */
@media (max-width: 768px) {
    .dropdown-menu-actual {
        min-width: 200px;
        padding: 6px;
    }
    
    .dropdown-menu-actual .dropdown-item {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
     .hero-content-wrapper {
    margin-top: -200px; /* Further adjusted for small mobile */
  }
     .hero-content-wrapper2 {
    margin-top: -120px !important; /* Further adjusted for small mobile */
  }
   .quote-text {
    font-size: 19px;
  }
   .hero-title {
    font-size: 40px;
  }
   .hero-title2 {
    font-size: 46px;
    margin: 0px 0 20px 0; 
    text-shadow: #fff 2px 0 20px;
  }
  
}

:root {
    --apple-blue: #0075b0;
    --apple-blue-hover: #025f8e;
    --apple-gray-1: #f5f5f7;
    --apple-gray-2: #e8e8ed;
    --apple-gray-3: #d2d2d7;
    --apple-gray-4: #86868b;
    --apple-gray-5: #6e6e73;
    --apple-text: #1d1d1f;
    --apple-text-secondary: #86868b;
    --apple-radius: 12px;
    --apple-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Mobile Menu Container */
.new-mobile-menu-container {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    transition: top 0.5s cubic-bezier(0.32, 0.72, 0, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
}

.new-mobile-menu-container.active {
    top: 0;
}

/* Menu Header */
.new-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 0.5px solid var(--apple-gray-3);
    position: relative;
    z-index: 10;
    min-height: 70px;
}

.new-menu-logo-container {
    display: flex;
    align-items: center;
}

.new-mobile-logo {
    height: 32px;
    width: auto;
    border-radius: 6px;
    transition: opacity 0.2s ease;
}

.new-menu-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--apple-text);
    letter-spacing: -0.022em;
    margin-left: 12px;
}

.new-menu-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.new-back-button {
    background: var(--apple-gray-2);
    border: none;
    color: var(--apple-text);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.15s ease;
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.new-back-button.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.new-back-button:hover {
    background: var(--apple-gray-3);
}

.new-mobile-close {
    background: var(--apple-gray-2);
    border: none;
    color: var(--apple-text);
    font-size: 18px;
    font-weight: 500;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    line-height: 1;
}

.new-mobile-close:hover {
    background: var(--apple-gray-3);
    transform: scale(1.05);
}

/* Search Container */
.new-mobile-search-container {
    padding: 20px 24px;
    background: transparent;
    border-bottom: 0.5px solid var(--apple-gray-3);
}

.new-search-wrapper {
    position: relative;
}

.new-mobile-search-bar {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid var(--apple-gray-3);
    border-radius: var(--apple-radius);
    background: var(--apple-gray-1);
    font-size: 17px;
    font-family: inherit;
    color: var(--apple-text);
    transition: all 0.2s ease;
    outline: none;
}

.new-mobile-search-bar::placeholder {
    color: var(--apple-text-secondary);
}

.new-mobile-search-bar:focus {
    border-color: var(--apple-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 117, 176, 0.1);
}

.new-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2386868b" stroke-width="2"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

/* Menu Content */
.new-menu-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

.new-menu-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    padding: 24px;
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.3s ease;
}

.new-menu-section.main {
    transform: translateX(0);
    opacity: 1;
}

.new-menu-section.submenu {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
}

.new-menu-section.submenu.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    background: white;
}

.new-menu-section.main.hidden {
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Account Section */
.new-account-section {
    margin-bottom: 32px;
}

.new-section-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--apple-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    padding: 0 8px;
    opacity: 0;
    transform: translateY(15px);
    animation: itemFlyIn 0.4s cubic-bezier(0.32, 0.72, 0, 1) forwards;
    animation-delay: 0.05s;
}

.new-account-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.new-account-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 12px;
    border-radius: var(--apple-radius);
    background: var(--apple-gray-1);
    text-decoration: none;
    color: var(--apple-text);
    transition: all 0.2s cubic-bezier(0.32, 0.72, 0, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: itemFloatIn 0.5s cubic-bezier(0.32, 0.72, 0, 1) forwards;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.new-account-item:nth-child(1) { animation-delay: 0.1s; }
.new-account-item:nth-child(2) { animation-delay: 0.15s; }
.new-account-item:nth-child(3) { animation-delay: 0.2s; }
.new-account-item:nth-child(4) { animation-delay: 0.25s; }

.new-account-item:hover {
    background: white;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.new-account-item:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.new-account-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.new-account-icon path {
    stroke: var(--apple-text-secondary);
    fill: none;
}

.new-account-item:hover .new-account-icon {
    transform: scale(1.1);
}

.new-account-item:hover .new-account-icon path {
    stroke: var(--apple-blue);
}

.new-account-label {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.23;
    letter-spacing: -0.022em;
}

/* Navigation Section */
.new-nav-section {
    margin-bottom: 32px;
}

.new-nav-section .new-section-title {
    animation-delay: 0.3s;
}

.new-nav-item {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: itemFloatIn 0.5s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

.new-nav-item:nth-child(2) { animation-delay: 0.35s; }
.new-nav-item:nth-child(3) { animation-delay: 0.4s; }
.new-nav-item:nth-child(4) { animation-delay: 0.45s; }
.new-nav-item:nth-child(5) { animation-delay: 0.5s; }
.new-nav-item:nth-child(6) { animation-delay: 0.55s; }

.new-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px;
    color: var(--apple-text);
    text-decoration: none;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.23;
    letter-spacing: -0.022em;
    border-radius: var(--apple-radius);
    transition: all 0.2s cubic-bezier(0.32, 0.72, 0, 1);
    background: var(--apple-gray-1);
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.new-nav-link:hover {
    background: white;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.new-nav-link:active {
    background: var(--apple-gray-2);
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.new-nav-link.active {
    background: var(--apple-blue);
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(0, 117, 176, 0.3);
}

.new-nav-link.active:hover {
    background: var(--apple-blue-hover);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 24px rgba(0, 117, 176, 0.4);
}

.new-nav-link.has-submenu::after {
    content: '›';
    font-size: 20px;
    font-weight: 300;
    color: var(--apple-text-secondary);
    transition: all 0.2s ease;
}

.new-nav-link.has-submenu:hover::after {
    color: var(--apple-blue);
    transform: translateX(3px);
}

.new-nav-link.active.has-submenu::after {
    color: rgba(255, 255, 255, 0.7);
}

/* Submenu Styles */
.new-submenu-item {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: itemFloatIn 0.5s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

.new-submenu-item:nth-child(2) { animation-delay: 0.1s; }
.new-submenu-item:nth-child(3) { animation-delay: 0.15s; }
.new-submenu-item:nth-child(4) { animation-delay: 0.2s; }
.new-submenu-item:nth-child(5) { animation-delay: 0.25s; }
.new-submenu-item:nth-child(6) { animation-delay: 0.3s; }

.new-submenu-link {
    display: block;
    padding: 16px 16px;
    color: var(--apple-text);
    text-decoration: none;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.23;
    letter-spacing: -0.022em;
    border-radius: var(--apple-radius);
    transition: all 0.2s cubic-bezier(0.32, 0.72, 0, 1);
    background: var(--apple-gray-1);
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.new-submenu-link:hover {
    background: white;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.new-submenu-link.active {
    background: var(--apple-blue);
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(0, 117, 176, 0.3);
}

.new-submenu-link.active:hover {
    background: var(--apple-blue-hover);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 24px rgba(0, 117, 176, 0.4);
}

/* Animations */
@keyframes itemFlyIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes itemFloatIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Backdrop */
.new-mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.new-mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 480px) {
    .new-mobile-menu-header {
        padding: 16px 20px;
    }
    
    .new-menu-content {
        padding: 20px;
    }
    
    .new-menu-section {
        padding: 20px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .new-mobile-menu-container {
        background: rgba(28, 28, 30, 0.98);
    }

    .new-mobile-menu-header {
        background: rgba(28, 28, 30, 0.9);
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .new-mobile-close,
    .new-back-button {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .new-mobile-close:hover,
    .new-back-button:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .new-mobile-search-bar {
        background: rgba(118, 118, 128, 0.12);
        border-color: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .new-mobile-search-bar:focus {
        background: rgba(28, 28, 30, 1);
        border-color: var(--apple-blue);
    }

    .new-account-item,
    .new-nav-link,
    .new-submenu-link {
        color: white;
        background: rgba(255, 255, 255, 0.05);
    }

    .new-account-item:hover,
    .new-nav-link:hover,
    .new-submenu-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .new-account-icon path {
        stroke: rgba(255, 255, 255, 0.6);
    }

    .new-section-title {
        color: rgba(255, 255, 255, 0.6);
    }

    .new-mobile-search-container {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .new-menu-title {
        color: white;
    }
}

/* Focus states for accessibility */
.new-mobile-close:focus-visible,
.new-back-button:focus-visible,
.new-mobile-search-bar:focus-visible,
.new-account-item:focus-visible,
.new-nav-link:focus-visible,
.new-submenu-link:focus-visible {
    outline: 2px solid var(--apple-blue);
    outline-offset: 2px;
}

/* Smooth scroll behavior */
.new-mobile-menu-container {
    scroll-behavior: smooth;
}

/* Enhanced visual hierarchy */
.new-mobile-menu-container {
    box-shadow: -1px 0 0 0 rgba(0, 0, 0, 0.04);
}

/* Improved touch targets for iOS */
@media (pointer: coarse) {
    .new-account-item,
    .new-nav-link,
    .new-submenu-link {
        min-height: 44px;
    }
}