/* ==========================================================================
   BHUPENDRA P. SHAH & CO. - CHARTERED ACCOUNTANTS
   Master Stylesheet & Design System (ICAI Compliant Full SOP Build)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Palette - Executive Navy & Gold */
  --navy-950: #040a17;
  --navy-900: #071328;
  --navy-850: #0c1b38;
  --navy-800: #10244c;
  --navy-700: #173268;
  --navy-glass: rgba(7, 19, 40, 0.88);
  --navy-card: rgba(12, 27, 56, 0.75);
  --navy-border: rgba(197, 168, 128, 0.22);
  --navy-border-hover: rgba(212, 175, 55, 0.55);

  /* Gold Palette */
  --gold-500: #c5a880;
  --gold-400: #d4af37;
  --gold-300: #ebd39c;
  --gold-600: #9e7d4e;
  --gold-gradient: linear-gradient(135deg, #f7e7c4 0%, #d4af37 50%, #9e7d4e 100%);
  --gold-glow: rgba(212, 175, 55, 0.2);

  /* Neutrals & Text */
  --bg-dark: #050d1c;
  --bg-section-alt: #08152e;
  --text-white: #ffffff;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Typography */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;

  /* Radius & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-subtle: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px rgba(212, 175, 55, 0.18);
  --shadow-elevated: 0 20px 40px -15px rgba(0, 0, 0, 0.7);

  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

svg {
  display: block;
  max-width: 100%;
  flex-shrink: 0;
}

svg:not([width]) {
  width: 20px;
  height: 20px;
}

button, input, select, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section {
  padding: 90px 0;
  position: relative;
}

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

/* Typography Helpers */
.font-serif {
  font-family: var(--font-serif);
}

.text-gold {
  color: var(--gold-400);
}

.text-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.28);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 8px var(--gold-400);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 34px;
  line-height: 1.65;
}

/* ==========================================================================
   Creative Luxury Top Utility Ribbon
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #020612 0%, #091733 50%, #020612 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  font-size: 0.80rem;
  color: var(--text-muted);
  padding: 7px 0;
  position: relative;
  z-index: 102;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.top-bar-fluid {
  width: 100%;
  max-width: 100%;
  padding: 0 clamp(20px, 3.2vw, 56px);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-item-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  transition: var(--transition-fast);
}

.top-item-pill:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
  color: #ffffff;
  transform: translateY(-1px);
}

.top-icon-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}

.top-icon-circle svg {
  width: 12px;
  height: 12px;
}

.top-text-strong {
  font-weight: 600;
  color: #f1f5f9;
}

.top-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

.top-location-badge svg {
  width: 13px;
  height: 13px;
  color: var(--gold-400);
}

.live-chamber-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: #94a3b8;
}

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

@keyframes pulse-emerald {
  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 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.icai-verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  color: var(--gold-300);
  padding: 3px 12px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.73rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.icai-verified-tag svg {
  width: 13px;
  height: 13px;
  color: var(--gold-400);
}

.top-wa-quick {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 211, 102, 0.12);
  color: #4ade80;
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 0.74rem;
  font-weight: 600;
  border: 1px solid rgba(37, 211, 102, 0.3);
  transition: var(--transition-fast);
}

.top-wa-quick:hover {
  background: rgba(37, 211, 102, 0.22);
  color: #ffffff;
  border-color: #25d366;
  transform: translateY(-1px);
}

.top-wa-quick svg {
  width: 13px;
  height: 13px;
}

/* ==========================================================================
   Master Creative Glassmorphism Header & Sticky Navbar
   ========================================================================== */
.header-nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(4, 10, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 100;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 32px -10px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-nav.scrolled {
  background: rgba(2, 6, 16, 0.96);
  border-bottom-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.85);
}

.nav-container,
.nav-container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  padding: 0 clamp(20px, 3.2vw, 56px);
  height: 82px;
  gap: 16px;
  transition: height 0.3s ease;
}

.header-nav.scrolled .nav-container,
.header-nav.scrolled .nav-container-fluid {
  height: 70px;
}

/* Luxury Brand Logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.logo-emblem-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1.5px solid #d4af37;
  border-radius: 12px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.3), 0 4px 10px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.brand-logo:hover .logo-emblem-box {
  transform: scale(1.05) rotate(1deg);
  border-color: #f59e0b;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5), 0 6px 14px rgba(0, 0, 0, 0.5);
}

.logo-emblem-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-text-firm {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 40%, #f7e7c4 75%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.8px;
  line-height: 1.18;
}

.logo-sub-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.logo-text-sub {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.logo-text-dot {
  color: rgba(212, 175, 55, 0.5);
  font-size: 0.7rem;
}

.logo-text-city {
  font-size: 0.64rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 1px;
}

/* Nav Menu Items & Pill System */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #cbd5e1;
  padding: 8px 14px;
  border-radius: 9999px;
  white-space: nowrap !important;
  transition: all 0.25s ease;
  position: relative;
  border: 1px solid transparent;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-link.active, .nav-dropdown-item.active-parent > .nav-link {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.06) 100%);
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.16);
  font-weight: 600;
}

