/* ==========================================================================
   NYAYSAARATHI LEGAL LLP - ADVOCATES & SOLICITORS STYLESHEET
   Refined Typography, Stately Burgundy & Champagne Gold
   ========================================================================== */

/* Typography loaded via HTML <head> with preconnect and display=swap for Core Web Vitals */

:root {
  /* Brand Theme Color Palette - Tuned to the exact Imperial Maroon / Burgundy of NSL.jpg */
  --color-primary-dark: #260209;     /* Deepest Midnight Wine / Rich Obsidian Maroon */
  --color-primary: #520413;          /* Authentic core NSL logo maroon */
  --color-primary-light: #6e081e;    /* Rich imperial burgundy */
  --color-primary-surface: #88112a;  /* Elevated crimson highlight */
  
  --color-gold: #c5a059;
  --color-gold-light: #dfbe7e;
  --color-gold-dark: #9f7d3b;
  --color-gold-subtle: rgba(197, 160, 89, 0.12);
  --color-gold-border: rgba(197, 160, 89, 0.35);

  --color-text-light: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-text-dark: #1e293b;
  --color-text-heading: #1e050a;
  
  --color-bg-light: #ffffff;
  --color-bg-alt: #fdfbfb;
  --color-bg-card: #ffffff;
  --color-border: #ede1e1;
  --color-border-dark: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-serif-display: 'Cinzel', serif;
  --font-serif-subheading: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions & Shadows */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-subtle: 0 4px 20px -2px rgba(82, 4, 19, 0.05);
  --shadow-medium: 0 10px 30px -4px rgba(38, 2, 9, 0.16);
  --shadow-elevated: 0 20px 45px -8px rgba(38, 2, 9, 0.28);
  --shadow-gold: 0 8px 32px -4px rgba(197, 160, 89, 0.25);
  
  /* Dimensions */
  --container-max-width: 1320px;
  --header-height: 90px;
  --topbar-height: 42px;
}

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

/* Accessibility: Skip to Main Content Link */
.skip-link {
  position: absolute;
  top: -9999px;
  left: 1rem;
  background: var(--color-primary, #520413);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 600;
  font-family: var(--font-sans);
  border: 1px solid var(--color-gold, #c5a059);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: top 0.2s ease;
  text-decoration: none;
}
.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--color-gold-light);
}

/* Security: Form Honeypot (Invisible to users, traps automated spam bots) */
.form-honeypot {
  display: none !important;
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  line-height: 1.7;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  position: relative;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Content Protection & Copy Restriction: Allow Contact Details & Form Inputs */
.allow-copy,
.allow-copy *,
.contact-card,
.contact-channel-item,
.contact-channels,
.contact-info-item,
.contact-detail,
.partner-card-contact,
.top-bar-item,
.footer-contact-item,
a[href^="tel:"],
a[href^="mailto:"],
input,
textarea,
select,
option,
[contenteditable="true"],
[data-allow-copy] {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

/* Security Toast Notification */
.security-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, #520413 0%, #260209 100%);
  border: 1.5px solid var(--color-gold);
  color: #ffffff;
  padding: 0.85rem 1.6rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 100000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}

.security-toast.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.security-toast i {
  color: var(--color-gold);
  font-size: 1.1rem;
}

/* Anti-Screenshot Privacy Shield */
.screenshot-shield {
  position: fixed;
  inset: 0;
  background-color: rgba(7, 17, 30, 0.98);
  backdrop-filter: blur(16px);
  z-index: 100001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  pointer-events: none;
  padding: 2rem;
  text-align: center;
}

.screenshot-shield.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.screenshot-shield-content {
  max-width: 520px;
  color: #ffffff;
}

.screenshot-shield-content i {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.screenshot-shield-content h3 {
  font-family: var(--font-serif-display);
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.screenshot-shield-content p {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Window Blur Capture Protection */
body.window-blurred-protect {
  filter: blur(20px);
  user-select: none;
  -webkit-user-select: none;
}

/* Print Stylesheet Protection */
@media print {
  body {
    display: none !important;
  }
  html::after {
    content: "Notice: Printing and unauthorized reproduction of Nyaysaarathi Legal LLP portal material is strictly prohibited under the Indian Copyright Act, 1957. Direct Chambers Helpline: +91-95558-90689 | Email: nyaysaarathi@gmail.com | Principal Chambers: Flat No.302, T/F, Plot No.4, Site No.4, LSC, Kalkaji, Near Site No.42, Delhi-110019";
    display: block !important;
    padding: 4rem 2rem;
    font-family: Arial, sans-serif;
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
    color: #520413;
    font-weight: bold;
  }
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-heading);
  font-family: var(--font-serif-subheading);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  position: relative;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.25rem;
  color: #334155;
}

p.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #475569;
}

a {
  color: var(--color-gold-dark);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

ul {
  list-style: none;
}

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

/* Section Containers & Utilities */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-sm {
  padding: 4rem 0;
}

.bg-dark {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: var(--color-text-light);
}

.bg-dark p {
  color: var(--color-text-muted);
}

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

/* Stately Eyebrow / Category Tag */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: var(--color-gold);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.text-center {
  text-align: center;
}

.section-header.text-center .section-tag::before {
  display: none;
}

.section-header.text-center .section-tag::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: var(--color-gold);
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.12rem;
  color: #64748b;
  max-width: 680px;
}

.section-header.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons - Khaitan Executive Style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn svg {
  transition: transform 0.3s ease;
  width: 16px;
  height: 16px;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-primary-dark);
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-gold);
}

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

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

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline-dark:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

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

