/* ==========================================================================
   HimVantage Solutions - Master Stylesheet
   Theme: Executive Corporate Navy & Royal Gold
   ========================================================================== */

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

:root {
  /* Brand Colors Extracted from Logo */
  --primary-navy: #041836;
  --primary-dark: #020d1e;
  --primary-blue: #002d6b;
  --primary-light: #0d3b82;
  
  --secondary-gold: #d09926;
  --gold-hover: #e5ab3c;
  --gold-light: #fef8eb;
  --gold-glow: rgba(208, 153, 38, 0.25);
  --gold-border: rgba(208, 153, 38, 0.35);

  /* Neutrals & Slate Tones */
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-dark-section: #041836;
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #f1f5f9;
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;

  /* Accent Colors */
  --accent-emerald: #10b981;
  --accent-blue: #2563eb;
  --accent-amber: #f59e0b;
  --ai-script-blue: #1547b6;

  /* Typography */
  --font-heading: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, Cambria, 'Times New Roman', serif;
  --font-script: 'Caveat', 'Covered By Your Grace', 'Kalam', cursive;
  --font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Elevations & Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(4, 24, 54, 0.08), 0 2px 4px -2px rgba(4, 24, 54, 0.04);
  --shadow-lg: 0 12px 24px -4px rgba(4, 24, 54, 0.12), 0 4px 8px -2px rgba(4, 24, 54, 0.06);
  --shadow-xl: 0 24px 48px -12px rgba(4, 24, 54, 0.18);
  --shadow-gold: 0 8px 25px rgba(208, 153, 38, 0.28);

  /* Layout */
  --container-max: 1240px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  position: relative;
  width: 100%;
}

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

a {
  color: var(--primary-navy);
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Utility Classes */
.text-gold { color: var(--secondary-gold) !important; }
.text-navy { color: var(--primary-navy) !important; }
.text-white { color: #ffffff !important; }
.text-muted { color: var(--text-muted) !important; }
.bg-navy { background-color: var(--primary-navy) !important; }
.bg-dark { background-color: var(--primary-dark) !important; }
.bg-light { background-color: var(--bg-light) !important; }
.bg-gold-light { background-color: var(--gold-light) !important; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary-gold);
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 0.65rem;
}

.section-tag.light {
  background: rgba(208, 153, 38, 0.15);
  border-color: rgba(208, 153, 38, 0.4);
  color: var(--gold-hover);
}

.section-heading {
  text-align: left;
  max-width: 100%;
  margin: 0 auto 1.85rem 0;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  margin-bottom: 0.45rem;
  color: var(--primary-navy);
}

.section-heading p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 760px;
}

.single-line-heading {
  white-space: nowrap;
}

@media (max-width: 992px) {
  .single-line-heading {
    white-space: normal;
  }
}

.section-heading.light h2 {
  color: #ffffff;
}

.section-heading.light p {
  color: #cbd5e1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-gold) 0%, #b37a08 100%);
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(208, 153, 38, 0.35);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-hover) 0%, #c68910 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: #ffffff !important;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--primary-navy);
  color: #ffffff;
}