/* Dropdown System */
.nav-dropdown-item {
  position: relative;
}

.dropdown-arrow {
  width: 12px;
  height: 12px;
  color: var(--gold-400);
  transition: transform 0.3s ease;
}

.nav-dropdown-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  width: 580px;
  background: rgba(6, 14, 32, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 120;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(6, 14, 32, 0.98);
  border-left: 1px solid rgba(212, 175, 55, 0.28);
  border-top: 1px solid rgba(212, 175, 55, 0.28);
}

.nav-dropdown-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(6px);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dropdown-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.dropdown-card:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.dropdown-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  flex-shrink: 0;
}

.dropdown-icon-box svg {
  width: 16px;
  height: 16px;
}

.dropdown-info h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 2px;
  line-height: 1.25;
}

.dropdown-info p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.dropdown-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.dropdown-footer a {
  color: var(--gold-300);
  font-weight: 600;
}

.dropdown-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Nav Actions & Luxury Consultation Button */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-consult-luxury {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #f7e7c4 0%, #d4af37 50%, #9e7d4e 100%);
  color: #040a17;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap !important;
}

.btn-consult-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  color: #000000;
}

.btn-icon-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #040a17;
  box-shadow: 0 0 0 3px rgba(4, 10, 23, 0.2);
}

.btn-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.btn-consult-luxury:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-shimmer-sweep {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: none;
}

.btn-consult-luxury:hover .btn-shimmer-sweep {
  animation: shimmer-sweep 0.75s ease-in-out;
}

@keyframes shimmer-sweep {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.4px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #061124;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.3);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-400);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-300);
  border: 1px solid var(--gold-500);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-400);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  cursor: pointer;
  z-index: 110;
}

.mobile-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--gold-400);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section with Curated Unsplash Backdrop
   ========================================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 0 70px;
  overflow: hidden;
  background-color: var(--bg-dark);
}

/* Dark Navy Overlay 40-60% over Unsplash Image */
.hero-bg-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: linear-gradient(135deg, rgba(4, 10, 23, 0.92) 0%, rgba(7, 19, 40, 0.85) 55%, rgba(4, 10, 23, 0.95) 100%), 
                    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.85;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hero-badge-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.badge-fca {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-300);
  letter-spacing: 1px;
}

.badge-fca svg {
  width: 15px;
  height: 15px;
  color: var(--gold-400);
}

.badge-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
  font-weight: 800;
  line-height: 1.22;
  color: var(--text-white);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-item h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Right Stack & Glass Card */
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  z-index: 5;
}

