/* Base */
:root {
  --blue: #003366;
  --gold: #FFB800;
  --text: #0e1b2a;
  --muted: #6b7a90;
  --bg: #ffffff;
  --shade: rgba(0, 0, 0, .06);
  --blue-600: #012a52;
  --blue-700: #011f3d;
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 40%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Enhanced Header Styles */
.site-header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo img {
  height: 40px;
  display: inline-block;
}

.site-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
}

.nav {
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(255, 184, 0, 0.1);
}

.nav-link.submenu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.dropdown-arrow {
  font-size: 0.7em;
  transition: transform 0.3s ease;
}

.has-submenu:hover .dropdown-arrow,
.has-submenu button[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

/* Submenu Styles */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1001;
}

.has-submenu:hover .submenu,
.has-submenu.open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu-link {
  display: block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.submenu-link:hover,
.submenu-link.active {
  background: rgba(255, 184, 0, 0.1);
  color: var(--gold);
  border-left-color: var(--gold);
}

/* Language & Admin Styles */
.lang-group .submenu {
  min-width: 150px;
}

.lang .submenu-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-btn, .login-btn {
  background: var(--gold);
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}

.admin-btn:hover, .login-btn:hover {
  background: #e6a800;
  transform: translateY(-1px);
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.hamburger-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
  height: 18px;
  position: relative;
}

.hamburger-line {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 1px;
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

/* Mobile Styles */
@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 300px;
    background: white;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 5rem 1.5rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-overlay.open {
    display: block;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    justify-content: space-between;
    border-radius: 0;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .has-submenu .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8f9fa;
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .has-submenu.open .submenu {
    max-height: 200px;
  }

  .submenu-link {
    padding: 0.75rem 1rem 0.75rem 2rem;
    border-left: none;
    border-bottom: 1px solid #e8e8e8;
  }

  .submenu-link:last-child {
    border-bottom: none;
  }

  .lang-group .submenu {
    max-height: 120px;
  }

  .admin-link {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
  }

  .admin-btn, .login-btn {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0.75rem 0;
  }

  .site-name {
    font-size: 1.25rem;
  }

  .nav-links {
    width: 280px;
  }
}

/* Main content padding to account for fixed header */
main {
  padding-top: 80px;
}

/* Hero - Enhanced Video Styles */
.hero {
  position: relative;
  height: 100vh; /* Full viewport height */
  max-height: 600px; /* Limit maximum height for desktop */
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0;
  margin: 0;
  max-width: 100%;
  width: 100%;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures video covers the container */
  object-position: center; /* Centers the video */
  filter: contrast(1.05) saturate(1.1) brightness(.75);
  z-index: 0;
}

.hero .overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: var(--spacing-2xl) var(--spacing-lg);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 31, 61, .7), rgba(1, 31, 61, .35) 40%, rgba(1, 31, 61, .6));
  z-index: 1;
}

.hero .card,
.hero-card {
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  background: transparent;
  backdrop-filter: none;
}

.hero .card h1,
.hero-card h1 {
  text-shadow: 0 4px 16px rgba(0, 0, 0, .6), 0 2px 6px rgba(0, 0, 0, .4);
  color: #ffffff;
}

.hero .card p,
.hero-card p {
  text-shadow: 0 3px 12px rgba(0, 0, 0, .5), 0 1px 4px rgba(0, 0, 0, .3);
  color: #ffffff !important;
}

/* Hero Button Styles */
.hero .btn,
.hero-card .btn {
  margin: 0 var(--spacing-xs);
  display: inline-block;
}

.hero .btn-primary,
.hero-card .btn-primary {
  background: var(--gold);
  color: #0e1b2a;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 16px rgba(255, 184, 0, .5), 0 2px 8px rgba(0, 0, 0, .3);
  text-shadow: none;
}

.hero .btn-primary:hover,
.hero-card .btn-primary:hover,
.hero .btn-primary:focus-visible,
.hero-card .btn-primary:focus-visible {
  background: #ffc933;
  box-shadow: 0 6px 20px rgba(255, 184, 0, .6), 0 4px 12px rgba(0, 0, 0, .4);
  transform: translateY(-2px);
}

.hero .btn-outline,
.hero-card .btn-outline {
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, .4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .2);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
  font-weight: 600;
}

.hero .btn-outline:hover,
.hero-card .btn-outline:hover,
.hero .btn-outline:focus-visible,
.hero-card .btn-outline:focus-visible {
  background: rgba(255, 255, 255, .25);
  border-color: rgba(255, 255, 255, .6);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .3);
  transform: translateY(-2px);
  color: #ffffff;
}

.hero .btn-outline:active,
.hero-card .btn-outline:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, .8);
  border-radius: 16px;
  opacity: .9;
}

.scroll-indicator::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDot 1.4s infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

.hero h1 {
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 1.25;
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: clamp(15px, 1.8vw, 17px);
  opacity: .95;
  margin: 0 0 var(--spacing-md);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #ddd;
}

