:root {
  --primary-blue: #2563eb;
  --primary-hover: #1d4ed8;
  --dark-blue: #0f172a;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s ease;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-white);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  background: var(--bg-white) !important;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark-blue) !important;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 0.5rem;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-blue) !important;
}

.btn-primary-custom {
  background-color: var(--primary-blue);
  border: none;
  border-radius: 50px;
  padding: 0.6rem 1.8rem;
  color: #fff;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  color: #fff;
}

/* Texts & Headings */
h1, h2, h3, h4, h5, h6 {
  color: var(--dark-blue);
  font-weight: 800;
  line-height: 1.2;
}

/* Sections */
section {
  padding: 80px 0;
}

.bg-light-section {
  background-color: var(--bg-light);
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 1) 90%);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-blue);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 400;
}

.check-list li {
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-weight: 500;
}

.check-list i {
  color: var(--primary-blue);
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.hero-image-container {
  position: relative;
  z-index: 1;
}

.hero-image-container img {
  width: 100%;
  max-width: 600px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
}

/* Country Pills */
.country-pill {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.2rem;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  font-weight: 500;
}

.country-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
}

.country-pill img {
  width: 24px;
  height: auto;
  margin-right: 10px;
  border-radius: 2px;
}

.country-pill span {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Registration Showcase Box */
.registration-box {
  background: var(--bg-white);
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.dashboard-dark-card {
  background: var(--dark-blue);
  border-radius: 16px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Feature Cards */
.feature-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-card .icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}

.feature-card.dark-theme {
  background: var(--dark-blue);
  color: #fff;
  border: none;
}

.feature-card.dark-theme h4 {
  color: #fff;
}

.feature-card.dark-theme p {
  color: #cbd5e1;
}

.feature-card.dark-theme .icon-wrapper {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Accordion */
.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  color: var(--dark-blue);
  padding: 1.25rem 1.5rem;
  background: var(--bg-white);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-blue);
  background: var(--bg-light);
}

/* Footer */
footer {
  background: var(--dark-blue);
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition);
}

.footer-link:hover {
  color: #fff;
}

footer h5 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Map bg */
.map-bg-section {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 500"><path fill="%23f1f5f9" d="M120,200 Q200,100 300,150 T500,100 T700,200 T900,150 L900,400 L120,400 Z"></path></svg>');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
}

.gs-reveal {
  visibility: hidden;
}

/* Floating Animations */
@keyframes float {
  0% { transform: translateY(0px) translateX(0px); }
  33% { transform: translateY(-30px) translateX(20px); }
  66% { transform: translateY(20px) translateX(-20px); }
  100% { transform: translateY(0px) translateX(0px); }
}

@keyframes float-reverse {
  0% { transform: translateY(0px) translateX(0px) scale(1); }
  33% { transform: translateY(25px) translateX(-15px) scale(1.05); }
  66% { transform: translateY(-15px) translateX(15px) scale(0.95); }
  100% { transform: translateY(0px) translateX(0px) scale(1); }
}

.floating-shape {
  animation: float 15s ease-in-out infinite;
  z-index: 0;
}

.floating-shape-reverse {
  animation: float-reverse 18s ease-in-out infinite;
  z-index: 0;
}