.hero-glass-card {
  background: var(--navy-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 42px 30px 32px;
  box-shadow: var(--shadow-elevated);
  width: 100%;
  position: relative;
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transition: var(--transition-smooth);
}

.hero-glass-card:hover {
  border-color: var(--navy-border-hover);
  box-shadow: var(--shadow-glow);
}

.card-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.consultant-avatar {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #081a38;
  font-weight: 800;
  font-size: 1.2rem;
}

.consultant-info h4 {
  font-size: 1.05rem;
  color: var(--text-white);
  font-weight: 700;
}

.consultant-info span {
  font-size: 0.8rem;
  color: var(--gold-400);
  font-weight: 600;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.status-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

.card-metrics-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-label {
  font-size: 0.86rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.metric-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
}

.metric-val.verified {
  color: #38bdf8;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(7, 19, 40, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  z-index: 10;
  opacity: 1;
  visibility: visible;
}

.badge-top-left {
  top: -16px;
  left: -16px;
}

.badge-bottom-right {
  bottom: -16px;
  right: -16px;
}

.floating-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-badge-text p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.floating-badge-text h5 {
  font-size: 0.88rem;
  color: var(--text-white);
  font-weight: 700;
}

/* ==========================================================================
   Compliance Ticker Ribbon
   ========================================================================== */
.compliance-ticker {
  background: linear-gradient(90deg, #020612 0%, #091733 50%, #020612 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  padding: 10px 0;
  position: relative;
  overflow: hidden;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.ticker-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}

.ticker-badge {
  background: linear-gradient(135deg, #f7e7c4 0%, #d4af37 50%, #9e7d4e 100%);
  color: #040a17;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  margin-right: 22px;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
  z-index: 5;
  flex-shrink: 0;
}

.ticker-radar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #040a17;
  box-shadow: 0 0 0 2px rgba(4, 10, 23, 0.3);
  animation: pulse-emerald 1.5s infinite;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: tickerSlide 35s linear infinite;
  mask-image: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.ticker-item strong {
  color: var(--gold-300);
}

.due-tag {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 3px 9px;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Trust Matrix / Institutional Assurance
   ========================================================================== */
.trust-section {
  padding: 68px 0 54px;
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(16, 36, 76, 0.4) 0%, rgba(4, 10, 23, 0.98) 75%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.trust-card {
  background: linear-gradient(145deg, rgba(12, 27, 56, 0.75) 0%, rgba(7, 18, 38, 0.88) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 16px;
  padding: 28px 24px 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.65);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 22px 45px -10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.2);
}

.trust-card:hover::before {
  opacity: 1;
}

.trust-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.trust-card:hover .trust-icon {
  transform: scale(1.08) rotate(2deg);
  border-color: #f59e0b;
  color: #fef08a;
}

.trust-card h4 {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.trust-card p {
  font-size: 0.87rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold-300);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 4px 12px;
  border-radius: 9999px;
  align-self: flex-start;
}

/* ==========================================================================
   Services Grid & Cards
   ========================================================================== */
.services-grid-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card-item {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card-item:hover {
  border-color: var(--navy-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.service-card-thumb {
  height: 190px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.service-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-item:hover .service-card-thumb img {
  transform: scale(1.08);
}

.service-card-thumb::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 19, 40, 0.2) 0%, rgba(7, 19, 40, 0.85) 100%);
}

.service-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.service-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.service-features-list li {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features-list li svg {
  width: 14px;
  height: 14px;
  color: var(--gold-400);
  flex-shrink: 0;
}

/* ==========================================================================
   Accordion Component (FAQ & Careers Positions)
   ========================================================================== */
.accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.accordion-item.active {
  border-color: var(--gold-400);
}

.accordion-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: transparent;
  width: 100%;
  text-align: left;
}

.accordion-header h4 {
  font-size: 1.05rem;
  color: var(--text-white);
  font-weight: 600;
}

.accordion-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-inner {
  padding: 0 24px 22px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   Industry Cards Grid (Industries Served)
   ========================================================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.industry-card {
  position: relative;
  height: 340px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--navy-border);
  transition: var(--transition-smooth);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.industry-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 19, 40, 0.35) 0%, rgba(4, 10, 23, 0.92) 85%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.4s ease;
}

.industry-card:hover img {
  transform: scale(1.1);
}

.industry-card:hover {
  border-color: var(--navy-border-hover);
  box-shadow: var(--shadow-glow);
}

.industry-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 8px;
}

.industry-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Resources & Blog Cards
   ========================================================================== */
.resources-filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-gradient);
  color: #061124;
  border-color: transparent;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.resource-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.resource-card:hover {
  border-color: var(--navy-border-hover);
  transform: translateY(-5px);
}

.resource-thumb {
  height: 180px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.resource-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.resource-card:hover .resource-thumb img {
  transform: scale(1.06);
}

.resource-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.resource-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: 10px;
}

.resource-body h4 {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.35;
}

.resource-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

/* ==========================================================================
   Careers Page Elements
   ========================================================================== */
.career-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.perk-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 26px;
}

.perk-card h4 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 8px;
}

.perk-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Firm History Timeline (About Us)
   ========================================================================== */
.timeline-track {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(212, 175, 55, 0.3);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-node {
  position: absolute;
  top: 28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 12px var(--gold-400);
}

.timeline-item.left .timeline-node {
  right: -8px;
}

.timeline-item.right .timeline-node {
  left: -8px;
}

.timeline-box {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
}

.timeline-year {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-400);
  margin-bottom: 6px;
}

.timeline-box h4 {
  color: var(--text-white);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.timeline-box p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Founder Profile & Spotlight (About Section)
   ========================================================================== */
.founder-wrapper {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.founder-visual-frame {
  display: flex;
  justify-content: center;
}

.founder-portrait-card {
  background: rgba(4, 10, 23, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-elevated);
  width: 100%;
  max-width: 360px;
}

.portrait-emblem {
  width: 86px;
  height: 86px;
  margin: 0 auto 16px;
  background: #ffffff;
  border-radius: 50%;
  padding: 8px;
  border: 2px solid #003366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.portrait-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.founder-portrait-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.fca-title {
  color: var(--gold-400);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.founder-quick-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.badge-row svg {
  width: 16px;
  height: 16px;
  color: var(--gold-400);
  flex-shrink: 0;
}

.founder-speech {
  font-size: 1.02rem;
  font-style: italic;
  color: var(--gold-300);
  line-height: 1.68;
  margin-bottom: 18px;
  border-left: 3px solid var(--gold-400);
  padding-left: 16px;
}

.founder-details {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.founder-signature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.signature-name h4 {
  color: var(--text-white);
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.signature-name span {
  font-size: 0.8rem;
  color: var(--gold-400);
}

/* ==========================================================================
   Compliance Tools & Calculators
   ========================================================================== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.tool-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 32px;
  backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
}

.tool-card:hover {
  border-color: var(--navy-border-hover);
  box-shadow: var(--shadow-glow);
}

.tool-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tool-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
}

.tool-icon svg {
  width: 24px;
  height: 24px;
}

.tool-header h3 {
  font-size: 1.15rem;
  color: var(--text-white);
  font-weight: 700;
  margin-bottom: 3px;
}

.tool-header p {
  font-size: 0.8rem;
  color: var(--gold-400);
}

.calc-form-group {
  margin-bottom: 18px;
}

.calc-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.calc-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.calc-prefix {
  position: absolute;
  left: 16px;
  color: var(--gold-400);
  font-weight: 700;
  font-size: 1.05rem;
  pointer-events: none;
}

.calc-input {
  width: 100%;
  background: rgba(4, 10, 23, 0.75);
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px 12px 34px;
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.calc-input:focus {
  border-color: var(--gold-400);
  outline: none;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.25);
}

.calc-result-box {
  background: rgba(4, 10, 23, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.result-val {
  font-weight: 700;
  color: var(--text-white);
  font-size: 0.98rem;
}

/* ==========================================================================
   Financial Decision Suite & Interactive Calculators
   ========================================================================== */
.suite-container {
  max-width: 1100px;
  margin: 0 auto;
}

.suite-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.suite-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.suite-tab-btn:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.35);
  color: #ffffff;
  transform: translateY(-2px);
}

.suite-tab-btn.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.08) 100%);
  border-color: rgba(212, 175, 55, 0.5);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.suite-panel {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.suite-panel.active {
  display: block;
}

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

.suite-card-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: flex-start;
}

.suite-card {
  background: linear-gradient(145deg, rgba(12, 27, 56, 0.75) 0%, rgba(7, 18, 38, 0.88) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
}

.suite-output-card {
  background: rgba(4, 10, 24, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.8);
  position: sticky;
  top: 100px;
}

.suite-output-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.suite-output-header h4 {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: #ffffff;
}

.regime-verdict {
  padding: 14px 18px;
  border-radius: 10px;
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

.regime-verdict.new-better {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.regime-verdict.old-better {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
}

.regime-verdict.neutral {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

/* Decision Badges */
.nri-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.nri-badge.mandatory {
  background: rgba(239, 68, 68, 0.18);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.nri-badge.exempt {
  background: rgba(16, 185, 129, 0.18);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.nri-badge.info {
  background: rgba(59, 130, 246, 0.18);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.msme-status-badge {
  display: block;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  margin-bottom: 14px;
}

.msme-status-badge.compliant {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.msme-status-badge.non-compliant {
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

.msme-status-badge.neutral {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

/* Downloadable Checklists & Knowledge Hub */
.knowledge-download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.checklist-card {
  background: linear-gradient(145deg, rgba(12, 27, 56, 0.85) 0%, rgba(7, 18, 38, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.checklist-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.75), 0 0 20px rgba(212, 175, 55, 0.12);
}

.checklist-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 9999px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-300);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.checklist-title {
  font-family: var(--font-serif);
  font-size: 1.16rem;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.35;
}

.checklist-desc {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 14px;
}

.checklist-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.btn-download-resource {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 18px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 10px;
  color: var(--gold-300);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-download-resource:hover {
  background: var(--gold-gradient);
  color: #050c1b;
  border-color: var(--gold-400);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
  transform: translateY(-1px);
}

/* WhatsApp Reminder Card */
.compliance-subscribe-card {
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.35) 0%, rgba(4, 10, 24, 0.95) 100%);
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: 16px;
  padding: 32px 36px;
  margin-top: 40px;
  box-shadow: 0 16px 40px -15px rgba(0, 0, 0, 0.8);
}

.subscribe-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: center;
  width: 100%;
}

.sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #34d399;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 12px;
}

.sub-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.sub-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.btn-subscribe-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-subscribe-wa:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

@media (max-width: 900px) {
  .suite-card-grid {
    grid-template-columns: 1fr;
  }
  .knowledge-download-grid {
    grid-template-columns: 1fr;
  }
  .compliance-subscribe-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   CTA Banner Section
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, rgba(16, 36, 76, 0.92) 0%, rgba(7, 19, 40, 0.96) 100%);
  border: 1px solid var(--navy-border-hover);
  border-radius: var(--radius-lg);
  padding: 44px 50px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

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

.cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 8px;
}

.cta-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Corporate Footer with Mandatory ICAI Disclaimer
   ========================================================================== */
.footer {
  background: #020610;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 25px;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 18px 0;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-400);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a:hover {
  color: var(--text-white);
}

/* ICAI Mandatory Disclaimer */
.icai-disclaimer-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  margin-bottom: 30px;
}

.icai-disclaimer-box p {
  font-size: 0.76rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  font-size: 0.82rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 14px;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions, .hero-badge-group, .hero-stats-strip {
    justify-content: center;
  }
  .hero-glass-card {
    margin: 0 auto;
  }
  .services-grid-main, .industries-grid, .resources-grid, .career-perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1180px) {
  .top-bar {
    display: none;
  }
  .nav-menu {
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    background: rgba(4, 10, 24, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px 40px;
    gap: 8px;
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  }
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav-actions .btn,
  .nav-actions #headerConsultBtn,
  .nav-actions .btn-consult-luxury {
    display: none !important;
  }
  .nav-link {
    width: 100%;
    padding: 12px 18px;
    font-size: 0.95rem;
    border-radius: 10px;
  }
  .nav-dropdown-item {
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    transform: none !important;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: none;
    margin-top: 8px;
    padding: 12px;
  }
  .dropdown-menu::before {
    display: none;
  }
  .dropdown-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Universal Page Layouts & Service Blocks Architecture
   ========================================================================== */
.service-category-block {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-category-block:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.6);
}

.service-category-highlight {
  border-color: rgba(212, 175, 55, 0.45);
  background: linear-gradient(145deg, rgba(14, 30, 62, 0.92) 0%, rgba(6, 17, 36, 0.98) 100%);
}

.service-category-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 36px;
  align-items: center;
}

.service-category-img {
  height: 220px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
}

.service-category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-category-img-gold {
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-label-gold {
  color: var(--gold-300);
}

.service-category-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-white);
  margin-bottom: 10px;
}

.service-category-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-category-scope {
  background: rgba(0, 0, 0, 0.3);
  padding: 26px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-category-scope-gold {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.service-category-scope h4 {
  color: var(--gold-300);
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.service-deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-light);
  list-style: none;
  padding: 0;
  margin: 0;
}

.scope-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
  flex-wrap: wrap;
}

.scope-header-flex h4 {
  margin: 0;
}

.scope-subtext {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.scope-tags-flex {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* About Mission Grid */
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.about-mission-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 36px;
}

.about-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  margin-bottom: 18px;
}

.about-mission-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.about-mission-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Contact Grid */
.contact-split-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr;
  gap: 45px;
  align-items: flex-start;
}

.contact-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 40px;
}

.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.chamber-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-bottom: 30px;
}

/* Resources Grid Layout */
.resources-layout-grid {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* Service Detail Page Layout */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.detail-card {
  background: var(--navy-card);
  padding: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--navy-border);
  margin-bottom: 30px;
}

.detail-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}

.detail-card-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--text-white);
  margin: 0;
}