.btn-navy:hover {
  background: var(--primary-blue);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-gold {
  background: transparent;
  color: var(--secondary-gold);
  border-color: var(--secondary-gold);
}

.btn-outline-gold:hover {
  background: var(--secondary-gold);
  color: #ffffff !important;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.02rem;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   Top Notification Bar
   ========================================================================== */

.topbar {
  background: var(--primary-dark);
  color: #cbd5e1;
  font-size: 0.82rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.topbar-center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.topbar-tag-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.badge-tag {
  background: rgba(208, 153, 38, 0.2);
  color: var(--gold-hover);
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid rgba(208, 153, 38, 0.4);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Main Navigation Header
   Default State: Pure White Header with Dark Logo & Navy Text
   Scrolled State: Dark Executive Navy with White Inverted Logo & White Text
   ========================================================================== */

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0;
  transition: padding 0.3s ease;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  padding: 0.1rem 0;
}

.brand-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: filter 0.35s ease, transform 0.3s ease, height 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-item {
  position: relative;
}

/* Default White Header Navigation Links */
.nav-link {
  color: var(--primary-navy);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.28rem;
  transition: var(--transition);
}

.nav-link:hover, .nav-item:hover > .nav-link, .nav-link.active {
  color: var(--secondary-gold);
  background: var(--gold-light);
}

.nav-link svg.dropdown-icon {
  width: 12px;
  height: 12px;
  color: var(--primary-navy);
  transition: transform 0.25s ease, color 0.25s ease;
}

.nav-item:hover svg.dropdown-icon {
  transform: rotate(180deg);
  color: var(--secondary-gold);
}

/* Default Dropdown Menu (Clean Luxury White) */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.4rem;
  box-shadow: 0 14px 35px rgba(4, 24, 54, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 1010;
}

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

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.32rem 0.55rem;
  border-radius: var(--radius-sm);
  color: var(--text-body);
  transition: var(--transition);
}

.dropdown-link:hover {
  background: var(--gold-light);
  color: var(--secondary-gold);
  transform: translateX(4px);
}

.dropdown-link-icon {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: var(--gold-light);
  color: var(--secondary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0;
  border: 1px solid var(--gold-border);
}

.dropdown-link-icon svg,
.dropdown-link-icon .svg-icon {
  width: 13px;
  height: 13px;
}

.dropdown-link-text strong {
  display: block;
  font-size: 0.80rem;
  color: var(--primary-navy);
  margin-bottom: 0;
  line-height: 1.25;
}

.dropdown-link:hover .dropdown-link-text strong {
  color: var(--secondary-gold);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--primary-navy);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-toggle:hover {
  background: rgba(4, 24, 54, 0.05);
}

/* ==========================================================================
   SCROLLED HEADER STATE (Sticky Navy Background + White Inverted Logo)
   ========================================================================== */

.site-header.scrolled {
  background: rgba(2, 13, 30, 0.98);
  border-bottom: 1px solid rgba(208, 153, 38, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.site-header.scrolled .navbar {
  padding: 0.25rem 0;
}

/* Logo becomes pure white on scroll as requested */
.site-header.scrolled .brand-logo img {
  height: 56px;
  filter: brightness(0) invert(1);
}

.site-header.scrolled .nav-link {
  color: #f1f5f9;
}

.site-header.scrolled .nav-link:hover, 
.site-header.scrolled .nav-item:hover > .nav-link, 
.site-header.scrolled .nav-link.active {
  color: var(--gold-hover);
  background: rgba(255, 255, 255, 0.08);
}

.site-header.scrolled .nav-link svg.dropdown-icon {
  color: #cbd5e1;
}

.site-header.scrolled .nav-item:hover svg.dropdown-icon {
  color: var(--gold-hover);
}

.site-header.scrolled .mobile-toggle {
  color: #ffffff;
}

.site-header.scrolled .mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Scrolled Dropdown Styling */
.site-header.scrolled .dropdown-menu {
  background: #041836;
  border: 1px solid rgba(208, 153, 38, 0.25);
  box-shadow: var(--shadow-xl);
}

.site-header.scrolled .dropdown-link {
  color: #e2e8f0;
}

.site-header.scrolled .dropdown-link:hover {
  background: rgba(208, 153, 38, 0.14);
  color: var(--secondary-gold);
}

.site-header.scrolled .dropdown-link-icon {
  background: rgba(208, 153, 38, 0.15);
  border-color: rgba(208, 153, 38, 0.3);
}

.site-header.scrolled .dropdown-link-text strong {
  color: #ffffff;
}

.site-header.scrolled .dropdown-link:hover .dropdown-link-text strong {
  color: var(--gold-hover);
}

.site-header.scrolled .dropdown-link-text span {
  color: #94a3b8;
}

/* ==========================================================================
   Hero Section (Accounting. Reimagined with AI.)
   ========================================================================== */

.hero-section.hero-reimagined {
  position: relative;
  background-color: #ffffff;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.90) 0%, rgba(248, 250, 252, 0.82) 50%, rgba(241, 245, 249, 0.88) 100%),
                    url('../img/hero-texture-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-dark);
  padding: 2.25rem 0 1.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.hero-subtle-mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 35%, rgba(21, 71, 182, 0.05) 0%, transparent 60%),
              radial-gradient(circle at 12% 25%, rgba(208, 153, 38, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-reimagined-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content-col {
  max-width: 590px;
  text-align: left;
}

/* Master Hero Title Typography (Consistent with site font-heading: Outfit & Plus Jakarta Sans) */
.hero-reimagined-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 3.8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-reimagined-title .title-row {
  display: block;
}

.hero-reimagined-title .title-accounting {
  color: var(--primary-navy);
}

.hero-reimagined-title .title-reimagined-line {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.hero-reimagined-title .title-reimagined {
  color: var(--secondary-gold);
  background: linear-gradient(135deg, #d09926 0%, #e5ab3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-reimagined-title .title-with-ai {
  color: var(--primary-navy);
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
}

.hero-reimagined-title .highlight-ai {
  color: var(--primary-blue);
  background: linear-gradient(135deg, #002d6b 0%, #1547b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* Gold Divider Bar */
.hero-gold-divider {
  width: 44px;
  height: 3.5px;
  background: var(--secondary-gold);
  border-radius: 2px;
  margin: 0.85rem 0 0.75rem 0;
}

/* Subtitle */
.hero-reimagined-desc {
  font-family: var(--font-body);
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  max-width: 470px;
  font-weight: 450;
}

/* Call to Action Buttons Group (Single Row) */
.hero-action-buttons {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: nowrap;
}

.hero-action-buttons .btn {
  padding: 0.75rem 1.4rem;
  font-size: 0.92rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Right Visual Column (Expanded toward right edge) */
.hero-visual-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  width: 100%;
}

.hero-ai-art-wrapper {
  position: relative;
  width: 100%;
  max-width: 820px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: -1.5rem;
}

.hero-ai-art-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 45px rgba(21, 71, 182, 0.12));
  animation: heroFloat 5.5s ease-in-out infinite;
  z-index: 2;
  position: relative;
}

.hero-visual-glow {
  position: absolute;
  top: 5%;
  right: 0%;
  width: 480px;
  height: 440px;
  background: radial-gradient(circle, rgba(21, 71, 182, 0.12) 0%, rgba(208, 153, 38, 0.06) 45%, rgba(255, 255, 255, 0) 75%);
  filter: blur(55px);
  pointer-events: none;
  z-index: 1;
}

/* Floating Glassmorphism Metric Badges */
.hero-float-badge {
  position: absolute;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(208, 153, 38, 0.32);
  border-radius: 9999px;
  padding: 0.55rem 1.15rem;
  box-shadow: 0 12px 30px rgba(4, 24, 54, 0.1);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #041836;
  pointer-events: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-float-badge:hover {
  transform: scale(1.04) translateY(-3px) !important;
  box-shadow: 0 18px 40px rgba(4, 24, 54, 0.16);
}

.hero-float-badge.badge-top {
  top: 15px;
  left: -8px;
  animation: floatBadgeTop 6s ease-in-out infinite;
}

.hero-float-badge.badge-bottom {
  bottom: 15px;
  right: 8px;
  border-radius: 12px;
  padding: 0.65rem 1.15rem;
  gap: 0.75rem;
  animation: floatBadgeBottom 6.5s ease-in-out infinite alternate;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
  flex-shrink: 0;
}

.badge-title {
  font-size: 0.80rem;
  color: #334155;
  white-space: nowrap;
}

.badge-title strong {
  color: #10b981;
}

.badge-icon-gold {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(208, 153, 38, 0.14);
  border: 1px solid rgba(208, 153, 38, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-gold);
  flex-shrink: 0;
}

.badge-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.badge-label {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.2;
}

.badge-metric {
  font-size: 0.85rem;
  color: #041836;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatBadgeTop {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatBadgeBottom {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* ==========================================================================
   Video Showcase Interactive Modal
   ========================================================================== */

.video-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 13, 30, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.video-modal-container {
  background: #041836;
  border: 1px solid rgba(208, 153, 38, 0.35);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #ffffff;
}

.video-modal-backdrop.active .video-modal-container {
  transform: scale(1);
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 13, 30, 0.6);
}

.video-modal-title h4 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-top: 0.35rem;
}

.video-modal-close {
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-modal-close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.video-modal-body {
  padding: 2rem 1.75rem;
}

.video-mock-screen {
  background: rgba(2, 13, 30, 0.7);
  border: 1px solid rgba(208, 153, 38, 0.25);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mock-play-indicator {
  width: 68px;
  height: 68px;
  background: rgba(208, 153, 38, 0.15);
  border: 2px solid var(--secondary-gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--secondary-gold);
  box-shadow: 0 0 20px rgba(208, 153, 38, 0.3);
}

.mock-play-indicator svg {
  margin-left: 4px;
}

.video-mock-screen h3 {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.video-mock-screen p {
  font-size: 0.95rem;
  color: #cbd5e1;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.mock-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mock-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  color: #e2e8f0;
}

.mock-pill svg {
  color: var(--secondary-gold);
}

/* ==========================================================================
   Live Statistics Banner (Executive Navy Bar)
   ========================================================================== */

.stats-bar-section {
  position: relative;
  z-index: 10;
  margin-top: -1.75rem;
  margin-bottom: 1.75rem;
}

.stats-banner-navy {
  background: linear-gradient(135deg, #020c1b 0%, #041836 50%, #031127 100%);
  border: 1px solid rgba(208, 153, 38, 0.28);
  border-radius: 14px;
  padding: 1.25rem 1.75rem;
  box-shadow: 0 20px 45px rgba(4, 24, 54, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.05);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.stats-banner-navy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(208, 153, 38, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.5;
}

.stat-item-row {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 0.35rem 0.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  transition: transform 0.25s ease;
}

.stat-item-row:last-child {
  border-right: none;
}

.stat-item-row:hover {
  transform: translateY(-2px);
}

.stat-icon-wrap {
  flex-shrink: 0;
  color: var(--secondary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.stat-item-row:hover .stat-icon-wrap {
  transform: scale(1.08);
}

.stat-icon-gold {
  color: var(--secondary-gold);
  filter: drop-shadow(0 2px 8px rgba(208, 153, 38, 0.3));
}

.stat-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.stats-banner-navy .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 2.2vw, 2.35rem);
  font-weight: 800;
  color: var(--secondary-gold);
  line-height: 1.05;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

.stats-banner-navy .stat-number span.plus {
  color: var(--secondary-gold);
}

.stats-banner-navy .stat-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: #e2e8f0;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
}

.stats-banner-navy .stat-label span {
  display: block;
}

/* ==========================================================================
   Boxes / Solutions Architecture (Level 2 Services)
   ========================================================================== */

.solutions-section {
  padding: 3.25rem 0;
}

.box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.solution-box-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.6rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solution-box-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary-gold);
  box-shadow: var(--shadow-xl);
}

.box-tag-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.85rem;
}

.box-tag-label.blue {
  background: #eff6ff;
  color: #1d4ed8;
}

.box-tag-label.amber {
  background: #fef3c7;
  color: #92400e;
}

.box-tag-label.gold {
  background: var(--gold-light);
  color: #854d0e;
}

.box-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gold-light);
  color: var(--secondary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.45rem;
  border: 1px solid var(--gold-border);
}

.solution-box-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.solution-box-card p.box-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.box-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.box-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-body);
}

.box-feature-list li svg {
  color: var(--secondary-gold);
  flex-shrink: 0;
}

.box-card-footer {
  margin-top: auto;
}

/* ==========================================================================
   Level 3 Products Showcase (Finance360, Hotel Finance360, CFO360)
   ========================================================================== */

.products-matrix-section {
  background: var(--primary-navy);
  color: #ffffff;
  padding: 3.25rem 0;
  position: relative;
  overflow: hidden;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--secondary-gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.product-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-hover);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.product-card h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.86rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-gold);
}

.product-link:hover {
  color: var(--gold-hover);
  gap: 0.65rem;
}

/* ==========================================================================
   Consulting Process & Value Ladder
   ========================================================================== */

.process-section {
  padding: 3.25rem 0;
  background: #ffffff;
}

.process-steps-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.process-step-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.35rem 1rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.process-step-card:hover {
  border-color: var(--secondary-gold);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: var(--secondary-gold);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  border: 2px solid var(--secondary-gold);
}

.process-step-card h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--primary-navy);
}

.process-step-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Comparison: Traditional Accountant vs HimVantage
   ========================================================================== */

.comparison-section {
  padding: 3.25rem 0;
  background: var(--bg-light);
}

.comparison-table-wrap {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow-x: auto;
  box-shadow: var(--shadow-md);
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table th, .comparison-table td {
  padding: 0.95rem 1.25rem;
  text-align: left;
}

.comparison-table th {
  background: var(--primary-navy);
  color: #ffffff;
  font-size: 1.02rem;
  font-family: var(--font-heading);
}

.comparison-table th.highlight-col {
  background: linear-gradient(135deg, #002d6b 0%, #041836 100%);
  color: var(--gold-hover);
  border-left: 2px solid var(--secondary-gold);
  border-right: 2px solid var(--secondary-gold);
}

.comparison-table tr:nth-child(even) {
  background: #f8fafc;
}

.comparison-table td {
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.comparison-table td.highlight-col {
  background: rgba(208, 153, 38, 0.05);
  border-left: 2px solid var(--gold-border);
  border-right: 2px solid var(--gold-border);
  font-weight: 600;
  color: var(--primary-navy);
}

/* ==========================================================================
   Financial Health Check Diagnostic CTA Box
   ========================================================================== */

.health-check-banner {
  background: radial-gradient(circle at 10% 20%, #002d6b 0%, #041836 70%, #020d1e 100%);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2.5rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(208, 153, 38, 0.35);
  margin: 1.75rem 0 2.5rem;
}

.health-check-banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.health-check-banner h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #ffffff;
  margin-bottom: 0.65rem;
}

.health-check-banner p {
  color: #cbd5e1;
  font-size: 0.98rem;
  margin-bottom: 1.15rem;
}

.health-points-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.35rem;
}

.health-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #e2e8f0;
}

.health-point svg {
  color: var(--secondary-gold);
  flex-shrink: 0;
}

/* ==========================================================================
   Page Headers (Internal Pages)
   ========================================================================== */

.page-hero {
  background: radial-gradient(circle at top right, #002d6b 0%, #041836 60%, #020d1e 100%);
  color: #ffffff;
  padding: 4.5rem 0 3.5rem;
  position: relative;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #94a3b8;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.breadcrumb-nav a {
  color: #cbd5e1;
}

.breadcrumb-nav a:hover {
  color: var(--gold-hover);
}

.page-hero h1 {
  font-size: clamp(1.85rem, 3.8vw, 2.8rem);
  color: #ffffff;
  margin-bottom: 1rem;
}

.page-hero p.lead {
  font-size: 1.12rem;
  color: #cbd5e1;
  max-width: 780px;
}

/* ==========================================================================
   Service Detail Page Layouts
   ========================================================================== */

.service-content-layout {
  padding: 5rem 0;
}

.service-grid-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
}

.service-article h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 2.5rem 0 1.2rem;
  color: var(--primary-navy);
}

.service-article h2:first-of-type {
  margin-top: 0;
}

.service-article h3 {
  font-size: 1.35rem;
  margin: 1.8rem 0 0.8rem;
  color: var(--primary-navy);
}

.service-article p {
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-body);
}

.service-feature-box-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-box-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}

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

.feature-box-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-box-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Sidebar Widgets */
.sidebar-sticky {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget.highlight {
  background: var(--primary-navy);
  color: #ffffff;
  border-color: var(--secondary-gold);
}

.sidebar-widget h4 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-widget.highlight h4 {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.sidebar-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-body);
  background: var(--bg-light);
  font-weight: 500;
  transition: var(--transition);
}

.sidebar-nav-link:hover, .sidebar-nav-link.active {
  background: var(--gold-light);
  color: var(--primary-navy);
  font-weight: 700;
  border-left: 3px solid var(--secondary-gold);
}

/* ==========================================================================
   Interactive Calculator & Tools
   ========================================================================== */

.calc-card-wrap {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2.5rem;
}

.calculators-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.calc-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.services-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.quiz-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quiz-radio-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.92rem;
  line-height: 1.5;
}

.quiz-radio-option:hover {
  background: var(--gold-light);
}

.quiz-radio-option input[type="radio"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
  accent-color: var(--secondary-gold);
  width: 17px;
  height: 17px;
}

.table-scroll-hint {
  display: none;
  font-size: 0.76rem;
  color: var(--secondary-gold);
  text-align: right;
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.calc-form-group {
  margin-bottom: 1.5rem;
}

.calc-form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.calc-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
}

.calc-input:focus {
  outline: none;
  border-color: var(--secondary-gold);
  box-shadow: 0 0 0 3px rgba(208, 153, 38, 0.2);
}

.calc-results-card {
  background: var(--primary-navy);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 1.5rem;
}

.calc-results-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.calc-results-row:last-child {
  border-bottom: none;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-hover);
  padding-top: 1rem;
}

/* ==========================================================================
   Contact & Location Form
   ========================================================================== */

.contact-layout {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
}

.contact-info-card {
  background: var(--primary-navy);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(208, 153, 38, 0.3);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(208, 153, 38, 0.15);
  color: var(--secondary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-item p, .contact-info-item a {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-info-item a:hover {
  color: var(--gold-hover);
}

.contact-form-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-gold);
  box-shadow: 0 0 0 3px rgba(208, 153, 38, 0.2);
}

/* ==========================================================================
   FAQ Section Accordion
   ========================================================================== */

.faq-section {
  padding: 3.25rem 0;
  background: #ffffff;
}

.faq-accordion {
  max-width: 900px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--secondary-gold);
  box-shadow: var(--shadow-sm);
}

.faq-header {
  padding: 1rem 1.25rem;
  background: var(--bg-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-navy);
  gap: 1rem;
}

.faq-header span {
  text-align: left;
  flex: 1;
}

.faq-item.active .faq-header {
  background: var(--gold-light);
  color: var(--primary-navy);
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: var(--secondary-gold);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: #ffffff;
  text-align: left;
}

.faq-body p {
  text-align: left;
}

.faq-item.active .faq-body {
  padding: 1rem 1.25rem;
  max-height: 500px;
}

/* ==========================================================================
   Footer (Clean Luxury Light Background)
   ========================================================================== */

.site-footer {
  background: #ffffff;
  color: #475569;
  padding: 3.25rem 0 1.75rem;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 20px rgba(4, 24, 54, 0.02);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.25rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  max-width: 145px;
  height: auto;
  filter: none !important;
  transition: transform 0.25s ease;
}

.footer-brand img:hover {
  transform: scale(1.02);
}

.footer-brand p {
  font-size: 0.9rem;
  color: #475569;
  margin: 1.1rem 0;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.05rem;
  color: var(--primary-navy);
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--secondary-gold);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #475569;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-gold);
  transform: translateX(4px);
}

