:root {
    --vnh-dark: #1a1a1a;
    --vnh-darker: #000000;
    --vnh-card: #131a29;
    --vnh-accent: #3a4fed;
    --vnh-accent-hover: #3541ea;
    --vnh-text: #f1f5f9;
    --vnh-text-muted: #94a3b8;
    --vnh-border: #1e293b;
    --gradient-primary: #3a4fed;
    --gradient-secondary: #3541ea;
    --gradient-success: #10b981;
    --gradient-warning: #f59e0b;
    --input-bg: #0f1420;
    --input-border: #2a354a;
    --input-focus: #3541ea;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--vnh-darker);
    color: var(--vnh-text);
    overflow-x: hidden;
    line-height: 1.6;
  }
  
  .section {
    padding: 4rem 0;
    position: relative;
  }
  
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    margin: 0;
    margin-bottom: 0.75rem;
  }
  
  .view-all {
    color: var(--vnh-accent);
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s ease;
  }
  
  .view-all:hover {
    gap: 0.75rem;
  }
  
  .event-card {
    background: var(--vnh-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--vnh-border);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-width: 280px;
    max-width: 320px;
    position: relative;
  }
  
  .event-card:hover {
    transform: translateY(-4px);
    border-color: var(--vnh-accent);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  }
  
  .event-image {
    position: relative;
    height: 160px;
    background: linear-gradient(135deg, #1e293b, #334155);
    overflow: hidden;
  }
  
  .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .event-card:hover .event-image img {
    transform: scale(1.05);
  }
  
  .event-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  
  .event-content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .event-title {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--vnh-text);
  }
  
  .event-venue {
    color: var(--vnh-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  
  .event-date {
    color: var(--vnh-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  
  .event-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--vnh-border);
  }
  
  .event-price {
    font-weight: 600;
    color: var(--vnh-accent);
    font-size: 1.05rem;
  }
  
  .btn-get-tickets {
    background: var(--vnh-accent);
    color: white;
    border: none;
    padding: 0.45rem 1.1rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    min-width: 95px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
  }
  
  .btn-get-tickets:hover {
    background: var(--vnh-accent-hover);
    transform: translateY(-1px);
  }
  
  .swiper {
    width: 100%;
    padding: 1rem 0 2rem;
  }
  
  .swiper-slide {
    width: auto;
    padding: 0 0.5rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    color: var(--vnh-accent) !important;
    background: var(--vnh-card);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--vnh-border);
    transition: all 0.2s ease;
  }
  
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: var(--vnh-accent);
    color: white !important;
    transform: scale(1.05);
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 1.2rem !important;
    font-weight: 600;
  }
  
  .swiper-pagination-bullet {
    background: var(--vnh-border) !important;
    opacity: 0.6;
    width: 10px;
    height: 10px;
  }
  
  .swiper-pagination-bullet-active {
    background: var(--vnh-accent) !important;
    opacity: 1;
    width: 24px;
    border-radius: 5px;
    transition: width 0.3s ease;
  }
  
  .social-promo {
    background: var(--vnh-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--vnh-border);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .social-promo:hover {
    border-color: var(--vnh-accent);
    transform: translateY(-4px);
  }
  
  .social-image {
    height: 200px;
    background: linear-gradient(45deg, #1e3a5f, #4c1d95);
    position: relative;
    overflow: hidden;
  }
  
  .social-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .social-promo:hover .social-image img {
    transform: scale(1.03);
  }
  
  .social-content {
    padding: 1.5rem;
  }
  
  .social-title {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  
  .social-text {
    color: var(--vnh-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .social-link {
    color: var(--vnh-accent);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s ease;
  }
  
  .social-link:hover {
    gap: 0.6rem;
  }
  
  .footer {
    background: var(--vnh-darker);
    border-top: 1px solid var(--vnh-border);
    padding: 4rem 0 2rem;
    margin-top: 3rem;
  }
  
  .footer-logo {
    font-weight: 800;
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: inline-block;
  }
  
  .footer-text {
    color: var(--vnh-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 350px;
  }
  
  .footer-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem;
    color: var(--vnh-text);
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.75rem;
  }
  
  .footer-links a {
    color: var(--vnh-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .footer-links a:hover {
    color: var(--vnh-accent);
  }
  
  .footer-links a i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--vnh-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vnh-text);
    font-size: 1.2rem;
    transition: all 0.2s ease;
    border: 1px solid var(--vnh-border);
  }
  
  .social-icon:hover {
    background: var(--vnh-accent);
    border-color: var(--vnh-accent);
    transform: translateY(-3px);
    color: white;
  }
  
  .copyright {
    border-top: 1px solid var(--vnh-border);
    padding-top: 1.5rem;
    margin-top: 2.5rem;
    color: var(--vnh-text-muted);
    font-size: 0.9rem;
    text-align: center;
  }
  
  .text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .bg-card {
    background: var(--vnh-card);
  }
  
  .border-card {
    border-color: var(--vnh-border) !important;
  }
  
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  @keyframes float{
  
      0%,
      100% {
          transform: translateY(0);
      }
  
      50% {
          transform: translateY(-10px);
      }
  
  }
  
  .floating {
    animation: float 6s ease-in-out infinite;
  }
  
  .pulse {
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse{
  
      0% {
          box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
      }
  
      70% {
          box-shadow: 0 0 0 12px rgba(124, 58, 237, 0);
      }
  
      100% {
          box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
      }
  
  }
  
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--vnh-card);
    border-top: 1px solid var(--vnh-border);
    padding: 1rem 2rem;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    animation: slideUp 0.4s ease;
  }
  
  @keyframes slideUp{
  
      from {
          transform: translateY(100%);
          opacity: 0;
      }
  
      to {
          transform: translateY(0);
          opacity: 1;
      }
  
  }
  
  .cookie-text {
    color: var(--vnh-text-muted);
    font-size: 0.9rem;
    max-width: 700px;
  }
  
  .cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
  }
  
  .btn-cookie {
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
  }
  
  .btn-cookie-outline {
    background: transparent;
    border: 1px solid var(--vnh-border);
    color: var(--vnh-text);
  }
  
  .btn-cookie-outline:hover {
    background: var(--vnh-border);
  }
  
  .btn-cookie-primary {
    background: var(--vnh-accent);
    border: none;
    color: white;
  }
  
  .btn-cookie-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
  }
  
  .navbar {
    background: rgba(10, 14, 23, 0.95);
    border-bottom: 1px solid var(--vnh-border);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    z-index: 1030;
    backdrop-filter: blur(12px);
  }
  
  .navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  
  .navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--vnh-text) !important;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .nav-link {
    font-weight: 500;
    color: var(--vnh-text) !important;
    margin: 0 0.25rem;
    position: relative;
    transition: color 0.2s ease;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: var(--vnh-accent) !important;
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
  }
  
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 70%;
  }
  
  .search-btn,
  .user-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vnh-card);
    border: 1px solid var(--vnh-border);
    color: var(--vnh-text);
    transition: all 0.2s ease;
  }
  
  .search-btn:hover,
  .user-btn:hover {
    background: var(--vnh-accent);
    border-color: var(--vnh-accent);
    transform: translateY(-2px);
  }
  
  .btn-primary {
    background: var(--gradient-primary);
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
    background: var(--gradient-primary);
  }
  
  .btn-outline-light {
    border-color: var(--vnh-border);
    color: var(--vnh-text);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  
  .btn-outline-light:hover {
    background: var(--vnh-card);
    border-color: var(--vnh-accent);
    color: var(--vnh-accent);
  }
  
  .custom-toggler:focus,
  .custom-toggler:active,
  .custom-toggler:focus-visible {
    outline: none !important;
    box-shadow: none !important;
  }
  
  .custom-toggler .ph-list {
    color: var(--vnh-text);
    transition: color 0.2s ease-in-out;
  }
  
  .custom-toggler:hover .ph-list {
    color: var(--vnh-accent);
  }
  
  .page-hero {
    position: relative;
    padding: 8rem 0 3.5rem;
    background: radial-gradient(
              circle at 20% 30%,
              rgba(124, 58, 237, 0.12) 0%,
              transparent 45%
          ),
          radial-gradient(
              circle at 80% 70%,
              rgba(59, 130, 246, 0.1) 0%,
              transparent 50%
          ),
          var(--vnh-darker);
    overflow: hidden;
    border-bottom: 1px solid var(--vnh-border);
  }
  
  .page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, var(--vnh-dark) 100%);
    z-index: 1;
  }
  
  .page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  .page-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .page-hero-subtitle {
    font-size: 1.1rem;
    color: var(--vnh-text-muted);
    max-width: 600px;
    margin: 0 auto 1.5rem;
  }
  
  .page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid var(--vnh-accent);
    color: var(--vnh-accent);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
  }
  
  .section.bg-card {
    background: var(--vnh-card);
  }
  
  .section-subtitle {
    color: var(--vnh-text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
  }
  
  .section-divider {
    height: 1px;
    background: linear-gradient(
          90deg,
          transparent,
          var(--vnh-border),
          transparent
      );
    margin: 3rem 0;
    border: none;
  }
  
  .story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .story-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--vnh-text);
  }
  
  .story-content p {
    color: var(--vnh-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }
  
  .story-timeline {
    position: relative;
    padding-left: 2rem;
  }
  
  .story-timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
  }
  
  .timeline-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .timeline-item::before {
    content: "";
    position: absolute;
    left: -2.1rem;
    top: 4px;
    width: 12px;
    height: 12px;
    background: var(--vnh-accent);
    border: 3px solid var(--vnh-dark);
    border-radius: 50%;
    z-index: 1;
  }
  
  .timeline-year {
    font-weight: 700;
    color: var(--vnh-accent);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }
  
  .timeline-text {
    color: var(--vnh-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .story-visual {
    background: var(--vnh-card);
    border-radius: 20px;
    border: 1px solid var(--vnh-border);
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }
  
  .story-visual::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
          circle,
          rgba(124, 58, 237, 0.1) 0%,
          transparent 60%
      );
    animation: pulse 8s ease-in-out infinite;
  }
  
  @keyframes pulse{
  
      0%,
      100% {
          transform: scale(1);
          opacity: 0.5;
      }
  
      50% {
          transform: scale(1.1);
          opacity: 0.8;
      }
  
  }
  
  .story-stats-inline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .story-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(19, 26, 41, 0.6);
    border-radius: 12px;
    border: 1px solid var(--vnh-border);
  }
  
  .story-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .story-stat-label {
    font-size: 0.85rem;
    color: var(--vnh-text-muted);
    margin-top: 0.25rem;
  }
  
  .mission-card {
    background: var(--vnh-card);
    border-radius: 20px;
    border: 1px solid var(--vnh-border);
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .mission-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: white;
  }
  
  .mission-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .mission-card p {
    color: var(--vnh-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }
  
  .mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--vnh-text-muted);
    font-size: 0.95rem;
  }
  
  .mission-list i {
    color: var(--vnh-accent);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
  }
  
  .stats-section {
    background: linear-gradient(
          135deg,
          var(--vnh-darker) 0%,
          var(--vnh-card) 100%
      );
    border-top: 1px solid var(--vnh-border);
    border-bottom: 1px solid var(--vnh-border);
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
  }
  
  .stat-card {
    padding: 1.5rem 1rem;
  }
  
  .stat-value {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    display: block;
  }
  
  .stat-label {
    color: var(--vnh-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .stat-note {
    font-size: 0.75rem;
    color: var(--vnh-text-muted);
    opacity: 0.7;
    margin-top: 0.25rem;
    font-style: italic;
  }
  
  .leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .leader-card {
    background: var(--vnh-card);
    border-radius: 16px;
    border: 1px solid var(--vnh-border);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .leader-card:hover {
    border-color: var(--vnh-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  }
  
  .leader-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(
          135deg,
          var(--vnh-accent),
          var(--vnh-accent-hover)
      );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
  }
  
  .leader-name {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
  }
  
  .leader-title {
    color: var(--vnh-text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .offices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .office-card {
    background: var(--vnh-card);
    border-radius: 16px;
    border: 1px solid var(--vnh-border);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }
  
  .office-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
  }
  
  .office-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .office-content p {
    color: var(--vnh-text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
  }
  
  .office-map {
    background: var(--input-bg);
    border-radius: 16px;
    border: 1px solid var(--vnh-border);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  
  .office-map::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
              circle at 30% 40%,
              rgba(124, 58, 237, 0.1) 0%,
              transparent 40%
          ),
          radial-gradient(
              circle at 70% 60%,
              rgba(59, 130, 246, 0.08) 0%,
              transparent 45%
          );
  }
  
  .map-placeholder {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--vnh-text-muted);
  }
  
  .map-placeholder i {
    font-size: 2.5rem;
    color: var(--vnh-accent);
    margin-bottom: 0.75rem;
    display: block;
  }
  
  .map-pin {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--vnh-accent);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.25);
    animation: pulsePin 2.5s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  @keyframes pulsePin{
  
      0%,
      100% {
          transform: scale(1);
          opacity: 1;
      }
  
      50% {
          transform: scale(1.3);
          opacity: 0.7;
      }
  
  }
  
  .map-pin.la {
    top: 58%;
    left: 22%;
  }
  
  .map-pin.mtl {
    top: 42%;
    left: 43%;
  }
  
  .map-pin.lon {
    top: 36%;
    left: 51%;
  }
  
  .map-pin.other {
    top: 60%;
    left: 70%;
  }
  
  .investors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .investor-card {
    background: var(--vnh-card);
    border-radius: 16px;
    border: 1px solid var(--vnh-border);
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.2s ease;
  }
  
  .investor-card:hover {
    border-color: var(--vnh-accent);
    background: rgba(19, 26, 41, 0.8);
  }
  
  .investor-logo {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--vnh-text);
    margin-bottom: 0.5rem;
  }
  
  .investor-type {
    font-size: 0.8rem;
    color: var(--vnh-text-muted);
  }
  
  .partners-swiper {
    padding: 1rem 0 2rem;
  }
  
  .partner-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--vnh-card);
    border-radius: 16px;
    border: 1px solid var(--vnh-border);
    min-height: 100px;
    transition: all 0.3s ease;
  }
  
  .partner-slide:hover {
    border-color: var(--vnh-accent);
    transform: translateY(-2px);
  }
  
  .partner-logo {
    font-weight: 600;
    color: var(--vnh-text-muted);
    font-size: 1.1rem;
    text-align: center;
    opacity: 0.8;
    transition: opacity 0.2s ease;
  }
  
  .partner-slide:hover .partner-logo {
    opacity: 1;
    color: var(--vnh-text);
  }
  
  .partners-swiper .swiper-pagination-bullet {
    background: var(--vnh-border) !important;
    opacity: 0.5;
  }
  
  .partners-swiper .swiper-pagination-bullet-active {
    background: var(--gradient-primary) !important;
    opacity: 1;
  }
  
  .cta-section {
    background: linear-gradient(
          135deg,
          var(--vnh-card) 0%,
          var(--vnh-darker) 100%
      );
    border-radius: 24px;
    border: 1px solid var(--vnh-border);
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
  }
  
  .cta-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .cta-text {
    color: var(--vnh-text-muted);
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn-cta-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
  }
  
  .btn-cta-outline {
    background: transparent;
    border: 1px solid var(--vnh-border);
    color: var(--vnh-text);
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .btn-cta-outline:hover {
    border-color: var(--vnh-accent);
    background: rgba(124, 58, 237, 0.1);
    color: var(--vnh-accent);
  }
  
  .counter {
    display: inline-block;
  }
  
  .fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .contact-form {
    background: var(--vnh-card);
    border-radius: 20px;
    border: 1px solid var(--vnh-border);
    padding: 2rem;
  }
  
  .form-label {
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--vnh-text);
    display: block;
  }
  
  .form-control,
  .form-select {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 12px;
    color: var(--vnh-text);
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    width: 100%;
    transition: all 0.2s ease;
  }
  
  .form-control:focus,
  .form-select:focus {
    background: var(--input-bg);
    border-color: var(--input-focus);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
    outline: none;
    color: var(--vnh-text);
  }
  
  .form-control::placeholder {
    color: var(--vnh-text-muted);
    opacity: 1;
  }
  
  textarea.form-control {
    min-height: 140px;
    resize: vertical;
  }
  
  .form-hint {
    font-size: 0.8rem;
    color: var(--vnh-text-muted);
    margin-top: 0.35rem;
    display: block;
  }
  
  .form-error {
    color: #f87171;
    font-size: 0.85rem;
    margin-top: 0.35rem;
    display: none;
  }
  
  .form-group.error .form-control,
  .form-group.error .form-select {
    border-color: #f87171;
  }
  
  .form-group.error .form-error {
    display: block;
  }
  
  .form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1rem 0;
  }
  
  .form-check-input {
    background: var(--input-bg);
    border-color: var(--input-border);
    margin-top: 4px;
    width: 18px;
    height: 18px;
  }
  
  .form-check-input:checked {
    background-color: var(--vnh-accent);
    border-color: var(--vnh-accent);
  }
  
  .form-check-label {
    font-size: 0.9rem;
    color: var(--vnh-text-muted);
    line-height: 1.5;
  }
  
  .form-check-label a {
    color: var(--vnh-accent);
    text-decoration: none;
  }
  
  .form-check-label a:hover {
    text-decoration: underline;
  }
  
  .btn-submit {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }
  
  .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
  }
  
  .btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
  }
  
  .btn-submit .spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }
  
  .btn-submit.loading .spinner {
    display: inline-block;
  }
  
  .btn-submit.loading .btn-text {
    display: none;
  }
  
  @keyframes spin{
  
      to {
          transform: rotate(360deg);
      }
  
  }
  
  .form-success {
    display: none;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .form-success.show {
    display: block;
    animation: slideDown 0.3s ease;
  }
  
  @keyframes slideDown{
  
      from {
          opacity: 0;
          transform: translateY(-10px);
      }
  
      to {
          opacity: 1;
          transform: translateY(0);
      }
  
  }
  
  .form-success i {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 0.75rem;
    display: block;
  }
  
  .form-success-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .form-success-text {
    color: var(--vnh-text-muted);
    font-size: 0.95rem;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .info-card {
    background: var(--vnh-card);
    border-radius: 16px;
    border: 1px solid var(--vnh-border);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
  }
  
  .info-card:hover {
    border-color: var(--vnh-accent);
    transform: translateY(-2px);
  }
  
  .info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
  }
  
  .info-icon.support {
    background: var(--gradient-success);
  }
  
  .info-icon.sales {
    background: var(--gradient-warning);
  }
  
  .info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
  }
  
  .info-content p {
    color: var(--vnh-text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  
  .info-link {
    color: var(--vnh-accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s ease;
  }
  
  .info-link:hover {
    gap: 0.55rem;
    text-decoration: underline;
  }
  
  .info-hours {
    font-size: 0.85rem;
    color: var(--vnh-text-muted);
    margin-top: 0.25rem;
  }
  
  .badge-online {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.5rem;
  }
  
  .badge-online::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse{
  
      0%,
      100% {
          opacity: 1;
          transform: scale(1);
      }
  
      50% {
          opacity: 0.7;
          transform: scale(0.9);
      }
  
  }
  
  .offices-section {
    background: var(--vnh-card);
    border-radius: 20px;
    border: 1px solid var(--vnh-border);
    padding: 2rem;
  }
  
  .office-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .office-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(19, 26, 41, 0.5);
    border: 1px solid var(--vnh-border);
    transition: all 0.2s ease;
  }
  
  .office-item:hover,
  .office-item.active {
    border-color: var(--vnh-accent);
    background: rgba(124, 58, 237, 0.08);
  }
  
  .office-pin {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
  }
  
  .office-details h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .office-details p {
    color: var(--vnh-text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
  }
  
  .map-pin:hover {
    transform: scale(1.3);
    z-index: 10;
    box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.4);
  }
  
  .map-pin.active {
    animation: none;
    transform: scale(1.4);
    box-shadow: 0 0 0 8px rgba(124, 58, 237, 0.5);
    z-index: 11;
  }
  
  @keyframes pulsePin{
  
      0%,
      100% {
          transform: scale(1);
          opacity: 1;
      }
  
      50% {
          transform: scale(1.15);
          opacity: 0.85;
      }
  
  }
  
  .map-pin.syd {
    top: 72%;
    left: 78%;
  }
  
  .faq-section {
    background: var(--vnh-card);
    border-radius: 20px;
    border: 1px solid var(--vnh-border);
    padding: 2rem;
  }
  
  .accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: var(--vnh-border);
    --bs-accordion-btn-color: var(--vnh-text);
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-btn-focus-border-color: var(--vnh-accent);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
    --bs-accordion-active-color: var(--vnh-text);
    --bs-accordion-active-bg: rgba(124, 58, 237, 0.08);
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2394a3b8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237c3aed'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }
  
  .accordion-item {
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--vnh-border) !important;
  }
  
  .accordion-button {
    font-weight: 500;
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
  
  .accordion-button:not(.collapsed) {
    box-shadow: none;
  }
  
  .accordion-body {
    padding: 0 1.25rem 1.25rem;
    color: var(--vnh-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .accordion-body a {
    color: var(--vnh-accent);
    text-decoration: none;
  }
  
  .accordion-body a:hover {
    text-decoration: underline;
  }
  
  .support-tiers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .tier-card {
    background: var(--input-bg);
    border-radius: 12px;
    border: 1px solid var(--vnh-border);
    padding: 1.25rem;
    text-align: center;
    transition: all 0.2s ease;
  }
  
  .tier-card:hover,
  .tier-card.active {
    border-color: var(--vnh-accent);
    background: rgba(124, 58, 237, 0.08);
  }
  
  .tier-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
  }
  
  .tier-card.active .tier-badge {
    background: var(--gradient-success);
  }
  
  .tier-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .tier-response {
    color: var(--vnh-text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }
  
  .tier-channels {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  .tier-channel {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--vnh-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--vnh-text-muted);
  }
  
  .chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1100;
  }
  
  .chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .chat-toggle:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
  }
  
  .chat-toggle .badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #10b981;
    border: 2px solid var(--vnh-dark);
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .chat-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 340px;
    max-height: 500px;
    background: var(--vnh-card);
    border-radius: 20px;
    border: 1px solid var(--vnh-border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
  }
  
  .chat-window.show {
    display: flex;
  }
  
  @keyframes slideUp{
  
      from {
          opacity: 0;
          transform: translateY(20px);
      }
  
      to {
          opacity: 1;
          transform: translateY(0);
      }
  
  }
  
  .chat-header {
    padding: 1rem 1.25rem;
    background: rgba(19, 26, 41, 0.8);
    border-bottom: 1px solid var(--vnh-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .chat-header-title {
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .chat-header-title .status {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  
  .chat-close {
    background: none;
    border: none;
    color: var(--vnh-text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 8px;
    transition: all 0.2s ease;
  }
  
  .chat-close:hover {
    background: var(--vnh-border);
    color: var(--vnh-text);
  }
  
  .chat-messages {
    flex: 1;
    padding: 1rem 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 320px;
  }
  
  .chat-message {
    display: flex;
    gap: 0.75rem;
    max-width: 85%;
  }
  
  .chat-message.bot {
    align-self: flex-start;
  }
  
  .chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
  }
  
  .chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
  }
  
  .chat-message.user .chat-avatar {
    background: var(--gradient-secondary);
  }
  
  .chat-bubble {
    background: var(--input-bg);
    border-radius: 16px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    border: 1px solid var(--vnh-border);
  }
  
  .chat-message.user .chat-bubble {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
  }
  
  .chat-input-area {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--vnh-border);
    background: rgba(19, 26, 41, 0.8);
    display: flex;
    gap: 0.5rem;
  }
  
  .chat-input {
    flex: 1;
    background: var(--input-bg);
    border: 1px solid var(--vnh-border);
    border-radius: 12px;
    color: var(--vnh-text);
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease;
  }
  
  .chat-input:focus {
    border-color: var(--vnh-accent);
  }
  
  .chat-send {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--gradient-primary);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }
  
  .chat-send:hover {
    transform: scale(1.05);
  }
  
  .chat-send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }
  
  .form-control:focus-visible,
  .form-select:focus-visible,
  .btn-submit:focus-visible,
  .chat-toggle:focus-visible,
  .chat-send:focus-visible,
  .accordion-button:focus-visible {
    outline: 2px solid var(--vnh-accent);
    outline-offset: 2px;
  }
  
  .btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
  }
  
  .filters-bar {
    background: var(--vnh-card);
    border: 1px solid var(--vnh-border);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
  }
  
  .filters-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--vnh-text-muted);
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  
  .filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .form-select-sm,
  .form-control-sm {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 10px;
    color: var(--vnh-text);
    padding: 0.5rem 2rem 0.5rem 1rem;
    font-size: 0.9rem;
    min-width: 140px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
  }
  
  .form-select-sm:focus,
  .form-control-sm:focus {
    background-color: var(--input-bg);
    border-color: var(--input-focus);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
    outline: none;
    color: var(--vnh-text);
  }
  
  .search-filter {
    flex: 1;
    min-width: 200px;
    position: relative;
  }
  
  .search-filter input {
    padding-left: 2.2rem;
  }
  
  .search-filter i {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--vnh-text-muted);
    font-size: 1rem;
    pointer-events: none;
  }
  
  .filter-btn {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--vnh-text);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
    white-space: nowrap;
  }
  
  .filter-btn:hover,
  .filter-btn.active {
    background: var(--vnh-accent);
    border-color: var(--vnh-accent);
    color: white;
  }
  
  .filter-btn.active i {
    color: white;
  }
  
  .view-toggle {
    display: flex;
    background: var(--input-bg);
    border-radius: 10px;
    padding: 0.25rem;
    border: 1px solid var(--input-border);
  }
  
  .view-toggle button {
    background: none;
    border: none;
    color: var(--vnh-text-muted);
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .view-toggle button.active,
  .view-toggle button:hover {
    background: var(--vnh-accent);
    color: white;
  }
  
  .results-count {
    color: var(--vnh-text-muted);
    font-size: 0.9rem;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .events-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .event-card.featured {
    border-color: var(--vnh-accent);
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.3);
  }
  
  .event-card.featured::before {
    content: "Featured";
    position: absolute;
    top: 12px;
    right: -30px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 2rem;
    transform: rotate(45deg);
    z-index: 2;
  }
  
  .event-badge.selling-fast {
    background: var(--gradient-warning);
  }
  
  .event-badge.new {
    background: var(--gradient-success);
  }
  
  .event-save {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(19, 26, 41, 0.9);
    border: 1px solid var(--vnh-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vnh-text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
  }
  
  .event-save:hover,
  .event-save.saved {
    background: var(--vnh-accent);
    border-color: var(--vnh-accent);
    color: white;
  }
  
  .event-save.saved i {
    fill: currentColor;
  }
  
  .event-category {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--vnh-accent);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .event-price.from {
    color: var(--vnh-text-muted);
    font-weight: 400;
    font-size: 0.9rem;
  }
  
  .event-price.from span {
    color: var(--vnh-accent);
    font-weight: 600;
    font-size: 1.05rem;
  }
  
  .btn-get-tickets:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }
  
  .pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 3rem 0 2rem;
    flex-wrap: wrap;
  }
  
  .pagination {
    --bs-pagination-bg: var(--vnh-card);
    --bs-pagination-border-color: var(--vnh-border);
    --bs-pagination-color: var(--vnh-text);
    --bs-pagination-hover-bg: var(--vnh-accent);
    --bs-pagination-hover-border-color: var(--vnh-accent);
    --bs-pagination-hover-color: white;
    --bs-pagination-active-bg: var(--gradient-primary);
    --bs-pagination-active-border-color: var(--gradient-primary);
    --bs-pagination-active-color: white;
    --bs-pagination-disabled-color: var(--vnh-text-muted);
    --bs-pagination-disabled-bg: transparent;
    --bs-pagination-disabled-border-color: var(--vnh-border);
    border-radius: 12px;
    gap: 0.25rem;
  }
  
  .page-link {
    border-radius: 10px !important;
    margin: 0 !important;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: all 0.2s ease;
  }
  
  .page-link:hover:not(.disabled) {
    transform: translateY(-1px);
  }
  
  .pagination-info {
    color: var(--vnh-text-muted);
    font-size: 0.9rem;
    margin-left: 1rem;
  }
  
  .skeleton-card {
    background: var(--vnh-card);
    border-radius: 16px;
    border: 1px solid var(--vnh-border);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .skeleton-image {
    height: 160px;
    background: linear-gradient(
          90deg,
          var(--vnh-card) 25%,
          var(--vnh-border) 50%,
          var(--vnh-card) 75%
      );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
  }
  
  .skeleton-content {
    padding: 1.25rem;
    flex-grow: 1;
  }
  
  .skeleton-title {
    height: 1.2rem;
    background: var(--vnh-border);
    border-radius: 6px;
    margin-bottom: 0.75rem;
    width: 90%;
    animation: shimmer 1.5s infinite;
  }
  
  .skeleton-line {
    height: 0.9rem;
    background: var(--vnh-border);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    width: 100%;
    animation: shimmer 1.5s infinite;
  }
  
  .skeleton-line.short {
    width: 60%;
  }
  
  .skeleton-footer {
    padding: 0 1.25rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .skeleton-price {
    height: 1.3rem;
    width: 50px;
    background: var(--vnh-border);
    border-radius: 6px;
    animation: shimmer 1.5s infinite;
  }
  
  .skeleton-btn {
    height: 32px;
    width: 95px;
    background: var(--vnh-border);
    border-radius: 10px;
    animation: shimmer 1.5s infinite;
  }
  
  @keyframes shimmer{
  
      0% {
          background-position: -200% 0;
      }
  
      100% {
          background-position: 200% 0;
      }
  
  }
  
  .empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--vnh-card);
    border-radius: 20px;
    border: 1px dashed var(--vnh-border);
    margin: 2rem 0;
  }
  
  .empty-state i {
    font-size: 3rem;
    color: var(--vnh-text-muted);
    margin-bottom: 1rem;
    display: block;
  }
  
  .empty-state-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .empty-state-text {
    color: var(--vnh-text-muted);
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .form-select-sm:focus-visible,
  .form-control-sm:focus-visible,
  .btn-get-tickets:focus-visible,
  .event-save:focus-visible,
  .page-link:focus-visible {
    outline: 2px solid var(--vnh-accent);
    outline-offset: 2px;
  }
  
  .vnh-card {
    background-color: var(--vnh-dark);
    border: 1px solid var(--vnh-border);
    border-radius: 0.75rem;
  }

  .vnh-card fieldset,
  .vnh-card legend {
    min-width: 0;
  }

  .vnh-card legend {
    float: none;
    width: auto;
  }
  
  .form-control.vnh-input {
    background-color: var(--vnh-darker);
    border: 1px solid var(--vnh-border);
    color: var(--vnh-text);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
  }
  
  .form-control.vnh-input:focus {
    background-color: var(--vnh-darker);
    color: var(--vnh-text);
    border-color: var(--vnh-accent);
    box-shadow: 0 0 0 0.25rem rgba(58, 79, 237, 0.25);
  }
  
  .form-control.vnh-input::placeholder {
    color: var(--vnh-text-muted);
  }
  
  .vnh-option-card {
    background-color: var(--vnh-darker);
    border: 1px solid var(--vnh-border);
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
  }
  
  .vnh-option-card:hover {
    border-color: var(--vnh-accent);
    background-color: rgba(58, 79, 237, 0.1);
  }

  .vnh-option-card:has(.form-check-input:focus-visible) {
    border-color: var(--vnh-accent);
    box-shadow: 0 0 0 0.25rem rgba(58, 79, 237, 0.2);
  }

  .vnh-option-card:has(.form-check-input:checked) {
    border-color: var(--vnh-accent);
    background-color: rgba(58, 79, 237, 0.12);
  }
  
  .vnh-option-card .form-check-input {
    background-color: var(--vnh-card);
    border-color: var(--vnh-text-muted);
  }
  
  .vnh-option-card .form-check-input:checked {
    background-color: var(--vnh-accent);
    border-color: var(--vnh-accent);
  }
  
  .text-vnh-muted {
    color: var(--vnh-text-muted) !important;
  }
  
  .text-vnh-accent {
    color: var(--vnh-accent) !important;
  }
  
  .btn-vnh-primary {
    background-color: var(--vnh-accent);
    border-color: var(--vnh-accent);
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 2.5rem;
    border-radius: 0.75rem;
    transition: transform 0.2s;
  }
  
  .btn-vnh-primary:hover {
    background-color: var(--vnh-accent-hover);
    border-color: var(--vnh-accent-hover);
    color: #fff;
    transform: scale(1.05);
  }

  .btn-vnh-primary:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 0.25rem rgba(58, 79, 237, 0.35);
  }
  
  .icon-circle {
    width: 40px;
    height: 40px;
    background-color: rgba(58, 79, 237, 0.2);
    color: var(--vnh-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .icon-circle i {
    font-size: 1.25rem;
  }

  .vnh-terms-box {
    background-color: rgba(58, 79, 237, 0.1);
    border: 1px solid rgba(58, 79, 237, 0.2);
  }
  
  -------------------------------------------------- */
  
      
      .carousel {
    margin-bottom: 4rem;
  }
  
  .carousel-caption {
    bottom: 3rem;
    z-index: 10;
  }
  
  .carousel-item {
    height: 700px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
  }
  
  .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  
  .carousel-caption,
  .carousel-indicators {
    z-index: 2;
  }
  
  @media (min-width: 1600px) {
    .container,
        .container-lg,
        .container-xl,
        .container-xxl {
      max-width: 1600px;
    }
  }
  
  @media (max-width: 991px) {
    .hero-title {
      font-size: clamp(2.2rem, 6vw, 3.2rem);
    }
    
    .hero-stats {
      gap: 1.5rem;
    }
    
    .stat-number {
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 767px) {
    .navbar-nav {
      margin-top: 1rem;
      text-align: center;
    }
    
    .nav-link {
      margin: 0.25rem 0 !important;
    }
    
    .hero-section {
      min-height: auto;
      padding: 6rem 0 4rem;
    }
    
    .hero-content {
      text-align: center;
      margin: 0 auto;
    }
    
    .hero-search {
      margin: 0 auto;
    }
    
    .hero-stats {
      justify-content: center;
    }
    
    .section-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    
    .section-title {
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 767px) {
    .cookie-banner {
      flex-direction: column;
      text-align: center;
      padding: 1rem;
    }
    
    .cookie-actions {
      width: 100%;
      justify-content: center;
    }
  }
  
  @media (min-width: 992px) {
    .story-grid {
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }
  }
  
  @media (min-width: 768px) {
    .stats-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (min-width: 992px) {
    .stats-grid {
      grid-template-columns: repeat(6, 1fr);
      gap: 1.5rem;
    }
  }
  
  @media (min-width: 768px) {
    .leadership-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (min-width: 992px) {
    .leadership-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }
  }
  
  @media (min-width: 768px) {
    .offices-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (min-width: 768px) {
    .investors-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  @media (max-width: 767px) {
    .section {
      padding: 3.5rem 0;
    }
    
    .story-stats-inline {
      grid-template-columns: 1fr;
    }
    
    .office-card {
      flex-direction: column;
      text-align: center;
    }
    
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .btn-cta-primary,
        .btn-cta-outline {
      width: 100%;
      max-width: 300px;
      justify-content: center;
    }
  }
  
  @media (min-width: 992px) {
    .contact-grid {
      grid-template-columns: 1.2fr 0.8fr;
      gap: 3rem;
    }
  }
  
  @media (min-width: 768px) {
    .support-tiers {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 991px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }
    
    .contact-form,
        .offices-section,
        .faq-section {
      padding: 1.75rem;
    }
  }
  
  @media (max-width: 767px) {
    .section {
      padding: 3rem 0;
    }
    
    .page-hero {
      padding: 4rem 0 2.5rem;
    }
    
    .chat-window {
      width: calc(100vw - 48px);
      right: 24px;
      left: 24px;
      max-width: none;
    }
    
    .support-tiers {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .page-hero-title {
      font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .contact-form,
        .offices-section,
        .faq-section {
      padding: 1.5rem;
    }
    
    .btn-submit {
      padding: 0.75rem 1.5rem;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    *,
        *::before,
        *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
  
  @media (min-width: 576px) {
    .events-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 992px) {
    .events-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (min-width: 1400px) {
    .events-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .pagination {
      gap: 0.15rem;
    }
    
    .page-link {
      min-width: 34px;
      padding: 0.4rem 0.6rem !important;
      font-size: 0.85rem;
    }
    
    .pagination-info {
      margin-left: 0;
      width: 100%;
      text-align: center;
      margin-top: 0.5rem;
    }
  }
  
  @media (max-width: 991px) {
    .filters-bar {
      flex-direction: column;
      align-items: stretch;
    }
    
    .filter-group {
      width: 100%;
      justify-content: space-between;
    }
    
    .search-filter {
      width: 100%;
      min-width: auto;
    }
    
    .results-count {
      margin-left: 0;
      margin-top: 0.5rem;
      width: 100%;
      justify-content: center;
    }
    
    .view-toggle {
      margin-left: auto;
      margin-right: auto;
    }
  }
  
  @media (max-width: 767px) {
    .section {
      padding: 3rem 0;
    }
    
    .page-hero {
      padding: 3.5rem 0 2rem;
    }
    
    .events-grid {
      gap: 1.25rem;
    }
    
    .event-card {
      border-radius: 14px;
    }
    
    .event-image {
      height: 140px;
    }
    
    .event-content {
      padding: 1rem;
    }
    
    .event-title {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .page-hero-title {
      font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .filters-bar {
      padding: 0.85rem 1rem;
    }
    
    .form-select-sm,
        .form-control-sm {
      min-width: 120px;
      font-size: 0.85rem;
      padding: 0.45rem 1.8rem 0.45rem 0.9rem;
    }
    
    .filter-btn {
      padding: 0.45rem 0.85rem;
      font-size: 0.85rem;
    }
    
    .event-footer {
      flex-direction: column;
      gap: 0.75rem;
      align-items: stretch;
    }
    
    .btn-get-tickets {
      width: 100%;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    *,
        *::before,
        *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
  
  @media (min-width: 40em) {
    .carousel-caption p {
      margin-bottom: 1.25rem;
      font-size: 1.25rem;
      line-height: 1.4;
    }
  }
  
  @media (max-width: 576px) {
    .carousel-item {
      height: 450px;
    }
  }
  