.detail-lead-text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.detail-sub-text {
  color: var(--text-muted);
  line-height: 1.8;
}

.detail-checklist-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold-300);
  margin-bottom: 18px;
}

.detail-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.92rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.detail-checklist .check-icon {
  color: var(--gold-400);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-deliverables-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 18px;
}

.detail-deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.deliverable-mini-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px;
  border-radius: var(--radius-sm);
}

.deliverable-mini-card h5 {
  color: var(--gold-300);
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.deliverable-mini-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.consultation-desk-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 32px;
  position: sticky;
  top: 110px;
}

/* ==========================================================================
   Legal Documents & Property Deeds Practice Area
   ========================================================================== */
.legal-deeds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.deed-card {
  background: linear-gradient(145deg, rgba(14, 30, 62, 0.7) 0%, rgba(7, 19, 40, 0.85) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 14px;
  padding: 26px 24px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.deed-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.deed-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.15);
}

.deed-card:hover::before {
  opacity: 1;
}

.deed-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.deed-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  flex-shrink: 0;
}

.deed-badge {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 9999px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-300);
  border: 1px solid rgba(212, 175, 55, 0.25);
  white-space: nowrap;
}

.deed-title {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.deed-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.deed-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 18px;
}

.deed-spec-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.deed-spec-row svg {
  width: 14px;
  height: 14px;
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 3px;
}