/* Mobile-specific video adjustments */
@media (max-width: 768px) {
  .hero {
    height: 80vh; /* Slightly shorter on mobile */
    max-height: 600px; /* Reduced max height for mobile */
  }
  
  .hero-video {
    object-position: center top; /* Adjust focus for mobile */
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .hero {
    height: 70vh; /* Even shorter on very small screens */
    max-height: 500px;
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    /* Remove any potential margins or padding */
    margin: 0;
    padding: 0;
    /* Ensure it covers the entire container without distortion */
    min-height: 100%;
    min-width: 100%;
    /* Prevent any overflow */
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* Ensure the container doesn't add any extra spacing */
  .hero .overlay {
    padding: var(--spacing-md) var(--spacing-sm);
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Optional: Add a subtle border if needed */
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 2;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  min-height: 44px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  border: none;
  box-shadow: none;
  user-select: none;
}

.btn-primary {
  background: var(--gold);
  color: #0e1b2a;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 12px rgba(255, 184, 0, .3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ffb800;
  box-shadow: 0 6px 16px rgba(255, 184, 0, .4);
  outline: 2px solid rgba(0, 51, 102, .3);
  outline-offset: 2px;
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--blue);
  color: #fff;
  outline: 2px solid rgba(0, 51, 102, .3);
  outline-offset: 2px;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn:active {
  transform: translateY(1px);
}

/* Add to style.css - New button styles for professional network */
.btn-network {
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
  color: white !important;
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
  text-shadow: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-network::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-network:hover::before {
  left: 100%;
}

.btn-network:hover,
.btn-network:focus-visible {
  background: linear-gradient(135deg, #7C3AED, #6D28D9);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-network:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Hero button adjustments for multiple buttons */
.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
}

/* Mobile adjustments for hero buttons */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    margin: 0;
  }
}

/* Sections */
section {
  padding: var(--spacing-2xl) 0;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 var(--spacing-sm);
  line-height: 1.3;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 var(--spacing-lg);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid #eef3f9;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.card p {
  margin: 0 0 14px;
  line-height: 1.7;
  color: var(--text);
  font-size: 14px;
  letter-spacing: -0.01em;
}

.card p:last-child {
  margin-bottom: 0;
}

.card .btn {
  margin-top: var(--spacing-sm);
}

/* Testimonials Carousel */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.carousel-controls {
  position: absolute;
  bottom: var(--spacing-md);
  left: var(--spacing-md);
  display: flex;
  gap: var(--spacing-sm);
}

.carousel-button {
  background: rgba(255, 255, 255, .8);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: #fff;
  box-shadow: var(--shadow-md);
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.carousel-button svg {
  width: 16px;
  height: 16px;
  fill: var(--blue);
}

.testimonial {
  background: #f9fbff;
  border: 1px solid #e6eef7;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  margin: var(--spacing-sm);
  min-width: 280px;
  max-width: 320px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.testimonial p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: var(--spacing-md);
}

.testimonial .muted {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* Partners logos */
.partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  align-items: center;
}

.partners img {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
  max-width: 100%;
  height: auto;
}

.partners img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

/* Timeline */
.timeline {
  position: relative;
  margin-left: 20px;
  padding-left: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #e4eaf2;
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: var(--spacing-lg);
  padding-left: 20px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #e4eaf2;
  border-radius: 2px;
}

.timeline-item .circle {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 50%;
}

.timeline-item h4 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.timeline-item p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.modal.open {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.modal-card h3 {
  margin: 0 0 var(--spacing-sm);
  font-size: 22px;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.modal-card p {
  margin: 0 0 var(--spacing-md);
  line-height: 1.6;
  color: var(--text);
  font-size: 14px;
  letter-spacing: -0.01em;
}

.modal-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover,
.modal-close:focus-visible {
  color: var(--blue);
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* Bank account cards */
.bank-card {
  background: linear-gradient(135deg, #ffffff, #f7fbff);
  border: 1px solid #d9e6f5;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.bank-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid #d9e6f5;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.bank-row .btn {
  flex-shrink: 0;
}

.bank-badge {
  padding: 8px 16px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.bank-meta {
  flex: 1;
  min-width: 0;
}

.bank-meta .bank-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 var(--spacing-xs);
  letter-spacing: -0.02em;
}

.account-number {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  font-family: 'Courier New', monospace;
  word-break: break-all;
}

.bank-row:last-child {
  border-bottom: none;
}

.bank-row .label {
  font-size: 14px;
  color: var(--muted);
}

.bank-row .value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* Form elements */
label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #e0e6ef;
  border-radius: var(--border-radius);
  background: #fff;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}

select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23003366" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding: 12px 16px;
  cursor: pointer;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  align-items: center;
  flex-wrap: wrap;
}

.form-actions .btn {
  flex: 0 1 auto;
}

.form-actions .btn:only-child {
  flex: 0 1 auto;
}

.form-actions .note {
  margin: 0;
  flex: 1 1 100%;
  order: 2;
}

.form-actions .btn + .note {
  margin-left: var(--spacing-sm);
  flex: 1 1 auto;
  order: 1;
}

/* Text utilities */
.muted {
  color: var(--muted);
}

.small {
  font-size: 13px;
}

.bold {
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: #0b223d;
  color: #d9e3f2;
  padding: var(--spacing-2xl) 0;
}

.footer-grid {
  display: grid;
  gap: var(--spacing-lg);
  grid-template-columns: repeat(4, 1fr);
}

.footer-grid h4,
.footer-grid h5 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-grid h5 {
  font-size: 14px;
  margin-bottom: var(--spacing-sm);
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin: 0 0 var(--spacing-sm);
}

.footer-grid li:last-child {
  margin-bottom: 0;
}

.footer-grid a {
  color: #9ca3af;
  text-decoration: none;
  transition: var(--transition);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #fff;
  text-decoration: underline;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.social {
  display: flex;
  gap: var(--spacing-sm);
}

.social a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #1b3b63;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 36px;
  transition: var(--transition);
}

.social a:hover,
.social a:focus-visible {
  background: #fff;
  color: #003366;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.footer-bottom {
  border-top: 1px solid #1a3a6b;
  padding: var(--spacing-md) 0 0;
  margin-top: var(--spacing-lg);
  text-align: center;
  color: #9ca3af;
  font-size: 13px;
  letter-spacing: -0.01em;
}

/* Animations */
.fadeInUp {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.fadeInUp.delay-1 {
  animation-delay: 0.2s;
}

.fadeInUp.delay-2 {
  animation-delay: 0.4s;
}

.fadeInUp.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.stat {
  background: linear-gradient(135deg, #ffffff, #f7fbff);
  border: 1px solid #e9f0f7;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat .num {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 var(--spacing-sm);
  letter-spacing: -0.02em;
}

.stat .label {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  letter-spacing: -0.01em;
}

/* Enhanced Partners Slider Styles */
.partners-slider-container {
  position: relative;
  overflow: hidden;
  padding: var(--spacing-lg) 0;
  mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
}

.partners-slider-track {
  display: flex;
  gap: var(--spacing-2xl);
  animation: slidePartners 60s linear infinite;
  width: max-content;
  will-change: transform;
}

.partner-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 90px;
  transition: var(--transition);
  padding: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 51, 102, 0.1);
}

.partner-slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: white;
}

.partner-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: var(--transition);
}

.partner-slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.partner-slide a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.partner-slide a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.partner-slide a:hover::after {
  width: 60%;
}

/* Smooth continuous animation */
@keyframes slidePartners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-160px * var(--partner-count) - var(--spacing-2xl) * var(--partner-count)));
  }
}

/* Pause animation on hover for better interaction */
.partners-slider-container:hover .partners-slider-track {
  animation-play-state: paused;
}

/* Loading state */
.partners-slider-container.loading .partners-slider-track {
  animation: none;
}

/* No partners message */
.no-partners {
  text-align: center;
  padding: var(--spacing-2xl);
  color: var(--muted);
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 968px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero .overlay {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-slide {
    width: 140px;
    height: 80px;
  }
  
  .partners-slider-track {
    gap: var(--spacing-xl);
    animation-duration: 50s;
  }
  
  @keyframes slidePartners {
    100% {
      transform: translateX(calc(-140px * var(--partner-count) - var(--spacing-xl) * var(--partner-count)));
    }
  }
}

/* Responsive - Mobile */
@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 var(--spacing-md);
  }

  .section-title {
    font-size: 24px;
  }

  .section-sub {
    font-size: 15px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .partners {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero .overlay {
    padding: var(--spacing-md) var(--spacing-sm);
  }

  .hero h1 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #cfe1ff;
  }

  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .hero .btn,
  .hero-card .btn {
    width: 100%;
    max-width: 280px;
    margin: 0;
  }

  .card {
    padding: var(--spacing-md);
  }

  .card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .card p {
    font-size: 14px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-sub {
    font-size: 14px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
    min-height: 40px;
  }

  .site-footer {
    padding: var(--spacing-lg) 0;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .footer-grid h4,
  .footer-grid h5 {
    font-size: 15px;
  }

  .footer-bottom {
    padding: var(--spacing-md) 0;
    border-top: 1px solid #eef3f9;
  }

  .bank-card {
    padding: var(--spacing-md);
  }

  .bank-name {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .bank-row .label,
  .bank-row .value {
    font-size: 13px;
  }

  .stat {
    padding: var(--spacing-md);
  }

  .stat .num {
    font-size: 28px;
  }

  .stat .label {
    font-size: 13px;
  }

  .modal-card {
    padding: var(--spacing-md);
  }
  .modal-card h3 {
    font-size: 20px;
  }
  .modal-card p {
    font-size: 13px;
  }

  .partner-slide {
    width: 120px;
    height: 70px;
    padding: var(--spacing-xs);
  }
  
  .partners-slider-track {
    gap: var(--spacing-lg);
    animation-duration: 40s;
  }
  
  .partners-slider-container {
    mask: linear-gradient(90deg, transparent, white 8%, white 92%, transparent);
  }
  
  @keyframes slidePartners {
    100% {
      transform: translateX(calc(-120px * var(--partner-count) - var(--spacing-lg) * var(--partner-count)));
    }
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .partners-slider-track {
    animation: none;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: var(--spacing-lg);
  }
  
  .partners-slider-container {
    mask: none;
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}