.btn-white:hover {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-primary-dark);
}

/* ==========================================================================
   DISCLAIMER MODAL (Bar Council of India Compliance - Khaitan Style)
   ========================================================================== */
.disclaimer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(7, 17, 30, 0.88);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.disclaimer-modal {
  background-color: #ffffff;
  border-top: 4px solid var(--color-gold);
  max-width: 740px;
  width: 100%;
  padding: 3rem 3.5rem;
  box-shadow: var(--shadow-elevated);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 2px;
}

.disclaimer-emblem {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.disclaimer-emblem .icon-scales {
  color: var(--color-gold);
  font-size: 2rem;
}

.disclaimer-title {
  font-family: var(--font-serif-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.disclaimer-body {
  font-size: 0.93rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 2rem;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 1.5rem 0;
}

.disclaimer-body p {
  margin-bottom: 0.9rem;
}

.disclaimer-body p:last-child {
  margin-bottom: 0;
}

.disclaimer-acknowledgement {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #1e293b;
  cursor: pointer;
}

.disclaimer-acknowledgement input[type="checkbox"] {
  accent-color: var(--color-gold);
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.disclaimer-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   GLOBAL SEARCH MODAL
   ========================================================================== */
.search-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(7, 17, 30, 0.95);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 6rem 2rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.search-close-btn {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.search-close-btn:hover {
  color: var(--color-gold);
  transform: rotate(90deg);
}

.search-container {
  max-width: 800px;
  width: 100%;
}

.search-header {
  margin-bottom: 2rem;
  text-align: center;
}

.search-header h3 {
  color: #ffffff;
  font-family: var(--font-serif-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.search-header p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.search-input-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.search-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--color-gold);
  padding: 1.25rem 3.5rem 1.25rem 0.5rem;
  font-size: 1.5rem;
  font-family: var(--font-serif-subheading);
  color: #ffffff;
  outline: none;
  transition: var(--transition-smooth);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}

.search-submit-icon {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold);
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.search-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: center;
}

.filter-chip {
  padding: 0.4rem 1.1rem;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-text-muted);
  border-radius: 20px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-chip.active, .filter-chip:hover {
  background-color: var(--color-gold);
  color: var(--color-primary-dark);
  border-color: var(--color-gold);
}

.search-results-box {
  max-height: 45vh;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.search-result-item {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
  border-radius: 4px;
}

.search-result-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.search-result-item h5 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.search-result-item p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin: 0;
}

/* ==========================================================================
   TOP BAR & NAVIGATION HEADER
   ========================================================================== */
.top-bar {
  background-color: var(--color-primary-dark);
  color: var(--color-text-muted);
  font-size: 0.82rem;
  border-bottom: 1px solid var(--color-border-dark);
  padding: 0.55rem 0;
  position: relative;
  z-index: 101;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
}

.top-bar-item i {
  color: var(--color-gold);
  font-size: 0.85rem;
}

.top-bar-item a {
  color: inherit;
}

.top-bar-item a:hover {
  color: var(--color-gold-light);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.court-accreditation {
  font-family: var(--font-serif-display);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

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

/* ==========================================================================
   LANGUAGE TRANSLATION SELECTOR (Multilingual Architecture)
   Supported: English (Default), Hindi, Bengali, Tamil, Telugu, Kannada, Spanish, French, German
   ========================================================================== */
.lang-selector-dropdown {
  position: relative;
  display: inline-block;
}

.lang-selector-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(197, 160, 89, 0.35);
  color: #f1f5f9;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.04em;
}

.lang-selector-btn:hover, .lang-selector-btn.active {
  background: rgba(197, 160, 89, 0.18);
  border-color: var(--color-gold);
  color: #ffffff;
}

.lang-selector-btn i.fa-globe {
  color: var(--color-gold);
  font-size: 0.85rem;
}

.lang-selector-btn i.fa-chevron-down {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
  color: #94a3b8;
}

.lang-selector-dropdown.open .lang-selector-btn i.fa-chevron-down {
  transform: rotate(180deg);
  color: var(--color-gold);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 250px;
  background: var(--color-primary-dark);
  border: 1px solid var(--color-gold-border);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
  border-radius: 2px;
  z-index: 1000;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
}

.lang-selector-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-group-title {
  padding: 0.45rem 1rem 0.25rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 0.25rem;
}

.lang-group-title:not(:first-child) {
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.6rem;
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.42rem 1rem;
  background: transparent;
  border: none;
  color: #cbd5e1;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-option:hover {
  background: rgba(197, 160, 89, 0.15);
  color: #ffffff;
  padding-left: 1.25rem;
}

.lang-option.active {
  color: var(--color-gold);
  font-weight: 700;
  background: rgba(197, 160, 89, 0.1);
}

.lang-option.active::after {
  content: '✓';
  color: var(--color-gold);
  font-weight: bold;
  font-size: 0.85rem;
}

.lang-option-native {
  font-weight: 600;
}

.lang-option-en {
  font-size: 0.72rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lang-option.active .lang-option-en {
  color: var(--color-gold-light);
}

/* Reset Language Option Styling in Dropdowns */
.lang-option-reset {
  background: rgba(197, 160, 89, 0.12) !important;
  border-bottom: 1px solid rgba(197, 160, 89, 0.3) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  padding: 0.55rem 1rem !important;
}

.lang-option-reset:hover {
  background: rgba(197, 160, 89, 0.25) !important;
  color: #ffffff !important;
}

.lang-option-reset .lang-option-native {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold-light);
  font-weight: 700;
}

.lang-badge-reset {
  background-color: var(--color-gold);
  color: var(--color-primary-dark);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.18rem 0.5rem;
  border-radius: 2px;
}

/* Floating Active Translation Notification Bar */
.active-translation-bar {
  background: linear-gradient(90deg, #520413 0%, #260209 100%);
  border-bottom: 1.5px solid var(--color-gold);
  color: #f8fafc;
  padding: 0.55rem 0;
  font-size: 0.84rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1001;
}

.translation-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.translation-bar-text {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #e2e8f0;
}

.translation-bar-text i {
  color: var(--color-gold);
  font-size: 1.05rem;
}

.translation-bar-text strong {
  color: #ffffff;
}

.btn-revert-english {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background-color: var(--color-gold);
  color: var(--color-primary-dark);
  border: 1px solid var(--color-gold);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.95rem;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-revert-english:hover {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-light);
  box-shadow: 0 2px 8px rgba(197, 160, 89, 0.4);
  transform: translateY(-1px);
}

/* Mobile Navigation Language Selector */
.nav-mobile-lang {
  display: none;
}

@media (max-width: 1024px) {
  .nav-mobile-lang {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
  }

  .nav-mobile-lang-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 0.85rem;
  }

  .nav-mobile-lang-title i {
    color: var(--color-gold-dark);
  }

  .nav-mobile-lang-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .nav-mobile-lang-grid .lang-option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.55rem 0.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 3px;
    color: var(--color-primary);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
  }

  .nav-mobile-lang-grid .lang-option:hover,
  .nav-mobile-lang-grid .lang-option.active {
    background: var(--color-primary);
    border-color: var(--color-gold);
    color: #ffffff;
    padding-left: 0.75rem;
  }

  .nav-mobile-lang-grid .lang-option .lang-option-native {
    font-weight: 600;
    font-size: 0.82rem;
  }

  .nav-mobile-lang-grid .lang-option .lang-option-en {
    font-size: 0.68rem;
    color: #64748b;
  }

  .nav-mobile-lang-grid .lang-option:hover .lang-option-en,
  .nav-mobile-lang-grid .lang-option.active .lang-option-en {
    color: var(--color-gold-light);
  }

  .nav-mobile-lang-grid .lang-option.active::after {
    display: none;
  }
}

/* Hide default Google Translate widgets & overlays for immaculate brand aesthetics */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
}

body {
  top: 0px !important;
  position: static !important;
}

#google_translate_element {
  display: none !important;
  position: absolute;
  clip: rect(0 0 0 0);
}

.goog-tooltip, .goog-tooltip:hover {
  display: none !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.social-links a:hover {
  color: var(--color-gold);
  transform: translateY(-1px);
}

/* Main Header */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  box-shadow: var(--shadow-medium);
  height: 82px;
}

.main-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* ==========================================================================
   EXECUTIVE BRAND SEAL & FIT FRAME (Properly Proportioned, Uncongested)
   ========================================================================== */
.brand-frame {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  text-decoration: none;
  padding: 0.35rem 0.85rem;
  background: #ffffff;
  border: 1.5px solid rgba(197, 160, 89, 0.45);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(82, 4, 19, 0.05);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.brand-frame:hover {
  border-color: var(--color-gold);
  box-shadow: 0 4px 18px rgba(82, 4, 19, 0.12);
  transform: translateY(-1px);
}

.brand-frame-badge {
  width: 54px;
  height: 54px;
  background: #ffffff;
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: 3px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.brand-frame-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-frame-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1.5px solid var(--color-gold);
  padding-left: 0.85rem;
}

.brand-frame-title {
  font-family: var(--font-serif-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-frame-creds {
  font-family: var(--font-sans);
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  font-weight: 700;
  margin-top: 3px;
  white-space: nowrap;
}

/* Footer Brand Frame Variant */
.brand-frame-footer {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: none;
}

.brand-frame-footer .brand-frame-badge {
  background: #ffffff;
}

/* Backward compatibility for legacy selectors */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  text-decoration: none;
}

.brand-emblem {
  width: 54px;
  height: 54px;
  background: #ffffff;
  border: 1px solid var(--color-gold-border);
  border-radius: 3px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.brand-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1.5px solid var(--color-gold);
  padding-left: 0.85rem;
}

.brand-title {
  font-family: var(--font-serif-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  font-weight: 700;
  margin-top: 3px;
  white-space: nowrap;
}

/* Navigation Links - Balanced & Uncrowded */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1e293b;
  position: relative;
  padding: 0.4rem 0;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-gold-dark);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-search-btn {
  background: transparent;
  border: 1px solid #e2e8f0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.header-search-btn:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.mobile-menu-toggle {
  display: none;
  background: #ffffff;
  border: 1.5px solid var(--color-gold);
  border-radius: 4px;
  font-size: 1.25rem;
  color: var(--color-primary);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

/* ==========================================================================
   HERO BANNER - KHAITAN EXECUTIVE SPLIT SHOWCASE
   ========================================================================== */
.hero-slider-section {
  position: relative;
  background-color: var(--color-primary-dark);
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease-out;
}

.hero-slide.active .hero-backdrop {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 17, 30, 0.95) 0%,
    rgba(7, 17, 30, 0.85) 55%,
    rgba(7, 17, 30, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 820px;
  padding: 5.5rem 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-gold);
  font-family: var(--font-serif-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-tag::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background-color: var(--color-gold);
}

.hero-title {
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}

.hero-title span {
  color: var(--color-gold-light);
  font-style: italic;
  font-family: var(--font-serif-subheading);
}

.hero-desc {
  font-size: 1.18rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Slider Navigation & Indicators */
.hero-controls {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-indicators {
  display: flex;
  gap: 0.5rem;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.indicator-dot.active {
  background-color: var(--color-gold);
  width: 32px;
  border-radius: 10px;
}

.hero-arrow-btn {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.hero-arrow-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-primary-dark);
  border-color: var(--color-gold);
}

/* ==========================================================================
   METRICS BANNER - EXECUTIVE CREDENTIALS
   ========================================================================== */
.metrics-strip {
  background-color: var(--color-primary);
  border-top: 1px solid var(--color-border-dark);
  border-bottom: 1px solid var(--color-border-dark);
  padding: 3rem 0;
  position: relative;
  z-index: 15;
}

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

.metric-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-card:last-child {
  border-right: none;
}

.metric-icon-box {
  width: 56px;
  height: 56px;
  background-color: var(--color-gold-subtle);
  border: 1px solid var(--color-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  color: var(--color-gold);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.metric-info {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-family: var(--font-serif-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
}

.metric-label {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: 0.35rem;
  font-weight: 500;
  line-height: 1.3;
}

/* ==========================================================================
   FIRM ETHOS & LEADERSHIP - ABOUT TEASER
   ========================================================================== */
.ethos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.ethos-media {
  position: relative;
}

.ethos-image-wrapper {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.ethos-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(197, 160, 89, 0.35);
  pointer-events: none;
}

.ethos-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--color-gold);
  box-shadow: var(--shadow-elevated);
  max-width: 270px;
  border-radius: 2px;
}

.ethos-badge-title {
  font-family: var(--font-serif-display);
  font-size: 1rem;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.ethos-badge-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin: 0;
}

.ethos-content h2 {
  margin-bottom: 1.5rem;
}

.ethos-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.pillar-icon {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.pillar-text h4 {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.pillar-text p {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   PRACTICE AREAS - REFINED EXECUTIVE GRID (Khaitan Style)
   ========================================================================== */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.practice-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 2.75rem 2.25rem;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 2px;
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: background-color 0.3s ease;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
  border-color: rgba(197, 160, 89, 0.4);
}

.practice-card:hover::before {
  background-color: var(--color-gold);
}

.practice-icon {
  width: 60px;
  height: 60px;
  border-radius: 2px;
  background-color: var(--color-bg-alt);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.75rem;
  transition: var(--transition-smooth);
  border: 1px solid #e2e8f0;
}

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

.practice-title {
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
  color: var(--color-primary);
}

.practice-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.practice-features {
  border-top: 1px solid #f1f5f9;
  padding-top: 1.25rem;
  margin-bottom: 1.75rem;
}

.practice-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 0.5rem;
}

.practice-features li::before {
  content: '▪';
  color: var(--color-gold);
  font-size: 1rem;
}

.practice-link {
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.practice-card:hover .practice-link {
  color: var(--color-gold-dark);
}

/* ==========================================================================
   ARMED FORCES TRIBUNAL (AFT) SPECIAL SPOTLIGHT
   ========================================================================== */
.aft-spotlight {
  background: linear-gradient(135deg, #050d17 0%, #0b1c31 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-gold-border);
  border-bottom: 1px solid var(--color-gold-border);
}

.aft-spotlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.aft-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.aft-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(197, 160, 89, 0.15);
  border: 1px solid var(--color-gold-border);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--color-gold-light);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.aft-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}

.aft-feature-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.aft-feature-card:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: var(--color-gold-border);
}

.aft-feature-card i {
  color: var(--color-gold);
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  display: block;
}

.aft-feature-card h5 {
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.aft-feature-card p {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
}

.aft-quote-card {
  background: rgba(19, 39, 66, 0.5);
  border: 1px solid rgba(197, 160, 89, 0.3);
  padding: 3rem 2.5rem;
  position: relative;
  border-radius: 2px;
  box-shadow: var(--shadow-elevated);
}

.aft-quote-card::before {
  content: '“';
  font-family: var(--font-serif-subheading);
  font-size: 5rem;
  color: rgba(197, 160, 89, 0.2);
  position: absolute;
  top: 1rem;
  left: 2rem;
  line-height: 1;
}

.aft-quote-text {
  font-family: var(--font-serif-subheading);
  font-size: 1.25rem;
  font-style: italic;
  color: #f1f5f9;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.aft-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.aft-author-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.2rem;
  overflow: hidden;
  flex-shrink: 0;
}

.aft-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.aft-author-info h5 {
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.aft-author-info p {
  color: var(--color-gold);
  font-size: 0.8rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   THOUGHT LEADERSHIP & LEGAL INSIGHTS (Khaitan Signature)
   ========================================================================== */
.insights-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: 1px solid var(--color-border);
  padding: 0.65rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.tab-btn.active, .tab-btn:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

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

.insight-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

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

.insight-media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-primary-light);
}

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

.insight-card:hover .insight-media img {
  transform: scale(1.06);
}

.insight-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-primary);
  color: var(--color-gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
}

.insight-body {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.insight-date {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.insight-title {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 0.85rem;
  color: var(--color-primary);
}

.insight-title a {
  color: inherit;
}

.insight-title a:hover {
  color: var(--color-gold-dark);
}

.insight-excerpt {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.insight-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold-dark);
}

/* ==========================================================================
   CONSULTATION & INQUIRY SECTION
   ========================================================================== */
.consultation-wrapper {
  background-color: #ffffff;
  box-shadow: var(--shadow-elevated);
  border-radius: 2px;
  overflow: hidden;
  border-top: 3px solid var(--color-gold);
}

.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
}

.consultation-info {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.consultation-info h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.consultation-info p {
  color: var(--color-text-muted);
}

.contact-channels {
  margin: 2.5rem 0;
}

.contact-channel-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.channel-icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-gold-subtle);
  border: 1px solid var(--color-gold-border);
  color: var(--color-gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.channel-text h5 {
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.channel-text p, .channel-text a {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin: 0;
}

.channel-text a:hover {
  color: var(--color-gold);
}

.consultation-form-box {
  padding: 3.5rem 3.5rem;
}

.consultation-form-box h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.consultation-form-box .form-subtitle {
  font-size: 0.92rem;
  color: #64748b;
  margin-bottom: 2rem;
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #334155;
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  border: 1px solid #cbd5e1;
  border-radius: 2px;
  outline: none;
  transition: var(--transition-smooth);
  background-color: #f8fafc;
}

.form-control:focus {
  border-color: var(--color-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(11, 26, 45, 0.08);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-disclaimer-notice {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.45;
  margin-top: 1rem;
}

/* Direct Legal Consultation & Email Action Cards */
.consultation-direct-box {
  display: flex;
  flex-direction: column;
}

.direct-contact-header {
  margin-bottom: 1.5rem;
}

.direct-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.email-action-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: 4px;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.email-action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(38, 2, 9, 0.08);
  border-color: var(--color-gold-border);
}

.email-action-card.primary-email-card {
  border-left: 4px solid var(--color-gold);
  background: linear-gradient(to right, #ffffff, #fdfbf7);
}

.email-action-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: var(--color-gold-subtle);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.primary-email-card .email-action-icon {
  background: var(--color-primary);
  color: var(--color-gold);
}

.email-action-details {
  flex: 1;
}

.email-card-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold-dark);
  margin-bottom: 0.2rem;
}

.email-card-title {
  font-family: var(--font-serif-display);
  font-size: 1.08rem;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.email-card-desc {
  font-size: 0.84rem;
  color: #64748b;
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.email-interactive-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.email-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  background: var(--color-primary);
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid var(--color-gold);
  transition: all 0.25s ease;
}

.email-direct-link:hover {
  background: var(--color-primary-light);
  color: var(--color-gold-light) !important;
  box-shadow: 0 4px 14px rgba(82, 4, 19, 0.25);
  transform: translateY(-1px);
}

.email-direct-link .email-ext-icon {
  font-size: 0.75rem;
  opacity: 0.85;
}

.btn-copy-email {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  background: #ffffff;
  color: var(--color-text-dark);
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
}

.btn-copy-email:hover {
  background: #f1f5f9;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-copy-email.copied {
  background: #ecfdf5;
  border-color: #10b981;
  color: #065f46;
}

.consultation-guide-card {
  background: #f8fafc;
  border: 1px dashed var(--color-gold-border);
  border-radius: 4px;
  padding: 1.15rem 1.35rem;
  margin-top: 0.5rem;
}

.consultation-guide-card h5 {
  font-size: 0.88rem;
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.consultation-guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.6;
}

.consultation-guide-list li {
  margin-bottom: 0.25rem;
}

/* ==========================================================================
   CLEAN CHAMBERS CONTACT CHANNELS & EMBEDDED GOOGLE FORM
   ========================================================================== */
.channel-action-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.55rem;
  flex-wrap: wrap;
}

.channel-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
  line-height: 1.2;
}

.channel-action-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--color-gold);
  color: var(--color-gold-light) !important;
}

.channel-action-btn.primary {
  background: var(--color-gold);
  color: var(--color-primary-dark) !important;
  border-color: var(--color-gold);
  font-weight: 700;
}

.channel-action-btn.primary:hover {
  background: var(--color-gold-light);
  color: var(--color-primary-dark) !important;
  box-shadow: 0 2px 8px rgba(197, 160, 89, 0.35);
}

.contact-gform-frame-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-gform-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.contact-gform-toolbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.gform-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  color: var(--color-primary) !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
}

.gform-header-btn:hover {
  background: var(--color-primary);
  color: #ffffff !important;
  border-color: var(--color-primary);
}

.contact-gform-iframe-wrapper {
  position: relative;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.contact-gform-iframe {
  width: 100%;
  height: 840px;
  min-height: 840px;
  border: none;
  display: block;
}

@media (max-width: 991px) {
  .contact-gform-iframe {
    height: 780px;
    min-height: 780px;
  }
}


/* Four Pillars Grid (about.html) */
.four-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Practice Area Spotlight & Feature Subgrids (practice-areas.html) */
.practice-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}

.practice-features-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ==========================================================================
   EXECUTIVE FOOTER - KHAITAN ARCHITECTURE
   ========================================================================== */
.site-footer {
  background-color: var(--color-primary-dark);
  color: var(--color-text-light);
  border-top: 1px solid var(--color-border-dark);
}

.footer-top {
  padding: 5rem 0 4rem;
}

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

.footer-col h4 {
  color: #ffffff;
  font-family: var(--font-serif-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.65rem;
}

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

.footer-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 1.25rem 0 1.75rem;
}

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

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

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

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

.court-link:hover,
.court-link:focus {
  color: var(--color-gold-light);
  text-decoration: underline;
}

.footer-badge-box {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
  border-radius: 2px;
  margin-top: 1rem;
}

.footer-badge-box p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid var(--color-border-dark);
  padding: 1.75rem 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: var(--color-text-muted);
}

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

/* ==========================================================================
   PRACTICE DETAIL MODAL / DRAWER
   ========================================================================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(7, 17, 30, 0.85);
  backdrop-filter: blur(6px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.practice-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 600px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 10000;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.25);
  transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
}

.practice-drawer.active {
  right: 0;
}

.drawer-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--color-primary);
  cursor: pointer;
}

.drawer-close-btn:hover {
  color: var(--color-gold);
}

.drawer-content h3 {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.drawer-content .drawer-tag {
  color: var(--color-gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  display: block;
}

.drawer-content .drawer-body {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.75;
}

.drawer-content .drawer-body h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary);
  margin: 1.75rem 0 0.75rem;
}

.drawer-content .drawer-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.drawer-content .drawer-body li {
  list-style-type: square;
  margin-bottom: 0.45rem;
  color: #334155;
}

/* ==========================================================================
   PARTNER & LEADERSHIP PROFILE (Khaitan & Co Inspired Archetype)
   ========================================================================== */
.leadership-profile-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3.5rem;
  align-items: start;
  background: #ffffff;
  border: 1px solid var(--color-border);
  padding: 3.5rem;
  border-radius: 2px;
  box-shadow: var(--shadow-medium);
}

.partner-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.partner-card:hover {
  box-shadow: var(--shadow-elevated);
}

.partner-photo-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: var(--color-bg-alt);
  border-bottom: 3px solid var(--color-gold);
}

.partner-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.partner-card:hover .partner-photo-wrapper img {
  transform: scale(1.03);
}

.partner-card-meta {
  padding: 1.75rem 1.5rem;
  text-align: center;
  background: #ffffff;
}

.partner-card-name {
  font-family: var(--font-serif-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.partner-card-role {
  color: var(--color-gold-dark);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

.partner-badges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.badge-gnlu {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.35);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  letter-spacing: 0.03em;
}

.badge-gnlu i {
  color: var(--color-gold);
  font-size: 0.82rem;
}

.badge-defence-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(11, 26, 45, 0.06);
  border: 1px solid rgba(11, 26, 45, 0.2);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

.partner-focus-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 1.5rem;
}

.focus-chip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
  letter-spacing: 0.02em;
}

.focus-chip i {
  color: var(--color-gold-dark);
  margin-right: 0.35rem;
  font-size: 0.75rem;
}

.partner-card-contact {
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.partner-card-contact a {
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.partner-card-contact a:hover {
  color: var(--color-gold-dark);
}

.leadership-bio-col h3 {
  font-size: 2.1rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.leadership-bio-designation {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.leadership-bio-col p {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.defence-pledge-box {
  background: var(--color-primary);
  color: #ffffff;
  padding: 2.25rem 2rem;
  border-left: 4px solid var(--color-gold);
  border-radius: 2px;
  margin-top: 2rem;
}

.defence-pledge-box h4 {
  color: #ffffff;
  font-family: var(--font-serif-display);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.defence-pledge-box p {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   FLOATING NON-BLOCKING COOKIE BANNER (DPDPA 2023 Compliant)
   ========================================================================== */
.cookie-floating-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: auto;
  max-width: 440px;
  width: calc(100% - 3rem);
  z-index: 9980;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.cookie-floating-banner.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner-content {
  background: #ffffff;
  border: 1px solid var(--color-gold);
  border-left: 4px solid var(--color-gold);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  border-radius: 4px;
  padding: 1.25rem 1.35rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-family: var(--font-sans);
}

.cookie-banner-icon {
  font-size: 1.4rem;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text h5 {
  font-family: var(--font-serif-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
  letter-spacing: 0.03em;
}

.cookie-banner-text p {
  font-size: 0.8rem;
  line-height: 1.55;
  color: #475569;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-text a:hover {
  color: var(--color-gold-dark);
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #ffffff;
  border: 1px solid var(--color-gold);
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-cookie-accept:hover {
  background: var(--color-gold);
  color: var(--color-primary-dark);
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.35);
}

/* ==========================================================================
   RESPONSIVE DESIGN (Tablets & Mobile)
   ========================================================================== */
@media (max-width: 1024px) {
  :root {
    --header-height: 78px;
  }

  .top-bar {
    display: none !important;
  }

  .container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 4px;
    border: 1.5px solid var(--color-gold) !important;
    background: #ffffff !important;
    color: var(--color-primary) !important;
    font-size: 1.25rem !important;
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
    transition: all 0.2s ease;
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:active {
    background: var(--color-primary) !important;
    color: var(--color-gold) !important;
  }

  .header-actions .btn {
    display: none !important;
  }

  .brand-frame {
    flex: 0 1 auto;
    min-width: 0;
  }

  .brand-frame-text {
    min-width: 0;
  }

  .nav-menu {
    position: fixed !important;
    top: var(--header-height) !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 340px !important;
    height: calc(100vh - var(--header-height)) !important;
    height: calc(100dvh - var(--header-height)) !important;
    background-color: #ffffff !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 1.5rem 1.25rem !important;
    gap: 0.25rem !important;
    transform: translateX(-100%) !important;
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.32s !important;
    visibility: hidden;
    border-top: 1px solid var(--color-border) !important;
    border-right: 2px solid var(--color-gold) !important;
    box-shadow: 12px 0 35px rgba(38, 2, 9, 0.22) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    z-index: 99999 !important;
  }

  .nav-menu.active {
    transform: translateX(0) !important;
    visibility: visible !important;
  }

  .nav-menu .nav-link {
    display: flex !important;
    align-items: center !important;
    padding: 0.85rem 0.75rem !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    color: var(--color-primary) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 4px;
    text-decoration: none !important;
    width: 100% !important;
    transition: all 0.2s ease !important;
    white-space: normal !important;
  }

  .nav-menu .nav-link::after {
    display: none !important;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: var(--color-gold-dark) !important;
    background-color: rgba(197, 160, 89, 0.1) !important;
    padding-left: 1rem !important;
  }

  .practice-grid, .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .four-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .practice-spotlight-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .metric-card {
    border-right: none;
  }
  
  .ethos-grid, .aft-grid, .consultation-grid, .leadership-profile-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ethos-badge {
    position: static;
    margin-top: 1.25rem;
    max-width: 100%;
    right: auto;
    bottom: auto;
  }
  
  .leadership-profile-grid {
    padding: 2.5rem 2rem;
  }

  .partner-card {
    max-width: 360px;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  html, body {
    overflow-x: hidden !important;
    overflow-x: clip !important;
    max-width: 100% !important;
    width: 100% !important;
    position: relative;
  }

  .container {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .section {
    padding: 3.75rem 0;
  }

  .section-sm {
    padding: 2.75rem 0;
  }

  .section-header {
    margin-bottom: 2.25rem;
  }

  /* Header & Navigation */
  .main-header {
    height: var(--header-height);
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .main-header.scrolled {
    height: var(--header-height);
  }

  .main-header .container {
    padding: 0 0.85rem;
    gap: 0.4rem;
    height: 100%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand-frame {
    padding: 0.2rem 0.45rem;
    gap: 0.5rem;
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(100% - 92px);
    overflow: hidden;
    box-sizing: border-box;
  }

  .brand-frame-badge {
    width: 38px;
    height: 38px;
    min-width: 38px;
    flex-shrink: 0;
  }

  .brand-frame-text {
    padding-left: 0.5rem;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .brand-frame-title {
    font-size: clamp(0.78rem, 3.2vw, 0.95rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    display: block;
  }

  .brand-frame-creds {
    font-size: clamp(0.44rem, 1.8vw, 0.52rem);
    letter-spacing: 0.06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
  }

  .top-bar {
    display: none !important;
  }

  .header-actions {
    gap: 0.35rem;
    flex-shrink: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
  }

  /* HIDE Request Counsel button in top header on mobile - prevents blowup */
  .header-actions .btn {
    display: none !important;
  }

  .header-search-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 0.85rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    border-radius: 4px;
    border: 1.5px solid var(--color-gold) !important;
    background: #ffffff !important;
    color: var(--color-primary) !important;
    font-size: 1.2rem !important;
    flex-shrink: 0;
    cursor: pointer;
  }

  .nav-menu {
    position: fixed !important;
    top: var(--header-height) !important;
    left: 0 !important;
    width: 85vw !important;
    max-width: 320px !important;
    height: calc(100vh - var(--header-height)) !important;
    height: calc(100dvh - var(--header-height)) !important;
    background-color: #ffffff !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 1.5rem 1.25rem !important;
    gap: 0.25rem !important;
    transform: translateX(-100%) !important;
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.32s !important;
    visibility: hidden;
    border-top: 1px solid var(--color-border) !important;
    border-right: 2px solid var(--color-gold) !important;
    box-shadow: 12px 0 35px rgba(38, 2, 9, 0.22) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    z-index: 99999 !important;
  }

  .nav-menu.active {
    transform: translateX(0) !important;
    visibility: visible !important;
  }

  /* Hero Section */
  .hero-slider-section {
    min-height: 72vh;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-slide {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-content {
    padding: 2.75rem 0 4.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-title {
    font-size: clamp(1.85rem, 6.8vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1.15rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.65rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.82rem;
  }

  .hero-controls {
    bottom: 1.25rem;
    right: 1rem;
    left: 1rem;
    width: auto;
    max-width: calc(100% - 2rem);
    justify-content: space-between;
    box-sizing: border-box;
  }

  .hero-arrow-btn {
    width: 38px;
    height: 38px;
  }

  /* Grids & Cards */
  .practice-grid,
  .insights-grid,
  .metrics-grid,
  .aft-features-grid,
  .form-grid,
  .four-pillars-grid,
  .practice-spotlight-grid,
  .practice-features-subgrid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .metric-card {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-right: none !important;
    gap: 1.25rem;
    width: 100%;
    box-sizing: border-box;
  }

  .metric-card:last-child {
    border-bottom: none;
  }

  .metric-info {
    min-width: 0;
    flex: 1;
  }

  .metric-label {
    word-break: break-word;
  }

  .practice-card,
  .insight-card {
    padding: 1.75rem 1.25rem;
    width: 100%;
    box-sizing: border-box;
  }

  .ethos-badge {
    position: static;
    margin-top: 1.25rem;
    max-width: 100%;
    right: auto;
    bottom: auto;
  }

  .ethos-pillars {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 1.5rem 0 2rem;
  }

  .aft-quote-card {
    padding: 2rem 1.25rem;
    width: 100%;
    box-sizing: border-box;
  }

  .leadership-profile-grid {
    padding: 1.75rem 1.25rem;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
  }

  .partner-card {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .partner-photo-wrapper {
    height: 300px;
    width: 100%;
  }

  .leadership-bio-col h3 {
    font-size: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-top {
    padding: 3.5rem 0 2.5rem;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  /* Contact Page & Consultation Grid Mobile Layout */
  .consultation-wrapper {
    border-radius: 6px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .consultation-grid {
    grid-template-columns: 1fr !important;
  }

  .consultation-info {
    padding: 2rem 1.25rem !important;
    width: 100%;
    box-sizing: border-box;
  }

  .consultation-info h2 {
    font-size: 1.55rem;
  }

  .consultation-form-box {
    padding: 2rem 1.25rem !important;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-channel-item {
    gap: 0.85rem;
    margin-bottom: 1.35rem;
  }

  .channel-icon {
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
  }

  .channel-text h5 {
    font-size: 0.92rem;
  }

  .channel-action-row {
    gap: 0.4rem;
  }

  .channel-action-btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.76rem;
  }

  .contact-gform-header {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .contact-gform-header h3 {
    font-size: 1.35rem;
  }

  .contact-gform-toolbar {
    width: 100%;
    display: flex;
    gap: 0.5rem;
  }

  .gform-header-btn {
    flex: 1;
    justify-content: center;
    padding: 0.5rem 0.6rem;
    font-size: 0.76rem;
  }

  .contact-gform-iframe-wrapper {
    width: 100%;
    min-height: 520px;
    box-sizing: border-box;
  }

  .contact-gform-iframe {
    width: 100% !important;
    height: 680px !important;
    min-height: 520px !important;
    display: block;
  }

  /* Disclaimer Modal */
  .disclaimer-overlay {
    padding: 0.75rem;
  }

  .disclaimer-modal {
    padding: 1.75rem 1.25rem;
    max-width: 100%;
    max-height: 88vh;
  }

  .disclaimer-title {
    font-size: 1.2rem;
  }

  .disclaimer-body {
    font-size: 0.86rem;
    padding: 1rem 0;
    margin-bottom: 1.25rem;
  }

  .disclaimer-actions .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
    padding: 0.85rem 1.2rem;
  }

  /* Search Overlay */
  .search-overlay {
    padding: 4.5rem 1.25rem 1.5rem;
  }

  .search-close-btn {
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.5rem;
  }

  .search-header h3 {
    font-size: 1.35rem;
  }

  .search-input {
    font-size: 1.15rem;
    padding: 0.85rem 2.5rem 0.85rem 0;
  }

  /* Floating Cookie Banner */
  .cookie-floating-banner {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    width: auto;
    max-width: none;
  }

  .cookie-banner-content {
    flex-direction: column;
    padding: 1rem 1.15rem;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: stretch;
    margin-top: 0.6rem;
  }

  .btn-cookie-accept {
    width: 100%;
    text-align: center;
  }

  /* Email Action Cards */
  .email-action-card {
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.15rem 1rem;
  }

  .email-interactive-bar {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .email-direct-link, .btn-copy-email {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 64px;
  }

  .container {
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  .main-header .container {
    padding: 0 0.6rem;
    gap: 0.3rem;
  }

  .brand-frame {
    padding: 0.18rem 0.35rem;
    gap: 0.4rem;
    max-width: calc(100% - 78px);
  }

  .brand-frame-badge {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .brand-frame-text {
    padding-left: 0.4rem;
  }

  .brand-frame-title {
    font-size: 0.82rem;
  }

  .brand-frame-creds {
    font-size: 0.46rem;
    letter-spacing: 0.04em;
  }

  .header-actions {
    gap: 0.25rem;
  }

  .header-search-btn {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 0.8rem;
  }

  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    font-size: 1.1rem !important;
  }

  .hero-controls {
    bottom: 1rem;
    right: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }

  .hero-arrow-btn {
    width: 34px;
    height: 34px;
  }

  .consultation-info {
    padding: 1.5rem 1rem !important;
  }

  .consultation-form-box {
    padding: 1.5rem 1rem !important;
  }

  .contact-gform-iframe {
    height: 600px !important;
    min-height: 480px !important;
  }

  .channel-action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .channel-action-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  :root {
    --header-height: 58px;
  }

  .container {
    padding-right: 0.65rem;
    padding-left: 0.65rem;
  }

  .main-header .container {
    padding: 0 0.4rem;
    gap: 0.25rem;
  }

  .brand-frame {
    padding: 0.12rem 0.25rem;
    gap: 0.35rem;
    max-width: calc(100% - 70px);
  }

  .brand-frame-badge {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .brand-frame-text {
    padding-left: 0.35rem;
  }

  .brand-frame-title {
    font-size: 0.74rem;
  }

  .brand-frame-creds {
    font-size: 0.42rem;
    letter-spacing: 0.02em;
  }

  .header-actions {
    gap: 0.2rem;
  }

  .header-search-btn {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 0.72rem;
  }

  .mobile-menu-toggle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    font-size: 0.95rem !important;
  }
}