.deed-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  color: var(--gold-300);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s ease;
  text-decoration: none;
}

.deed-action-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
  color: #ffffff;
}

@media (max-width: 768px) {
  .services-grid-main, .industries-grid, .resources-grid, .career-perks-grid, .trust-grid, .legal-deeds-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .timeline-track::before {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 50px;
    text-align: left !important;
  }
  .timeline-node {
    left: 12px !important;
    right: auto !important;
  }
}

/* ==========================================================================
   Luxury Modals: Consultation & Printable Checklist Viewer
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(3, 8, 20, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overscroll-behavior: contain;
}

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

.modal-box {
  background: linear-gradient(145deg, rgba(14, 30, 62, 0.98) 0%, rgba(6, 17, 36, 0.99) 100%);
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 18px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.15);
  transform: translateY(20px) scale(0.97);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  color: #f1f5f9;
}

.modal-backdrop.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 28px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 16px;
}

.modal-title-group h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.modal-title-group p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  touch-action: manipulation;
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
  color: #f87171;
}

.modal-body {
  padding: 24px 28px 28px;
}

/* Checklist Document Specific Styles */
.modal-box-wide {
  max-width: 820px;
}

.doc-letterhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  gap: 16px;
  flex-wrap: wrap;
}

.doc-logo-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-300);
  letter-spacing: 0.5px;
}