/* Dashboard Mockup Animations */
@keyframes feed-slide {
    0%, 15% { transform: translateY(0); }
    20%, 35% { transform: translateY(-54px); }
    40%, 55% { transform: translateY(-108px); }
    60%, 75% { transform: translateY(-54px); }
    80%, 95% { transform: translateY(0); }
    100% { transform: translateY(0); }
}
.transaction-feed {
    animation: feed-slide 15s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes cursor-move {
    0% { top: 70%; left: 80%; opacity: 0; }
    10% { opacity: 1; }
    20% { top: 35%; left: 70%; } /* Move to top right dropdown */
    25% { transform: scale(0.9); }
    30% { transform: scale(1); }
    40% { top: 55%; left: 45%; } /* Move to balance */
    45% { transform: scale(0.9); }
    50% { transform: scale(1); }
    60% { top: 80%; left: 30%; } /* Move to sidebar */
    65% { transform: scale(0.9); }
    70% { transform: scale(1); }
    80% { top: 70%; left: 80%; opacity: 0; }
    100% { opacity: 0; }
}
.mock-cursor {
    animation: cursor-move 10s infinite ease-in-out;
    pointer-events: none;
    z-index: 1000;
}

/* Orbit Animations */
@keyframes orbit-spin {
  100% { transform: rotate(360deg); }
}
@keyframes orbit-spin-reverse {
  100% { transform: rotate(-360deg); }
}

.orbit-spin-slow {
  animation: orbit-spin 25s linear infinite;
}
.orbit-spin-slow-reverse {
  animation: orbit-spin-reverse 35s linear infinite;
}
.orbit-item {
  animation: orbit-spin-reverse 25s linear infinite;
}
.orbit-item-reverse {
  animation: orbit-spin 35s linear infinite;
}

/* Elegant Stat Box */
.stat-box {
  padding: 1rem;
  background: white;
  border-radius: 12px;
  position: relative;
  z-index: 10;
}

/* Animated Showcase Styles */
.showcase-content {
  min-height: 450px;
}
.showcase-panel {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.98) translateY(10px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.showcase-panel.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  z-index: 5;
}
.showcase-container {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.showcase-sidebar {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.country-tab {
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.country-tab:hover {
  background: rgba(255, 255, 255, 0.05);
}
.country-tab.active {
  background: rgba(37, 99, 235, 0.15);
  border-left-color: var(--primary-blue);
  color: #fff !important;
}
.country-tab.active span {
  color: #fff !important;
  font-weight: 700;
}
.info-card {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
}

/* Forms (Register page) */
.form-control, .form-select {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.form-control:focus, .form-select:focus {
  background: var(--bg-white);
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

.form-label {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Register Tabs */
.nav-pills.light-theme {
  background: var(--bg-light);
  padding: 0.5rem;
  border-radius: 50px;
  border: 1px solid var(--border-color);
}

.nav-pills.light-theme .nav-link {
  color: var(--text-muted) !important;
  border-radius: 50px;
  font-weight: 600;
}

.nav-pills.light-theme .nav-link.active {
  background-color: var(--primary-blue);
  color: #fff !important;
  box-shadow: var(--shadow-md);
}

.register-card-light {
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}
.hover-up { 
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
} 
.hover-up:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important; 
}

/* Fix Bootstrap Icon alignment inside circular flex containers */
.rounded-circle.d-flex i[class*="bi"] {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animated World Map Background */
@keyframes map-pan {
  0% { transform: scale(1.1) translateX(0); }
  50% { transform: scale(1.1) translateX(-2%); }
  100% { transform: scale(1.1) translateX(0); }
}

.map-bg-animated {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/a/a9/World_map_without_Antarctica.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
  opacity: 0.06;
  filter: sepia(100%) hue-rotate(190deg) saturate(500%);
  animation: map-pan 30s ease-in-out infinite;
  pointer-events: none;
}

/* 3D Global Map Effect */
.map-3d-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/a/a9/World_map_without_Antarctica.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.8)) sepia(100%) hue-rotate(190deg) saturate(500%);
  transform-style: preserve-3d;
  animation: rotate3dMap 40s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes rotate3dMap {
  0% { transform: translate(-50%, -50%) perspective(1500px) rotateX(60deg) rotateZ(0deg); }
  100% { transform: translate(-50%, -50%) perspective(1500px) rotateX(60deg) rotateZ(360deg); }
}

/* --- Added from register.php --- */
.iti { width: 100%; }
.iti__flag {background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags.png");}
@media (min-resolution: 2x) {
    .iti__flag {background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags@2x.png");}
}
.iti__country-list {
    max-height: 200px !important;
    width: max-content;
    min-width: 100%;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: none;
    border-radius: 0.5rem;
}
.iti__country { padding: 8px 10px; }

/* --- Added from index.php --- */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

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

.dark-globe-section .text-primary {
    color: #2563eb !important;
    text-shadow: 0 0 15px rgba(37, 99, 235, 0.1);
}

.dark-globe-section .text-info {
    color: #0284c7 !important;
    text-shadow: 0 0 15px rgba(2, 132, 199, 0.1);
}

/* Improved Globe Responsiveness */
@media (max-width: 991px) {
    #globe-stats-section {
        min-height: auto !important;
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .globe-responsive-container {
        width: 100% !important;
        right: 0 !important;
        top: 50% !important;
        height: 50% !important;
        opacity: 0.3;
    }
}

/* Showcase Terminal (Light Theme) */
.region-pill { 
    background: #f1f5f9; border: 1px solid #e2e8f0; color: #64748b; padding: 0.6rem 1.2rem; 
    border-radius: 50px; white-space: nowrap; transition: var(--transition); display: flex; align-items: center; gap: 0.75rem; 
}
.region-pill img { width: 20px; height: 14px; border-radius: 3px; object-fit: cover; }
.region-pill:hover, .region-pill.active { background: var(--primary-blue); border-color: var(--primary-blue); color: white; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(37,99,235,0.3); }

.floating-vault-card { 
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); border-radius: 24px; 
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); overflow: hidden; position: relative; transition: var(--transition);
    transform: perspective(1000px) rotateX(8deg) rotateY(-5deg); z-index: 1;
}
.floating-vault-card::before { 
    content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 70%); pointer-events: none;
}
.vault-inner { position: relative; z-index: 2; }
.vault-logo { font-weight: 800; color: white; font-size: 1.25rem; }
.vault-logo span { color: var(--primary-blue); }
.vault-chip { font-size: 2rem; color: #fbbf24; opacity: 0.8; }
.currency-tag { background: var(--primary-blue); color: white; padding: 0.4rem 0.8rem; border-radius: 8px; font-weight: 800; font-size: 1.1rem; }
.currency-tag span { font-size: 0.85rem; opacity: 0.8; margin-left: 4px; }
.vault-account-number { letter-spacing: 0.2em; text-shadow: 0 4px 8px rgba(0,0,0,0.3); font-size: calc(1.3rem + 1vw); }

.metadata-entry { padding-bottom: 0.75rem; margin-bottom: 0.75rem; border-bottom: 1px solid #e2e8f0; display: flex; flex-direction: column; }
.metadata-entry .label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: #64748b; font-weight: 700; margin-bottom: 0.25rem; }
.metadata-entry .value { font-weight: 700; font-size: 1rem; }

.scrollbar-hidden::-webkit-scrollbar { display: none; }
.scrollbar-hidden { -ms-overflow-style: none; scrollbar-width: none; }

/* Partner Cards Styling */
.partner-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    width: 100%;
    max-width: 170px;
    height: 90px;
    text-decoration: none;
}

.partner-card:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
    background: #fff;
    z-index: 2;
}

.partner-logo {
    max-height: 65px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.9);
    opacity: 0.45;
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

@media (max-width: 991px) {
    .partner-card {
        max-width: 160px;
        height: 80px;
        padding: 15px 20px;
    }
}

/* ==========================================================================
   Responsive Improvements (Mobile & iPad)
   ========================================================================== */

/* 1. Fluid Typography Scaling */
@media (max-width: 991px) {
  h1, .display-1 { font-size: 2.75rem !important; }
  h2, .display-2 { font-size: 2.25rem !important; }
  h3, .display-3 { font-size: 1.85rem !important; }
  .display-6 { font-size: 1.75rem !important; }
  
  .hero-title { font-size: 2.75rem !important; line-height: 1.1; }
  .hero-subtitle { font-size: 1.05rem !important; }
}

@media (max-width: 767px) {
  h1, .display-1 { font-size: 2.25rem !important; }
  h2, .display-2 { font-size: 1.85rem !important; }
  h3, .display-3 { font-size: 1.65rem !important; }
  .display-6 { font-size: 1.5rem !important; }
  
  .hero-title { font-size: 2.25rem !important; }
  .hero-subtitle { font-size: 1rem !important; }
  
  section { padding: 50px 0 !important; }
  .hero-section { padding: 100px 0 50px !important; }
}

/* 2. Fix Dashboard Mockup (Hero) Scaling */
@media (max-width: 575px) {
  .dashboard-mockup {
    transform-origin: top center;
    transform: scale(0.9);
    margin-bottom: -10% !important; /* offset scale reduction */
  }
}

@media (max-width: 480px) {
  .dashboard-mockup {
    transform: scale(0.75);
    margin-bottom: -25% !important;
  }
  .hero-section .btn-lg {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* 3. Fix Registration Showcase (Center Section) scaling */
@media (max-width: 991px) {
  .showcase-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    padding: 10px !important;
    justify-content: flex-start !important;
  }
  
  .country-tab {
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 8px 15px !important;
    margin-bottom: 0 !important;
    margin-right: 5px;
  }
  
  .country-tab.active {
    border-bottom-color: var(--primary-blue);
  }
  
  .showcase-content {
    min-height: 380px !important;
  }
}

@media (max-width: 767px) {
  .info-card {
    padding: 15px !important;
  }
  .info-card h4 {
    font-size: 1.25rem;
  }
  .info-card .bg-light.rounded-circle {
    display: none !important; /* Keep it clean on mobile */
  }
}

/* 4. Navbar Fixes for Mobile */
@media (max-width: 991px) {
  .navbar-collapse {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 15px;
  }
}

/* 5. Feature List for Mobile */
@media (max-width: 767px) {
  .check-list li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem !important;
  }
}

/* 6. Partner Section Alignment fix */
@media (max-width: 991px) {
    .partner-card {
        max-width: 140px !important;
        height: 75px !important;
        padding: 10px 15px !important;
    }
}
/* Region Swiper Styling */
.region-swiper {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    display: flex;
    overflow-x: auto;
    width: 100%;
}
.region-swiper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.scrollbar-hidden {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.scrollbar-hidden::-webkit-scrollbar {
    display: none;
}


/* Modern Footer Styles - High Visibility */
.footer-modern {
    color: #cbd5e1 !important;
}
.footer-modern h6 {
    color: #ffffff !important;
    letter-spacing: 1.5px;
}
.footer-modern p {
    color: #94a3b8 !important;
    line-height: 1.8;
}
.footer-link-modern {
    color: #94a3b8 !important; /* Force slate color to avoid browser default blue */
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    font-size: 0.95rem;
}
.footer-link-modern:hover {
    color: #ffffff !important;
    transform: translateX(3px);
}
.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icon-btn:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}
.legal-toggle-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    transition: all 0.3s ease;
}
.legal-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}
.rotate-icon {
    transition: transform 0.3s ease;
}
.legal-toggle-btn[aria-expanded="true"] .rotate-icon {
    transform: rotate(45deg);
}
.hover-white:hover {
    color: #fff !important;
}

