/* 
  Accendo Law - Enhanced Luxury Corporate Law Firm Design System
  Inspired by accendolaw.com with premium dark navy, glassmorphism, & gold luxury accents
  Headings: Cormorant Garamond | Body: Plus Jakarta Sans
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-navy: #051329;
  --primary-navy-dark: #020914;
  --primary-navy-light: #0A1E3F;
  --primary-navy-card: #0D2347;
  --secondary-blue: #1E40AF;
  --accent-gold: #D4AF37;
  --accent-gold-hover: #F3E5AB;
  --accent-gold-dark: #AA820A;
  --accent-gold-light: rgba(212, 175, 55, 0.12);
  --accent-gold-glow: rgba(212, 175, 55, 0.25);
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border-color: #E2E8F0;
  --border-dark: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(5, 19, 41, 0.94);
  --glass-border: rgba(212, 175, 55, 0.2);
  --shadow-sm: 0 4px 12px rgba(2, 9, 20, 0.04);
  --shadow-md: 0 10px 30px rgba(2, 9, 20, 0.08);
  --shadow-lg: 0 20px 50px rgba(2, 9, 20, 0.16);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Global Reset & Base Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  color: var(--primary-navy);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

/* Numeric & Contact Typography */
[href^="tel:"], [href*="wa.me"], .phone-number, .stat-number, .number-font {
  font-family: var(--font-body) !important;
  font-weight: 700;
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: 0.03em;
}

a {
  color: var(--secondary-blue);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--accent-gold);
}

::selection {
  background-color: var(--accent-gold);
  color: var(--primary-navy-dark);
}

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: var(--primary-navy-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold-hover);
}

/* Luxury Buttons */
.btn-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #AA820A 100%);
  color: var(--primary-navy-dark);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 2.2rem;
  border-radius: 6px;
  border: 1px solid var(--accent-gold);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.02em;
}

.btn-gold:hover, .btn-gold:focus {
  background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 100%);
  color: var(--primary-navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent-gold);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 2.2rem;
  border-radius: 6px;
  border: 1px solid var(--accent-gold);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-outline-gold:hover, .btn-outline-gold:focus {
  background: rgba(212, 175, 55, 0.15);
  color: var(--bg-white);
  border-color: var(--accent-gold-hover);
  transform: translateY(-3px);
}