.doc-logo-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.doc-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  margin-bottom: 10px;
  transition: background 0.2s ease;
}

.doc-checklist-item:hover {
  background: rgba(212, 175, 55, 0.06);
}

.doc-checklist-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--gold-400);
  cursor: pointer;
  flex-shrink: 0;
}

.doc-checklist-text h5 {
  font-size: 0.92rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.doc-checklist-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.doc-actions-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

/* Chamber Toast Notifications */
.ca-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(4, 10, 24, 0.96);
  border: 1px solid rgba(52, 211, 153, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 20px rgba(52, 211, 153, 0.2);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 0.9rem;
  z-index: 100000;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 440px;
}

.ca-toast.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   MASTER RESPONSIVE ENGINE (Desktop | Tablet | Mobile | Small Mobile | Android/iOS)
   ========================================================================== */

/* Universal Mobile / Touch Optimization */
@media (hover: none) and (pointer: coarse) {
  * {
    -webkit-tap-highlight-color: transparent;
  }
  .btn, .nav-link, .suite-tab-btn, .filter-btn, .modal-close-btn, .btn-download-resource, .btn-subscribe-wa {
    touch-action: manipulation;
  }
}

/* Inputs on Mobile: Prevent iOS Auto-Zoom */
@media (max-width: 768px) {
  input, select, textarea, .calc-input {
    font-size: 16px !important; /* Vital for iOS Safari to avoid zoom bug */
  }
}

/* 1. Large Tablets & Small Desktops (max-width: 1180px) */
@media (max-width: 1180px) {
  .top-bar-left .top-location-badge,
  .top-bar-right .live-chamber-status {
    display: none;
  }
  .nav-container-fluid {
    padding: 0 24px;
  }
  .suite-card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .suite-output-card {
    position: static;
    top: auto;
  }
  .founder-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .founder-visual-frame {
    justify-content: center;
  }
  .founder-speech {
    border-left: none;
    border-top: 2px solid var(--gold-400);
    border-bottom: 2px solid var(--gold-400);
    padding: 16px 0;
    margin: 20px 0;
  }
  .founder-signature {
    justify-content: center;
  }
}

/* 2. Tablets Portrait & Landscape (max-width: 991px) */
@media (max-width: 991px) {
  .section {
    padding: 60px 0;
  }
  .hero {
    padding: 100px 0 60px;
  }
  .hero-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
  }
  .subscribe-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }
  .cta-banner {
    padding: 34px 28px;
  }
  .cta-flex {
    flex-direction: column;
    text-align: center;
  }
  .cta-buttons {
    justify-content: center;
  }
  .legal-deeds-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .knowledge-download-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .service-category-block {
    padding: 28px 24px;
  }
  .service-category-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-category-title {
    font-size: 1.6rem;
  }
  .service-category-img {
    height: 200px;
  }
  .contact-split-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .resources-layout-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* 3. Standard Mobile (max-width: 768px) */
