/* ==========================================================================
   UNISTAR MULTIMEDIA LIMITED — INVESTOR RELATIONS PORTAL (UIRP)
   Fintech Aligned Design System & Styling Rules
   Strictly aligned with PRD requirements & SEBI LODR Regulation 46
   ========================================================================== */

:root {
  --navy-dark: #0A192F;
  --navy-main: #0F2042;
  --navy-light: #1E3A8A;
  --charcoal-bg: #1E293B;
  --charcoal-dark: #0F172A;
  --gold-accent: #D4AF37;
  --gold-hover: #C5A059;
  --red-accent: #D92525;
  --red-soft: #FEE2E2;
  --green-positive: #10B981;
  --green-soft: #D1FAE5;
  --slate-bg: #F8FAFC;
  --slate-card: #FFFFFF;
  --border-light: #E2E8F0;
  --border-dark: #334155;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(10,25,47,0.08);
  --shadow-lg: 0 10px 30px rgba(10,25,47,0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --base-font-size: 16px;
}

/* Base Accessibility Modes */
body.font-lg { --base-font-size: 18px; }
body.font-xl { --base-font-size: 20px; }
body.high-contrast {
  --navy-dark: #000000;
  --navy-main: #050B14;
  --charcoal-bg: #000000;
  --slate-bg: #FFFFFF;
  --text-main: #000000;
  --text-muted: #222222;
  --gold-accent: #B8860B;
  --border-light: #000000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--slate-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--navy-light);
  text-decoration: none;
  transition: all 0.2s ease;
}

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

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   TOPBAR & TICKER
   ========================================================================== */
.topbar {
  background-color: var(--charcoal-dark);
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.ticker-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-badge {
  background-color: var(--gold-accent);
  color: var(--navy-dark);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stock-live {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.price-up {
  color: var(--green-positive);
  font-weight: 700;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.access-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-light);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.2s;
}

.access-btn:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo img {
  height: 52px;
  width: auto;
  border-radius: 6px;
}

.brand-text {
  color: #FFFFFF;
}

.brand-title {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.1;
  color: var(--navy-dark);
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.68rem;
  color: var(--gold-accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 0.80rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-accent);
  background-color: rgba(212, 175, 55, 0.08);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background-color: var(--slate-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  border: 1px solid var(--border-light);
  z-index: 1100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 8px 18px;
  color: var(--navy-dark);
  font-size: 0.88rem;
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: var(--slate-bg);
  color: var(--gold-accent);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-hover) 100%);
  color: var(--navy-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(212,175,55,0.3);
  transition: all 0.25s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(212,175,55,0.5);
  color: var(--navy-dark);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-accent);
  border: 1.5px solid var(--gold-accent);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-outline-gold:hover {
  background-color: var(--gold-accent);
  color: var(--navy-dark);
}

/* ==========================================================================
   HERO & STATS DASHBOARD (FINTECH ALIGNED OVERLAY)
   ========================================================================== */
.hero-section {
  background: linear-gradient(135deg, rgba(10,25,47,0.90) 0%, rgba(15,32,66,0.92) 100%), url('../images/hero_fintech_bg.png') center/cover no-repeat;
  color: #FFFFFF;
  padding: 60px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

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

.hero-desc {
  font-size: 1.1rem;
  color: #CBD5E1;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.badge-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-item i {
  color: var(--gold-accent);
}

/* Green Live Category Buttons (matching unistarmultimedialtd.com screenshot) */
.live-category-btn {
  background: #0F5128;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 6px;
  border: 1px solid #198754;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(15, 81, 40, 0.4);
}

.live-category-btn:hover {
  background: #157347;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(25, 135, 84, 0.6);
  border-color: #20c997;
}

.quick-download-card {
  background: rgba(10,25,47,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.quick-card-title {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.download-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.download-btn-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s ease;
}

.download-btn-item:hover {
  background: rgba(212,175,55,0.15);
  border-color: var(--gold-accent);
  transform: translateX(4px);
  color: var(--gold-accent);
}

/* Key Metrics Grid */
.stats-banner {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.stat-card {
  background: var(--slate-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--navy-main);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 6px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.stat-sub {
  font-size: 0.78rem;
  color: var(--green-positive);
  font-weight: 600;
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
.section {
  padding: 70px 0;
}

.section-bg-paper {
  background-color: #FFFFFF;
}

.section-header {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 16px;
}

.section-tag {
  color: var(--gold-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  display: block;
}

.section-title {
  font-size: 1.85rem;
  color: var(--navy-dark);
}

/* ==========================================================================
   DYNAMIC DISCLOSURE SEARCH & FILTERS
   ========================================================================== */
.filter-card {
  background: var(--slate-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}

.filter-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background-color: var(--slate-bg);
  transition: border-color 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--navy-light);
  background-color: #FFFFFF;
}

.category-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.pill-chip {
  background: var(--slate-bg);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
}

.pill-chip.active, .pill-chip:hover {
  background: var(--navy-dark);
  color: var(--gold-accent);
  border-color: var(--navy-dark);
}

/* Data Table */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  background: var(--slate-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.data-table th {
  background-color: var(--charcoal-dark);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 14px 18px;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
}

.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

.data-table tbody tr:hover {
  background-color: #F1F5F9;
}

.tag-badge {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
}

.tag-reg30 { background: #E0F2FE; color: #0369A1; }
.tag-outcome { background: #FEF3C7; color: #92400E; }
.tag-financial { background: #DCFCE7; color: #15803D; }
.tag-governance { background: #F3E8FF; color: #6B21A8; }
.tag-notice { background: #FFEDD5; color: #C2410C; }

/* PDF Download Button */
.btn-dl {
  background: var(--slate-bg);
  border: 1px solid var(--border-light);
  color: var(--navy-dark);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-dl:hover {
  background: var(--navy-dark);
  color: var(--gold-accent);
  border-color: var(--navy-dark);
}

/* ==========================================================================
   TABS & CARDS FOR COMPANY & GOVERNANCE
   ========================================================================== */
.custom-tabs {
  display: flex;
  gap: 12px;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 30px;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.tab-btn.active {
  color: var(--navy-dark);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 3px;
  background-color: var(--gold-accent);
  border-radius: 3px 3px 0 0;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.info-card {
  background: var(--slate-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease;
}

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

.icon-box {
  width: 50px;
  height: 50px;
  background: rgba(15,32,66,0.08);
  color: var(--navy-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

/* Leadership Card */
.leader-card {
  text-align: center;
  background: var(--slate-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.leader-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 16px auto;
  border: 3px solid var(--gold-accent);
}

.leader-name {
  font-size: 1.15rem;
  color: var(--navy-dark);
}

.leader-role {
  font-size: 0.85rem;
  color: var(--gold-accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ==========================================================================
   MODAL DIALOGS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,25,47,0.75);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--slate-card);
  width: 100%;
  max-width: 750px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.25s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-header {
  background: var(--navy-dark);
  color: #FFFFFF;
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.modal-title {
  color: #FFFFFF;
  font-size: 1.25rem;
}

.modal-close {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-body {
  padding: 28px;
}

/* ==========================================================================
   FOOTER & COMPLIANCE
   ========================================================================== */
.site-footer {
  background: var(--navy-dark);
  color: #94A3B8;
  font-size: 0.9rem;
  padding: 60px 0 30px 0;
  border-top: 3px solid var(--gold-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  color: #FFFFFF;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.7;
}

.footer-title {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94A3B8;
}

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

.compliance-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 0.82rem;
  color: #CBD5E1;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .filter-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
}

@media (max-width: 600px) {
  .filter-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-content { flex-direction: column; gap: 8px; text-align: center; }
}

/* DMS CTA Button Styling */
.btn-dms {
  background-color: var(--gold-accent);
  color: var(--navy-dark);
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.80rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-dms:hover {
  background-color: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(212, 175, 55, 0.2);
}

/* Quick Download Center Item Sub-styles */
.download-btn-item {
  text-decoration: none; /* ensure no underlines */
}

.download-btn-item .title {
  font-weight: 600;
  font-size: 0.92rem;
  color: #FFFFFF;
  margin-bottom: 2px;
  text-align: left;
}

.download-btn-item .meta {
  font-size: 0.76rem;
  color: #94A3B8;
  text-align: left;
}

.download-btn-item .icon {
  color: var(--gold-accent);
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.download-btn-item:hover .title {
  color: var(--gold-accent);
}

.download-btn-item:hover .icon {
  transform: scale(1.1);
  color: #FFFFFF;
}

/* Business Verticals Dark Cards */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vertical-card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vertical-card-dark:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 175, 55, 0.3);
}

.vertical-card-dark img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.vertical-card-dark .card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vertical-card-dark h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin: 12px 0 8px 0;
  color: #FFFFFF !important; /* Force high contrast white */
  font-weight: 600;
}

.vertical-card-dark p {
  font-size: 0.88rem;
  color: #CBD5E1 !important; /* Force high contrast slate-300 */
  line-height: 1.6;
  margin-bottom: 16px;
  margin-top: 0;
  text-align: left;
}

.vertical-card-dark a {
  color: var(--gold-accent);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.85rem;
  margin-top: auto; /* Push link to the bottom */
  display: inline-flex;
  align-items: center;
}

.vertical-card-dark a:hover {
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .verticals-grid {
    grid-template-columns: 1fr;
  }
}
