/* ==========================================================================
   Dinesh Tiwari | IP & Trademark Advocate — Luxury Glassmorphism Theme
   Full-page Legal Evidence Wallpaper, Translucent Cards & Metallic Gold Buttons
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Global Reset
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette — Luxury Metallic Gold & Atmospheric Dark */
  --gold-accent: #F0C465;
  --gold-mid: #D4AF37;
  --gold-dark: #B8863A;
  --gold-metallic: linear-gradient(135deg, #F5D075 0%, #D4AF37 50%, #A37424 100%);
  --gold-metallic-hover: linear-gradient(135deg, #FFE08A 0%, #E6C250 50%, #B8863A 100%);
  --gold-glow: 0 0 25px rgba(240, 196, 101, 0.4);
  --gold-glow-strong: 0 0 35px rgba(240, 196, 101, 0.6);

  --bg-dark-overlay: linear-gradient(180deg, rgba(14, 11, 8, 0.86) 0%, rgba(20, 16, 12, 0.78) 50%, rgba(10, 8, 6, 0.92) 100%);
  --glass-bg: rgba(22, 18, 14, 0.75);
  --glass-bg-hover: rgba(30, 24, 18, 0.88);
  --glass-bg-light: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(240, 196, 101, 0.25);
  --glass-border-hover: rgba(240, 196, 101, 0.55);

  --text-white: #FFFFFF;
  --text-muted: #D1C9BE;
  --text-dim: #9E9689;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Radius & Shadows */
  --radius-card: 28px;
  --radius-card-sm: 18px;
  --radius-pill: 9999px;
  --shadow-glass: 0 24px 60px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  --shadow-subtle: 0 12px 32px rgba(0, 0, 0, 0.3);

  /* Animations */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  background-color: #0E0B08;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Site-Wide Full-Page Legal Evidence Background Wallpaper */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--bg-dark-overlay),
              url('hero_legal_bg.jpg') center/cover no-repeat;
  z-index: -2;
  background-attachment: fixed;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --------------------------------------------------------------------------
   2. Typography & Badges
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-white);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 0.85rem;
  text-shadow: 0 0 12px rgba(240, 196, 101, 0.3);
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.body-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   3. Redesigned Metallic Gold & Glass Buttons
   -------------------------------------------------------------------------- */
/* Primary Metallic Gold CTA Button */
.btn-gold-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--gold-metallic);
  color: #120E0A;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 2.4rem;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: var(--gold-glow), 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-gold-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: rotate(30deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.btn-gold-glow:hover {
  background: var(--gold-metallic-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--gold-glow-strong), 0 8px 24px rgba(0, 0, 0, 0.5);
  color: #000000;
}

.btn-gold-glow:hover::after {
  opacity: 1;
  left: 100%;
}

/* Secondary Glass Pill Button */
.btn-glass-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--glass-bg-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border);
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
  white-space: nowrap;
}

.btn-glass-pill:hover {
  background: rgba(240, 196, 101, 0.15);
  border-color: var(--gold-accent);
  color: var(--gold-accent);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(240, 196, 101, 0.25);
}

/* Arrow Link with Gold Accent */
.link-arrow-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gold-accent);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.link-arrow-gold svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.link-arrow-gold:hover {
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(240, 196, 101, 0.5);
}

.link-arrow-gold:hover svg {
  transform: translateX(6px);
}

/* --------------------------------------------------------------------------
   4. Glassmorphic Card Container System
   -------------------------------------------------------------------------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-glass);
  padding: 44px 56px 52px;
  transition: all 0.3s var(--ease-smooth);
}

.glass-card:hover {
  border-color: var(--glass-border-hover);
}

.glass-card-sm {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card-sm);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s var(--ease-smooth);
}

.glass-card-sm:hover {
  background: var(--glass-bg-hover);
  border-color: var(--gold-accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(240, 196, 101, 0.15);
}

/* --------------------------------------------------------------------------
   5. Hero Section Layout
   -------------------------------------------------------------------------- */