.site-footer p {
  color: #475569;
}

.site-footer strong {
  color: var(--primary-navy);
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: #64748b;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--secondary-gold);
}

/* Floating WhatsApp and Call Widget */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.fab-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.fab-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.fab-whatsapp {
  background: #25d366;
}

.fab-top {
  background: var(--primary-navy);
  border: 1px solid var(--secondary-gold);
  color: var(--secondary-gold);
  display: none;
}

.fab-top.visible {
  display: flex;
}

/* ==========================================================================
   SVG Vector Icons Styling
   ========================================================================== */

.svg-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.box-icon-wrap .svg-icon {
  width: 28px;
  height: 28px;
  color: var(--secondary-gold);
}

.dropdown-link-icon .svg-icon {
  width: 18px;
  height: 18px;
  color: var(--secondary-gold);
}

.contact-icon .svg-icon {
  width: 22px;
  height: 22px;
  color: var(--secondary-gold);
}

.check-icon {
  color: var(--secondary-gold);
  margin-right: 0.4rem;
  flex-shrink: 0;
}

.contact-svg {
  color: var(--secondary-gold);
  margin-right: 0.35rem;
}

.feature-box-item h4 .svg-icon {
  color: var(--secondary-gold);
  margin-right: 0.4rem;
}

/* ==========================================================================
   Excel 3-Column Solutions Matrix (Solutions | Business Services | Hotel Finance)
   ========================================================================== */