.btn-navy {
  background: var(--primary-navy);
  color: var(--bg-white);
  font-weight: 600;
  font-family: var(--font-body);
  padding: 0.85rem 2rem;
  border-radius: 6px;
  border: 1px solid var(--primary-navy);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-navy:hover {
  background: var(--primary-navy-light);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

/* Subtitle Pill */
.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  background: var(--accent-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.title-line-center::after, .title-line-left::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  margin-top: 1rem;
}

.title-line-center::after {
  margin-left: auto;
  margin-right: auto;
}

/* Executive Kirkland-Style Header Navbar */
.accendo-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 0.9rem 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(10, 25, 47, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.accendo-navbar.navbar-scrolled {
  padding: 0.65rem 0;
  background: rgba(6, 17, 34, 0.98);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  text-decoration: none;
}

.brand-logo-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-logo-img {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.brand-divider {
  display: inline-block;
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.brand-title-text {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-title-text .text-gold {
  color: var(--accent-gold);
  font-weight: 500;
}

/* Executive Navbar Links & Underline Animation */
.accendo-navbar .nav-link,
.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.6rem 1rem !important;
  position: relative !important;
  display: inline-block;
  transition: color 0.3s ease;
}

.accendo-navbar .nav-link:hover,
.accendo-navbar .nav-link.active,
.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold) !important;
}

.accendo-navbar .nav-link::after,
.nav-link::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 2px;
  height: 2px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.accendo-navbar .nav-link:hover::after,
.accendo-navbar .nav-link.active::after,
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}



/* Mega Menu */
.dropdown-menu.mega-menu {
  width: 780px;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: var(--primary-navy-dark);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.75rem;
  margin-top: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.mega-menu-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.mega-menu-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mega-menu-title {
  font-weight: 600;
  color: var(--bg-white);
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.mega-menu-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.35;
}

/* Hero Section (Enhanced Luxury Accendo Style) */
.hero-section {
  position: relative;
  min-height: 92vh;
  background: linear-gradient(180deg, rgba(2, 9, 20, 0.85) 0%, rgba(5, 19, 41, 0.95) 100%), url('../images/hero_background.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 100px;
  color: var(--bg-white);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 75% 25%, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-title {
  font-size: 4.25rem;
  font-weight: 600;
  line-height: 1.12;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--accent-gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 820px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Credibility Cards Grid */
.credibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.credibility-card {
  background: rgba(13, 35, 71, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 1.5rem;
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.credibility-card:hover {
  transform: translateY(-5px);
  background: rgba(13, 35, 71, 0.9);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.credibility-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.credibility-text h5 {
  color: var(--bg-white);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.credibility-text p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.45;
}

/* Logo Marquee */
.trusted-by-section {
  background: var(--primary-navy-dark);
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border-dark);
}

.trusted-brand-logo {
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition-smooth);
}

.trusted-brand-logo:hover {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
}

/* Judicial Forums Grid */
.forum-badge-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
}

.forum-badge-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.forum-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-gold-light);
  color: var(--accent-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
  transition: var(--transition-smooth);
}

.forum-badge-card:hover .forum-icon {
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
}

.forum-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.3rem;
}

.forum-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Practice Area Cards */
.practice-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--accent-gold);
  border-radius: 12px;
  padding: 2.25rem 1.75rem;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.practice-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.practice-icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: var(--accent-gold-light);
  color: var(--accent-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.practice-card:hover .practice-icon {
  background: var(--primary-navy);
  color: var(--accent-gold);
}

.practice-title {
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.85rem;
}

.practice-desc {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.practice-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  transition: var(--transition-smooth);
}

.practice-card:hover .practice-link {
  color: var(--primary-navy);
  transform: translateX(4px);
}

/* Subpage Hero */
.page-hero {
  background: linear-gradient(180deg, var(--primary-navy-dark) 0%, var(--primary-navy) 100%);
  padding: 150px 0 80px;
  color: var(--bg-white);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--glass-border);
}

.page-hero-title {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--bg-white);
  margin-bottom: 0.85rem;
}

.breadcrumb-item a {
  color: var(--accent-gold);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

/* Legal Insights Cards */
.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.blog-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-box img {
  transform: scale(1.08);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-navy);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  border: 1px solid var(--accent-gold);
}

.blog-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.blog-title {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--text-body);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Blog Filter Pill Bar */
.blog-filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.blog-filter-btn {
  border-radius: 50px;
  padding: 0.5rem 1.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.blog-search-box {
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
}

.blog-search-box input {
  padding-left: 3rem;
  height: 52px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.blog-search-box i {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-navy-light) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Footer */
.accendo-footer {
  background: var(--primary-navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid var(--border-dark);
}

.footer-heading {
  font-family: var(--font-heading);
  color: var(--bg-white);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-heading::after {
  content: '';
  display: block;
  width: 35px;
  height: 2px;
  background: var(--accent-gold);
  margin-top: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  margin-top: 3.5rem;
  font-size: 0.88rem;
}

/* Floating Actions Container */
.floating-actions-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn-whatsapp, .floating-btn-call {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #FFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.floating-btn-whatsapp {
  background: #25D366;
}

.floating-btn-whatsapp:hover {
  transform: scale(1.1);
  color: #FFF;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.floating-btn-call {
  background: var(--primary-navy);
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
}

.floating-btn-call:hover {
  transform: scale(1.1);
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.85rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
}

/* Executive FAQ Accordion Styling */
.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 12px !important;
  margin-bottom: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.accordion-item:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.accordion-button {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-navy);
  background: var(--bg-white);
  padding: 1.35rem 1.75rem;
  box-shadow: none !important;
  transition: var(--transition-smooth);
}

.accordion-button:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 0.25rem var(--accent-gold-light) !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-navy);
  background: var(--accent-gold-light);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.accordion-collapse {
  display: none;
  transition: var(--transition-smooth);
}

.accordion-collapse.show {
  display: block !important;
}

.accordion-body {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--text-body);
  line-height: 1.75;
  padding: 1.75rem;
  background: var(--bg-white);
}

/* Regulatory Disclaimer Modal & Animated Gold Line Styling */
#regulatoryDisclaimerModal {
  z-index: 1080 !important;
}

#regulatoryDisclaimerModal .modal-content {
  border: 2px solid var(--accent-gold) !important;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.4), 0 20px 60px rgba(0, 0, 0, 0.7) !important;
  position: relative;
  overflow: hidden;
  animation: modalSlideGlow 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Scanning Metallic Gold Hairline Animation */
#regulatoryDisclaimerModal .modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, transparent, #D4AF37, #FFFFFF, #D4AF37, transparent);
  background-size: 200% 100%;
  animation: goldLineScan 3s linear infinite;
  z-index: 10;
}

@keyframes goldLineScan {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes modalSlideGlow {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(24px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.disclaimer-animated-line {
  display: block;
  height: 2.5px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  margin-top: 0.4rem;
  border-radius: 2px;
  animation: lineExpand 0.8s ease-out forwards;
}

@keyframes lineExpand {
  0% { width: 0; }
  100% { width: 90px; }
}

.modal-backdrop {
  z-index: 1075 !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(6, 17, 34, 0.88) !important;
}