.hero-outer-section {
  padding: 36px 24px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-glass-container {
  width: 100%;
  max-width: 1280px;
  position: relative;
  z-index: 2;
}

/* Header inside Card */
.card-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(240, 196, 101, 0.2);
  margin-bottom: 3.5rem;
}

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

.brand-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(240, 196, 101, 0.3));
}

.brand-logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-white);
}

.brand-logo-text span {
  color: var(--gold-accent);
}

.card-nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.card-nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
  position: relative;
}

.card-nav-links a:hover,
.card-nav-links a.active {
  color: var(--gold-accent);
  text-shadow: 0 0 10px rgba(240, 196, 101, 0.4);
}

.card-nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-accent);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--gold-accent);
}

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

.dropdown-popover {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 230px;
  background: rgba(18, 14, 10, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  box-shadow: var(--shadow-glass);
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s var(--ease-smooth);
  z-index: 100;
}

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

.dropdown-popover a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.dropdown-popover a:hover {
  background: rgba(240, 196, 101, 0.12);
  color: var(--gold-accent);
}

/* Hero Split 2-Column Grid */
.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-display-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  line-height: 1.08;
  color: var(--text-white);
  margin-bottom: 1.4rem;
}

.hero-display-h1 .h1-accent {
  color: var(--gold-accent);
  font-style: italic;
  text-shadow: 0 0 18px rgba(240, 196, 101, 0.35);
}

.hero-tagline-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.2rem;
}

.hero-ctas-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

/* Monochrome Client Logo Strip */
.client-logo-strip {
  width: 100%;
  padding-top: 2rem;
  border-top: 1px solid rgba(240, 196, 101, 0.15);
}

.strip-caption {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
  display: block;
}

.strip-logos-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.strip-brand-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.strip-brand-name:hover {
  color: var(--gold-accent);
}

.strip-dot {
  color: rgba(240, 196, 101, 0.3);
  font-size: 0.7rem;
}

/* Hero Right Column Visual */
.hero-right-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
}

.hero-portrait-photo {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.05);
}

/* Floating Icon Badges */
.floating-badges-bar {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.badge-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(14, 11, 8, 0.85);
  backdrop-filter: blur(12px);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--glass-border);
  transition: transform 0.25s ease;
}

.badge-icon-circle:hover {
  transform: translateY(-3px) scale(1.08);
  border-color: var(--gold-accent);
  box-shadow: var(--gold-glow);
}

.badge-icon-circle.gold-badge {
  background: var(--gold-metallic);
  color: #120E0A;
}

/* Stats Glass Panel Below Image */
.floating-stats-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: rgba(14, 11, 8, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  color: #FFFFFF;
  border-radius: 18px;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-label-top {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.stat-number-big {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-accent);
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(240, 196, 101, 0.3);
}

.stat-divider-vertical {
  width: 1px;
  height: 34px;
  background: rgba(240, 196, 101, 0.2);
}

/* --------------------------------------------------------------------------
   6. General Sticky Header (Sub-pages & Mobile)
   -------------------------------------------------------------------------- */
.site-sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(14, 11, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.85rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.subpage-hero-header {
  padding: 8.5rem 8% 4.5rem;
  text-align: center;
  position: relative;
}

.subpage-hero-header .section-title {
  margin-bottom: 0.8rem;
}

.subpage-hero-header p {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   7. Video / Educational Section
   -------------------------------------------------------------------------- */
.video-section {
  padding: 6.5rem 8%;
  position: relative;
  text-align: center;
}

.video-content-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.video-frame-container {
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-glass);
  border: 1px solid var(--glass-border);
  position: relative;
  background: rgba(14, 11, 8, 0.9);
}

.video-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(20, 16, 12, 0.9), rgba(35, 25, 15, 0.85));
  transition: filter 0.3s ease;
}

.video-cover-placeholder:hover {
  filter: brightness(1.15);
}