.solutions-matrix-section {
  padding: 5.5rem 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.matrix-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.matrix-col-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.matrix-col-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.matrix-col-header {
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.matrix-col-header.col-blue {
  background: #eff6ff;
  color: #1e40af;
  border-bottom: 3px solid #3b82f6;
}

.matrix-col-header.col-gold {
  background: #fefce8;
  color: #854d0e;
  border-bottom: 3px solid var(--secondary-gold);
}

.matrix-col-header.col-coral {
  background: #fff1f2;
  color: #9f1239;
  border-bottom: 3px solid #f43f5e;
}

.matrix-col-body {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.matrix-item {
  font-size: 0.92rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0;
}

.matrix-item.highlight-bold {
  font-weight: 700;
  color: var(--primary-navy);
  background: var(--bg-light);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  margin: 0.35rem 0;
  border-left: 3px solid var(--secondary-gold);
}

.matrix-subheading {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--primary-navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px dashed var(--border-color);
}

.matrix-tagline-item {
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 600;
  color: var(--primary-navy);
  background: var(--gold-light);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-top: 0.4rem;
  border: 1px solid var(--gold-border);
}

@media (max-width: 992px) {
  .matrix-grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   Compliance Calendar Styles
   ========================================================================== */
.calendar-hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.calendar-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 0.6rem;
  background: #f8fafc;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.cal-filter-btn {
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
}

.cal-filter-btn:hover {
  background: #ffffff;
  color: var(--primary-navy);
  border-color: var(--border-color);
}

.cal-filter-btn.active {
  background: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
  box-shadow: 0 2px 8px rgba(4, 24, 54, 0.15);
}

.month-block {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.month-block:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(208, 153, 38, 0.35);
}

.month-header {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #0d2850 100%);
  color: #ffffff;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.month-header h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.month-header .month-quarter-tag {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(208, 153, 38, 0.25);
  color: var(--gold-hover);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  border: 1px solid rgba(208, 153, 38, 0.4);
}

.compliance-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compliance-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.compliance-table th {
  background: #f1f5f9;
  color: var(--primary-navy);
  font-weight: 700;
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--border-color);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.compliance-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
  color: var(--text-body);
}

.compliance-table tr:last-child td {
  border-bottom: none;
}

.compliance-table tr:hover td {
  background: #fcfdfd;
}

.due-date-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 0.25rem 0.55rem;
  min-width: 62px;
  text-align: center;
}

.due-date-badge .day {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
}

.due-date-badge .month {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--secondary-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.cal-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.cal-tag.tag-gst {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.cal-tag.tag-it {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

.cal-tag.tag-mca {
  background: #faf5ff;
  color: #6b21a8;
  border: 1px solid #e9d5ff;
}

.cal-tag.tag-pf {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

.download-banner-card {
  background: radial-gradient(circle at top right, #002d6b 0%, #041836 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(208, 153, 38, 0.3);
  box-shadow: var(--shadow-lg);
  margin: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.download-banner-info h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.download-banner-info p {
  color: #cbd5e1;
  font-size: 0.92rem;
  margin-bottom: 0;
  max-width: 600px;
}

.month-jump-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.month-jump-link {
  display: block;
  text-align: center;
  padding: 0.35rem 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  background: #f1f5f9;
  border-radius: 4px;
  color: var(--primary-navy);
  transition: var(--transition);
}

.month-jump-link:hover {
  background: var(--secondary-gold);
  color: #ffffff;
}

@media (max-width: 768px) {
  .download-banner-card {
    padding: 1.75rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
  }
}