@media (max-width: 768px) {
  body {
    font-size: 14.5px;
  }
  .section {
    padding: 44px 0;
  }
  .section-label {
    font-size: 0.72rem;
    padding: 4px 12px;
    margin-bottom: 8px;
  }
  .section-title {
    font-size: 1.7rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }
  .section-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }
  .container, .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
  .top-bar {
    display: none;
  }
  .header-nav {
    top: 0;
    padding: 10px 0;
  }
  .nav-menu {
    top: 64px;
    max-height: calc(100vh - 64px);
    max-height: calc(100dvh - 64px);
  }
  .brand-logo .logo-text-firm {
    font-size: 1.02rem;
  }
  .brand-logo .logo-text-sub {
    font-size: 0.62rem;
  }
  .hero {
    padding: 85px 0 40px;
  }
  .hero-title {
    font-size: 2rem;
    line-height: 1.25;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    padding: 12px 8px;
  }
  .hero-stat-item h3 {
    font-size: 1.3rem;
  }
  .hero-stat-item p {
    font-size: 0.7rem;
  }
  .hero-glass-card {
    max-width: 100%;
    padding: 20px 16px;
  }
  .floating-badge {
    position: static;
    margin-bottom: 12px;
    display: inline-flex;
  }

  /* Services Page Specific Responsive Overhaul */
  .service-category-block {
    padding: 20px 16px;
    border-radius: 12px;
    margin-bottom: 24px;
  }
  .service-category-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-category-img {
    height: 175px;
    margin-bottom: 14px;
    border-radius: 8px;
  }
  .service-category-title {
    font-size: 1.38rem;
    margin-bottom: 8px;
    line-height: 1.25;
  }
  .service-category-desc {
    font-size: 0.86rem;
    line-height: 1.5;
  }
  .service-category-scope {
    padding: 16px 14px;
    border-radius: 10px;
  }
  .service-category-scope h4 {
    font-size: 0.94rem;
    margin-bottom: 10px;
  }
  .service-deliverables-list {
    gap: 8px;
    font-size: 0.84rem;
    line-height: 1.45;
  }
  .service-deliverables-list li {
    padding: 1px 0;
  }
  .scope-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .scope-subtext {
    font-size: 0.82rem;
    line-height: 1.55;
    margin-bottom: 12px;
  }
  .scope-tags-flex {
    gap: 6px;
  }
  .scope-tags-flex .tag-outline {
    font-size: 0.72rem;
    padding: 3px 8px;
  }

  /* Legal Deeds 6 Cards on Mobile */
  .legal-deeds-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 18px;
  }
  .deed-card {
    padding: 18px 16px;
    border-radius: 12px;
  }
  .deed-icon-wrap {
    width: 40px;
    height: 40px;
  }
  .deed-icon-wrap svg {
    width: 20px;
    height: 20px;
  }
  .deed-badge {
    font-size: 0.68rem;
    padding: 3px 8px;
  }
  .deed-title {
    font-size: 1.18rem;
    margin-bottom: 6px;
  }
  .deed-desc {
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .deed-specs {
    gap: 8px;
    margin-bottom: 14px;
  }
  .deed-spec-row {
    font-size: 0.78rem;
    gap: 8px;
    line-height: 1.4;
  }
  .deed-spec-row svg {
    width: 14px;
    height: 14px;
  }
  .deed-action-btn {
    padding: 10px 14px;
    font-size: 0.82rem;
    width: 100%;
    text-align: center;
  }

  /* Accordion FAQs on Mobile */
  .accordion-header {
    padding: 14px 16px;
    font-size: 0.92rem;
  }
  .accordion-inner {
    padding: 14px 16px;
    font-size: 0.84rem;
    line-height: 1.55;
  }

  /* About Page on Mobile */
  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-mission-card {
    padding: 20px 16px;
    border-radius: 12px;
  }
  .about-mission-card h3 {
    font-size: 1.22rem;
    margin-bottom: 8px;
  }
  .about-mission-card p {
    font-size: 0.86rem;
    line-height: 1.55;
  }
  .founder-portrait-card {
    padding: 22px 16px !important;
  }

  /* Contact Page on Mobile */
  .contact-split-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .contact-card, .chamber-card {
    padding: 20px 16px;
    border-radius: 12px;
  }
  .contact-form-title {
    font-size: 1.25rem;
  }
  .contact-form-subtitle {
    font-size: 0.82rem;
    margin-bottom: 18px;
  }
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Resources Page on Mobile */
  .resources-layout-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .resources-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .resources-filter-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .resources-filter-bar::-webkit-scrollbar {
    display: none;
  }
  .resources-filter-bar .filter-btn {
    flex-shrink: 0;
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  /* Service Detail Page on Mobile */
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .detail-card, .consultation-desk-card {
    padding: 20px 16px;
    border-radius: 12px;
    margin-bottom: 18px;
  }
  .detail-card-title {
    font-size: 1.3rem;
  }
  .detail-lead-text {
    font-size: 0.86rem;
    line-height: 1.55;
  }
  .detail-checklist {
    font-size: 0.84rem;
    gap: 10px;
  }
  .detail-deliverables-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* 5-in-1 Decision Suite Mobile */
  .suite-tabs-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 6px 8px 12px;
    gap: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  .suite-tabs-nav::-webkit-scrollbar {
    display: none;
  }
  .suite-tab-btn {
    flex-shrink: 0;
    padding: 7px 14px;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .suite-card {
    padding: 20px 16px;
  }
  .suite-output-card {
    padding: 18px 16px;
  }
  .calc-form-grid {
    grid-template-columns: 1fr !important;
  }

  /* Downloadable Checklists & WhatsApp */
  .knowledge-download-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .compliance-subscribe-card {
    padding: 22px 18px;
    margin-top: 24px;
  }

  /* Compliance Due Dates */
  .compliance-row {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 16px !important;
  }
  .compliance-row > div:first-child {
    width: 100%;
  }
  .compliance-row > div:last-child {
    width: 100%;
    justify-content: space-between;
  }

  /* Modals Mobile Adaptation */
  .modal-backdrop {
    padding: 10px;
  }
  .modal-box {
    max-width: 100%;
    max-height: 94vh;
    max-height: 94dvh;
    border-radius: 12px;
  }
  .modal-header {
    padding: 16px 16px 12px;
  }
  .modal-title-group h3 {
    font-size: 1.18rem;
  }
  .modal-body {
    padding: 16px 16px 20px;
  }
  .modal-body form > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  .doc-letterhead {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .doc-letterhead > div:last-child {
    text-align: left !important;
  }
  .doc-actions-bar {
    flex-direction: column;
    width: 100%;
  }
  .doc-actions-bar .btn {
    width: 100%;
    justify-content: center;
  }
  #closeChecklistModalBottomBtn {
    margin-left: 0 !important;
  }

  /* Toast Notification */
  .ca-toast {
    left: 12px;
    right: 12px;
    bottom: max(14px, env(safe-area-inset-bottom) + 8px);
    max-width: none;
    padding: 11px 14px;
    font-size: 0.82rem;
  }

  /* Floating WhatsApp */
  .whatsapp-float {
    bottom: max(16px, env(safe-area-inset-bottom) + 10px);
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  /* Footer */
  .footer {
    padding: 44px 0 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* 4. Small Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
  .section {
    padding: 34px 0;
  }
  .container, .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
  .brand-logo .logo-emblem-box {
    width: 32px;
    height: 32px;
  }
  .brand-logo .logo-text-firm {
    font-size: 0.92rem;
  }
  .brand-logo .logo-text-sub {
    font-size: 0.58rem;
  }
  .brand-logo .logo-text-city {
    display: none;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-stats-strip {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: center;
  }
  .hero-stat-item {
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .hero-stat-item:last-child {
    border-bottom: none;
  }
  .calc-input-wrap .calc-prefix {
    font-size: 0.8rem;
  }

  /* Services Blocks on Small Mobile */
  .service-category-block {
    padding: 15px 12px;
    border-radius: 10px;
  }
  .service-category-img {
    height: 150px;
    margin-bottom: 12px;
  }
  .service-category-title {
    font-size: 1.25rem;
  }
  .service-category-desc {
    font-size: 0.82rem;
  }
  .service-category-scope {
    padding: 13px 11px;
  }
  .service-category-scope h4 {
    font-size: 0.88rem;
  }
  .service-deliverables-list {
    font-size: 0.8rem;
  }
  .deed-header {
    flex-direction: column;
    gap: 8px;
  }
  .deed-card {
    padding: 14px 12px;
  }
  .deed-icon-wrap {
    width: 36px;
    height: 36px;
  }
  .deed-icon-wrap svg {
    width: 18px;
    height: 18px;
  }
  .deed-title {
    font-size: 1.1rem;
  }
  .deed-desc {
    font-size: 0.79rem;
  }
  .deed-spec-row {
    font-size: 0.75rem;
  }
  .deed-action-btn {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
  .contact-card, .chamber-card {
    padding: 16px 12px;
  }
  .about-mission-card {
    padding: 16px 12px;
  }
  .detail-card, .consultation-desk-card {
    padding: 16px 12px;
  }
  .calc-input {
    font-size: 16px !important;
    padding: 10px 12px !important;
  }
  .calc-label {
    font-size: 0.8rem;
  }
  .scope-tags-flex .tag-outline {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
  .cta-banner {
    padding: 20px 14px;
  }
}

/* 5. Ultra Small Mobile & Galaxy Fold outer screen (max-width: 360px) */
@media (max-width: 360px) {
  .brand-logo .logo-text-group {
    max-width: 160px;
  }
  .brand-logo .logo-text-firm {
    font-size: 0.84rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero-title {
    font-size: 1.55rem;
  }
  .service-category-block {
    padding: 12px 10px;
  }
  .service-category-img {
    height: 130px;
  }
  .service-category-title {
    font-size: 1.15rem;
  }
  .service-category-desc {
    font-size: 0.78rem;
  }
  .service-deliverables-list {
    font-size: 0.76rem;
  }
  .deed-card {
    padding: 12px 10px;
  }
  .deed-title {
    font-size: 1.02rem;
  }
  .deed-desc {
    font-size: 0.76rem;
  }
  .deed-spec-row {
    font-size: 0.72rem;
  }
  .contact-card, .chamber-card, .about-mission-card {
    padding: 14px 10px;
  }
  .section-title {
    font-size: 1.35rem;
  }
  .section-desc {
    font-size: 0.78rem;
  }
  .suite-card, .suite-output-card {
    padding: 14px 10px;
  }
  .modal-header {
    padding: 12px 12px 10px;
  }
  .modal-body {
    padding: 12px 12px 18px;
  }
}

/* Print Styles */
@media print {
  body * {
    visibility: hidden;
  }
  #checklistModal, #checklistModal * {
    visibility: visible;
  }
  #checklistModal {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: #ffffff !important;
    padding: 0;
  }
  .modal-box {
    box-shadow: none !important;
    border: none !important;
    background: #ffffff !important;
    color: #000000 !important;
    max-width: 100% !important;
  }
  .modal-close-btn, .doc-actions-bar, .modal-backdrop {
    display: none !important;
  }
  .doc-checklist-item {
    background: #ffffff !important;
    border-color: #cbd5e1 !important;
    color: #000000 !important;
  }
  .doc-checklist-text h5 {
    color: #000000 !important;
  }
  .doc-checklist-text p {
    color: #475569 !important;
  }
}