.play-button-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(240, 196, 101, 0.15);
  border: 2px solid var(--gold-accent);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
  box-shadow: var(--gold-glow);
  transition: all 0.3s ease;
}

.video-cover-placeholder:hover .play-button-ring {
  background: var(--gold-metallic);
  color: #120E0A;
  transform: scale(1.12);
  box-shadow: var(--gold-glow-strong);
}

.video-cover-caption {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   8. About & Client Cards Section
   -------------------------------------------------------------------------- */
.about-section {
  padding: 6.5rem 8%;
}

.about-grid-card {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-photo-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.about-photo-box {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
  aspect-ratio: 4/5;
}

.about-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.edu-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--glass-bg-light);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-white);
  margin-top: 1.5rem;
}

/* Client Brand Cards Grid */
.clients-section {
  padding: 6.5rem 8%;
}

.client-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.client-brand-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  padding: 1.15rem 1.4rem;
  border-radius: var(--radius-card-sm);
  transition: all 0.25s ease;
}

.client-brand-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-accent);
  box-shadow: var(--gold-glow);
  background: var(--glass-bg-hover);
}

.client-badge-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-metallic);
  color: #120E0A;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(240, 196, 101, 0.3);
}

.client-brand-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-white);
}

/* --------------------------------------------------------------------------
   9. Services Section & Interactive TM Calculator Widget
   -------------------------------------------------------------------------- */
.services-section {
  padding: 6.5rem 8%;
}

.services-grid-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.service-icon-em {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  display: block;
  filter: drop-shadow(0 0 10px rgba(240, 196, 101, 0.4));
}

.service-item-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.service-item-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Interactive TM Quick Guide Glass Widget */
.tm-widget-card {
  max-width: 1200px;
  margin: 0 auto 5rem;
  background: rgba(28, 22, 16, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gold-accent);
  border-radius: var(--radius-card);
  padding: 3rem;
  box-shadow: var(--shadow-glass), var(--gold-glow);
}

.widget-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.widget-option-btn {
  background: var(--glass-bg-light);
  border: 1px solid var(--glass-border);
  padding: 1rem 1.2rem;
  border-radius: 14px;
  color: var(--text-white);
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.88rem;
}

.widget-option-btn:hover,
.widget-option-btn.active {
  background: var(--gold-metallic);
  color: #120E0A;
  font-weight: 700;
  border-color: var(--gold-accent);
  box-shadow: var(--gold-glow);
}

/* TM Detailed Checklist */
.tm-split-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4.5rem;
  align-items: start;
}

.tm-check-card {
  display: flex;
  gap: 1.2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  padding: 1.35rem 1.6rem;
  border-radius: 14px;
  transition: all 0.25s ease;
}

.tm-check-card:hover {
  border-color: var(--gold-accent);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.tm-bullet-gold {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-accent);
  box-shadow: 0 0 8px var(--gold-accent);
  margin-top: 6px;
  flex-shrink: 0;
}

.tm-text-content strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.tm-text-content span {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   10. Reviews & Testimonials Section
   -------------------------------------------------------------------------- */
.reviews-section {
  padding: 6.5rem 8%;
}

.reviews-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stars-rating {
  color: var(--gold-accent);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(240, 196, 101, 0.5);
}

.quote-body-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.author-name-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-white);
}

.author-role-sub {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   11. Contact & Interactive Consultation Form
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 6.5rem 8%;
}

.contact-layout-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-item-row {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.contact-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--glass-bg-light);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--gold-accent);
}

.contact-text-meta strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.contact-text-meta a,
.contact-text-meta span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-text-meta a:hover {
  color: var(--gold-accent);
}

/* Form Fields */
.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.form-field-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

.form-input-control {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(10, 8, 6, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-size: 0.92rem;
  color: var(--text-white);
  outline: none;
  transition: all 0.2s ease;
}

.form-input-control:focus {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(240, 196, 101, 0.2), var(--gold-glow);
}

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

/* WhatsApp Banner CTA */
.whatsapp-banner-wrap {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 8%;
}

.whatsapp-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--whatsapp);
  color: #FFFFFF;
  padding: 1.1rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.whatsapp-card-cta:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55);
}

.whatsapp-card-cta svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.7);
}

.whatsapp-float-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   12. Footer Section
   -------------------------------------------------------------------------- */
.site-footer {
  padding: 4rem 8% 2.5rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(10, 8, 6, 0.95);
}

.footer-inner-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-white);
}

.footer-brand span {
  color: var(--gold-accent);
}

.footer-brand .role-sub {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-left: 0.5rem;
}

.footer-nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s ease;
}

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

.footer-copyright {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   13. Animations & Reduced Motion
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
   14. Responsive Breakpoints (All Devices)
/* --------------------------------------------------------------------------
   14. Mobile Navigation Drawer & Hamburger Toggle Button
   -------------------------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s var(--ease-smooth);
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  background: rgba(240, 196, 101, 0.15);
  border-color: var(--gold-accent);
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--gold-accent);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 6, 4, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-smooth), visibility 0.35s var(--ease-smooth);
}

.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 86vw;
  max-width: 380px;
  background: rgba(16, 12, 9, 0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-left: 1px solid var(--glass-border);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.8);
  z-index: 99995;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.8rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-smooth);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(240, 196, 101, 0.2);
}

.mobile-nav-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  color: var(--gold-accent);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.mobile-nav-close:hover {
  background: rgba(240, 196, 101, 0.2);
  transform: scale(1.05);
}

.mobile-nav-body {
  padding: 1.5rem 0;
  flex: 1;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav-links a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-white);
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--gold-accent);
  background: rgba(240, 196, 101, 0.12);
  padding-left: 1rem;
}

.mobile-dropdown-wrap {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-sub-arrow {
  background: none;
  border: none;
  color: var(--gold-accent);
  font-size: 1.2rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.mobile-sub-arrow.rotated {
  transform: rotate(180deg);
}

.mobile-sub-menu {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding-left: 1.2rem;
  margin-top: 0.4rem;
}

.mobile-sub-menu.expanded {
  display: flex;
}

.mobile-sub-menu a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.mobile-nav-foot {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(240, 196, 101, 0.2);
  display: flex;
  flex-direction: column;
}

/* --------------------------------------------------------------------------
   15. Responsive Breakpoints (All Devices)
   -------------------------------------------------------------------------- */
@media (min-width: 1281px) {
  .glass-card {
    padding: 48px 64px 56px;
  }
}

@media (max-width: 1024px) {
  .hero-outer-section {
    padding: 20px 16px;
  }

  .glass-card {
    padding: 32px 36px 40px;
  }

  .hero-split-grid {
    gap: 2.5rem;
  }

  .hero-display-h1 {
    font-size: 2.8rem;
  }

  .about-grid-card,
  .tm-split-grid,
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex !important;
  }

  .card-nav-links {
    display: none !important;
  }

  .site-sticky-nav {
    padding: 0.75rem 4%;
  }

  .subpage-hero-header {
    padding: 6rem 4% 3rem;
  }

  .hero-outer-section {
    padding: 12px;
  }

  .glass-card {
    padding: 24px 20px 32px;
    border-radius: 20px;
  }

  .card-nav-header {
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
  }

  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .hero-right-visual {
    order: -1;
  }

  .hero-image-wrapper {
    max-width: 100%;
  }

  .hero-portrait-photo {
    height: 340px;
  }

  .floating-stats-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1rem;
    justify-content: space-around;
    padding: 1rem 1.2rem;
  }

  .hero-display-h1 {
    font-size: 2.2rem;
  }

  .hero-ctas-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .nav-actions-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-actions-right .btn-glass-pill {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav-actions-right .btn-glass-pill span {
    display: none;
  }

  .btn-gold-glow {
    width: 100%;
    justify-content: center;
  }

  .hero-ctas-row .btn-glass-pill {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-pill);
  }

  .hero-ctas-row .btn-glass-pill span {
    display: inline;
  }

  .video-frame-container {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/10;
    min-height: 0;
  }

  .whatsapp-banner-wrap {
    padding: 0 3%;
  }

  .whatsapp-card-cta {
    padding: 0.85rem 1rem;
    font-size: clamp(0.75rem, 3.4vw, 0.92rem);
    white-space: nowrap;
    width: 100%;
    justify-content: center;
  }

  .whatsapp-card-cta svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .services-section,
  .about-section,
  .clients-section,
  .reviews-section,
  .contact-section,
  .video-section {
    padding: 4rem 5%;
  }

  .services-grid-layout,
  .reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
  }

  .client-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
  }

  .tm-widget-card {
    padding: 2rem 1.5rem;
    margin-bottom: 3.5rem;
  }

  .widget-options-grid {
    grid-template-columns: 1fr;
  }

  .form-grid-2col {
    grid-template-columns: 1fr;
  }

  .form-input-control,
  select.form-input-control,
  textarea.form-input-control {
    font-size: 16px !important; /* Prevents iOS auto-zoom on input focus */
  }

  .footer-inner-layout {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .video-frame-container {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/10;
    min-height: 0;
  }

  .whatsapp-card-cta {
    padding: 0.8rem 0.85rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .site-sticky-nav {
    padding: 0.65rem 3.5%;
  }

  .subpage-hero-header {
    padding: 5.5rem 4% 2.5rem;
  }

  .subpage-hero-header .section-title {
    font-size: 2rem;
  }

  .hero-display-h1 {
    font-size: 1.85rem;
  }

  .brand-logo-img {
    height: 34px;
  }

  .brand-logo-text {
    font-size: 1.1rem;
  }

  .glass-card-sm {
    padding: 1.6rem 1.2rem;
  }

  .whatsapp-float-btn {
    width: 52px;
    height: 52px;
    bottom: 1.2rem;
    right: 1.2rem;
  }

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

  .services-section,
  .about-section,
  .clients-section,
  .reviews-section,
  .contact-section,
  .video-section {
    padding: 3.2rem 4%;
  }
}

/* --------------------------------------------------------------------------
   Bar Council Legal Disclaimer Popup Modal
   -------------------------------------------------------------------------- */
.disclaimer-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(8, 6, 4, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 1;
  transition: opacity 0.4s var(--ease-smooth);
}

.disclaimer-overlay.disclaimer-hide {
  opacity: 0;
  pointer-events: none;
}

.disclaimer-glass-modal {
  width: 100%;
  max-width: 680px;
  background: rgba(22, 18, 14, 0.94);
  border: 1px solid var(--gold-accent);
  border-radius: var(--radius-card);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), var(--gold-glow);
  padding: 40px 48px;
  color: var(--text-white);
  text-align: center;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.disclaimer-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-accent);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 16px rgba(240, 196, 101, 0.35);
}

.disclaimer-body-scroll {
  overflow-y: auto;
  padding-right: 0.8rem;
  margin-bottom: 1.8rem;
  text-align: left;
  max-height: 380px;
}

.disclaimer-body-scroll p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.disclaimer-body-scroll p strong {
  color: var(--text-white);
}

.disclaimer-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(240, 196, 101, 0.2);
}

.btn-decline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: #E57373;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(229, 115, 115, 0.35);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-decline-pill:hover {
  background: rgba(229, 115, 115, 0.18);
  border-color: #E57373;
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(229, 115, 115, 0.3);
}

@media (max-width: 600px) {
  .disclaimer-glass-modal {
    padding: 28px 20px;
  }
  .disclaimer-title {
    font-size: 1.8rem;
  }
  .disclaimer-actions-row {
    flex-direction: column;
    width: 100%;
  }
  .disclaimer-actions-row button {
    width: 100%;
  }
}
