/* style.css — JTS Lex Law Firm Redesign ( Lucknow ) */

/* ----------------------------------------------------
   DESIGN SYSTEM VARIABLES
   ---------------------------------------------------- */
:root {
  /* Brand Palette */
  --navy: #1B2A4A;
  --gold: #B8860B;
  --gold-light: #F4C542;
  --blue: #2E5FA3;
  --white: #FFFFFF;
  --light-bg: #F4F7FC;
  --dark-bg: #111827;

  /* Text Colors */
  --text-dark: #1F2937;
  --text-muted: #6B7280;
  --text-white: #FFFFFF;
  --text-white-op: rgba(255, 255, 255, 0.8);

  /* Brand States & Specifics */
  --whatsapp: #25D366;
  --error: #DC2626;
  --success: #16A34A;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------------------
   BASE RESET & TYPOGRAPHY
   ---------------------------------------------------- */
*,
*::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-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

h1 {
  font-size: clamp(36px, 5vw, 60px);
}

h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

.text-navy {
  color: var(--navy);
}

.hidden {
  display: none !important;
}

/* ----------------------------------------------------
   NAVIGATION & UTILITY BAR
   ---------------------------------------------------- */
.top-utility-bar {
  background-color: var(--navy);
  color: var(--text-white);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
  /* hidden on mobile, shown on desktop */
}

.utility-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.utility-left,
.utility-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utility-item {
  color: var(--text-white-op);
  display: flex;
  align-items: center;
  gap: 6px;
}

.utility-item a {
  color: var(--text-white-op);
}

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

.utility-icon {
  width: 14px;
  height: 14px;
}

.text-bold {
  font-weight: 600;
  color: var(--gold-light);
}

/* Header & Sticky Nav Wrapper */
/* FIX-START: Issue 1 - Marquee z-index fix */
.header-navigation-wrapper {
  position: relative;
  background-color: var(--white);
  padding: 15px 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

/* FIX-END: Issue 1 */

/* Sticky Class */
.header-navigation-wrapper.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: block;
}

.brand-logo {
  height: 70px;
  object-fit: contain;
}

/* Nav Menu container */
.main-navigation-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.main-navigation-menu.active {
  max-height: 500px;
  overflow-y: auto;
}

.nav-links-list {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 15px;
}

.nav-link-item {
  font-weight: 500;
  color: var(--navy);
  font-size: 15px;
  padding: 8px 0;
  display: block;
}

.nav-link-item.active {
  border-bottom: 2px solid var(--gold);
}

.nav-link-item-dropdown {
  position: relative;
}

.dropdown-trigger-item {
  font-weight: 500;
  color: var(--navy);
  font-size: 15px;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.dropdown-submenu-list {
  display: none;
  background-color: var(--light-bg);
  padding: 10px 15px;
  border-left: 3px solid var(--gold);
  margin-top: 5px;
}

.dropdown-submenu-list.active {
  display: block;
}

.dropdown-submenu-list li a {
  display: block;
  padding: 6px 0;
  color: var(--text-dark);
  font-size: 14px;
}

.dropdown-submenu-list li a:hover {
  color: var(--gold);
}

/* Hamburger button */
.mobile-hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.hamburger-bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--navy);
  transition: var(--transition-smooth);
}

.mobile-hamburger-btn.active .hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-hamburger-btn.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-hamburger-btn.active .hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-cta-wrapper {
  display: none;
  /* hidden on mobile navigation */
}

/* ----------------------------------------------------
   HERO SECTION
   ---------------------------------------------------- */
.hero-showcase-section {
  background-color: var(--navy);
  color: var(--text-white);
  padding: 60px 0 80px 0;
  position: relative;
  overflow: hidden;
}

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

.hero-content-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-main-title {
  color: var(--text-white);
  font-family: var(--font-heading);
  line-height: 1.2;
}

.highlight-text-gold {
  color: var(--gold-light);
  font-weight: 700;
}

.hero-lead-text {
  font-size: 18px;
  color: var(--text-white-op);
}

.hero-actions-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

/* Button styles */
.btn-primary-action,
.btn-secondary-action {
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  transition: var(--transition-smooth);
  display: inline-block;
  cursor: pointer;
}

.btn-primary-action {
  background-color: var(--gold);
  color: var(--navy);
}

.btn-primary-action:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
  color: var(--navy);
}

.btn-secondary-action {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary-action:hover {
  background-color: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Trust Strip below CTA */
.hero-trust-flex-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.trust-stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-light);
  font-family: var(--font-heading);
  line-height: 1;
}

.trust-stat-desc {
  font-size: 13px;
  color: var(--text-white-op);
}

/* Social proof bar in hero */
.hero-social-proof-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.social-proof-title {
  font-size: 14px;
  color: var(--text-white-op);
}

.social-proof-icons-row {
  display: flex;
  gap: 12px;
}

.social-proof-link {
  color: var(--text-white-op);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-proof-link:hover {
  color: var(--gold-light);
  transform: scale(1.1);
}

.social-proof-icon {
  width: 20px;
  height: 20px;
}

.hero-graphic-block {
  display: none;
  /* hidden on mobile screens */
}

/* ----------------------------------------------------
   TRUST BADGES & TESTIMONIALS
   ---------------------------------------------------- */
.trust-proof-badges-section {
  padding: 60px 0;
  background-color: var(--light-bg);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 45px;
}

.trust-badge-card {
  background-color: var(--white);
  padding: 25px;
  border-radius: var(--border-radius-md);
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border-top: 4px solid var(--gold);
}

.badge-icon-wrapper {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  color: var(--gold);
}

.badge-gold-icon {
  width: 35px;
  height: 35px;
}

.stars-color {
  color: #FFA500;
  font-size: 20px;
}

.trust-badge-label {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 5px;
}

.trust-badge-detail {
  font-size: 14px;
  color: var(--text-muted);
}

.inline-link-accent {
  color: var(--blue);
  font-weight: 500;
  text-decoration: underline;
}

/* Press Row */
.press-logos-section {
  text-align: center;
  margin-bottom: 50px;
}

.press-section-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.press-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 40px;
}

.press-logo-card {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.7;
  padding: 10px;
  border: 1px dashed var(--text-muted);
  border-radius: var(--border-radius-sm);
  min-width: 120px;
  text-align: center;
}

/* Animated Counters Block */
.counters-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
  background-color: var(--navy);
  padding: 40px 20px;
  border-radius: var(--border-radius-lg);
  color: var(--white);
  text-align: center;
}

.stat-counter-box {
  display: flex;
  flex-direction: column;
}

.counter-number {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--gold-light);
  line-height: 1.2;
}

.counter-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Testimonial Cards Layout */
.video-testimonials-wrapper {
  margin-top: 40px;
}

.testimonial-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 25px;
}

.client-testimonial-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-left: 4px solid var(--gold);
}

.client-profile-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-photo-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--light-bg);
}

.client-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-bio-text {
  display: flex;
  flex-direction: column;
}

.client-name-bold {
  font-size: 16px;
  color: var(--navy);
  font-weight: 600;
  font-family: var(--font-body);
}

.client-case-badge {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

.client-quote-text {
  font-size: 14.5px;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.6;
}

/* ----------------------------------------------------
   PRACTICE AREAS GRID
   ---------------------------------------------------- */
.practice-areas-showcase {
  padding: 80px 0;
}

.section-title-wrapper {
  margin-bottom: 50px;
}

.section-heading-h2 {
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 15px;
}

.heading-gold-divider {
  width: 60px;
  height: 3px;
  background-color: var(--gold);
  margin: 0 auto 20px auto;
}

.section-lead-paragraph {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 15.5px;
}

.practice-grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.practice-card-box {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.practice-card-accent-border {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: var(--gold);
  transition: var(--transition-smooth);
}

.practice-card-box:hover .practice-card-accent-border {
  width: 4px;
}

.practice-card-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.practice-card-svg {
  width: 35px;
  height: 35px;
  color: var(--navy);
  margin-bottom: 20px;
}

.practice-card-box:hover .practice-card-svg {
  color: var(--gold);
}

.practice-card-title {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.practice-card-excerpt {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.practice-card-action-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

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

/* ----------------------------------------------------
   LEAD CAPTURE SYSTEM B: CONSULTATION FORM
   ---------------------------------------------------- */
.consultation-form-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.consultation-form-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  background-color: var(--white);
  padding: 30px 20px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.consultation-title-h2 {
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 15px;
}

.consultation-lead-text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.promise-box {
  background-color: #EBF5FF;
  border-left: 4px solid var(--blue);
  padding: 15px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 30px;
}

.promise-icon {
  font-size: 20px;
}

.promise-text {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.5;
}

.contact-details-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.detail-line {
  font-size: 14px;
  color: var(--text-dark);
}

/* Form Styles */
.lead-consultation-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

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

.form-label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 14.5px;
  font-family: var(--font-body);
  border: 1px solid #D1D5DB;
  border-radius: var(--border-radius-sm);
  background-color: var(--white);
  transition: var(--transition-smooth);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 95, 163, 0.15);
}

/* Error States */
.form-input.field-error,
.form-select.field-error,
.form-textarea.field-error {
  border-color: var(--error);
}

.error-msg-element {
  font-size: 12px;
  color: var(--error);
  margin-top: 2px;
  display: block;
}

.btn-submit-consultation {
  background-color: var(--navy);
  color: var(--white);
  padding: 14px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  margin-top: 10px;
}

.btn-submit-consultation:hover {
  background-color: var(--blue);
  transform: translateY(-2px);
}

/* Success Messages */
.success-message-container {
  padding: 40px;
  background-color: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--border-radius-lg);
  text-align: center;
  color: var(--success);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.success-check-icon {
  width: 45px;
  height: 45px;
  color: var(--success);
}

.success-message-container h3,
.success-message-container h4 {
  color: var(--navy);
  font-family: var(--font-body);
}

.success-message-container p {
  color: var(--text-dark);
  font-size: 15px;
}

/* ----------------------------------------------------
   LEAD CAPTURE SYSTEM C: LEAD MAGNETS
   ---------------------------------------------------- */
.lead-magnets-section {
  padding: 80px 0;
}

.guides-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.guide-card {
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.guide-card-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-card-title {
  font-size: 18px;
  color: var(--navy);
  font-family: var(--font-body);
}

.guide-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.guide-download-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-form-input {
  width: 100%;
  padding: 9px 12px;
  font-size: 13.5px;
  font-family: var(--font-body);
  border: 1px solid #D1D5DB;
  border-radius: var(--border-radius-sm);
}

.btn-download-guide {
  width: 100%;
  padding: 10px;
  background-color: var(--navy);
  color: var(--white);
  font-weight: 500;
  font-size: 13.5px;
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-download-guide:hover {
  background-color: var(--gold);
  color: var(--navy);
}

.guide-success-state {
  font-size: 13.5px;
  color: var(--success);
  font-weight: 500;
  text-align: center;
  padding: 8px;
  background-color: #F0FDF4;
  border-radius: var(--border-radius-sm);
}

/* ----------------------------------------------------
   BLOG SYSTEM SECTION
   ---------------------------------------------------- */
.blog-showcase-section {
  padding: 80px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 18px;
  background-color: var(--light-bg);
  border: none;
  border-radius: 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--navy);
  color: var(--white);
}

.blog-cards-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.blog-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.blog-card-img-wrapper {
  position: relative;
  height: 200px;
  background-color: #EEE;
}

.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.blog-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-card-meta {
  display: flex;
  gap: 15px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.blog-card-title-text {
  font-size: 18px;
  font-family: var(--font-body);
}

.blog-card-title-text a {
  color: var(--navy);
}

.blog-card-title-text a:hover {
  color: var(--gold);
}

.blog-card-excerpt-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.blog-card-read-more {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
}

/* Related blog layout cta blocks */
.blog-cta-block {
  padding: 30px;
  background-color: var(--light-bg);
  border-left: 4px solid var(--gold);
  border-radius: var(--border-radius-md);
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ----------------------------------------------------
   TEAM SECTION
   ---------------------------------------------------- */
.team-showcase-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.team-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.team-member-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  border-top: 4px solid var(--gold);
}

.team-card-inner {
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.team-img-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--light-bg);
}

.team-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.team-member-name {
  font-size: 18px;
  color: var(--navy);
  font-family: var(--font-body);
}

.team-member-designation {
  font-size: 13.5px;
  color: var(--text-muted);
}

.team-stats-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12.5px;
  color: var(--text-dark);
  background-color: var(--light-bg);
  padding: 12px;
  width: 100%;
  border-radius: var(--border-radius-sm);
  text-align: left;
}

.team-stat-bullet {
  display: block;
}

.team-actions-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 5px;
}

.team-action-icon-link {
  width: 38px;
  height: 38px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.team-action-svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.wa-icon {
  background-color: var(--whatsapp);
}

.wa-icon:hover {
  background-color: #128c7e;
}

.email-icon {
  background-color: var(--blue);
}

.email-icon:hover {
  background-color: var(--navy);
}

.team-view-profile-btn {
  flex-grow: 1;
  background-color: var(--navy);
  color: var(--white);
  padding: 9px;
  border-radius: var(--border-radius-sm);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  transition: var(--transition-smooth);
}

.team-view-profile-btn:hover {
  background-color: var(--gold);
  color: var(--navy);
}

/* ----------------------------------------------------
   SOCIAL MEDIA FOLLOW US / INSTAGRAM
   ---------------------------------------------------- */
.social-integration-section {
  padding: 80px 0;
}

.social-follow-platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.social-platform-card {
  background-color: var(--light-bg);
  padding: 25px;
  border-radius: var(--border-radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.platform-icon-box {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.platform-card-svg-icon {
  width: 20px;
  height: 20px;
}

.linkedin-color {
  background-color: #0077b5;
}

.facebook-color {
  background-color: #1877f2;
}

.instagram-color {
  background-color: #e1306c;
}

.x-color {
  background-color: #000000;
}

.social-platform-name {
  font-size: 16px;
  color: var(--navy);
  font-family: var(--font-body);
}

.social-platform-handle {
  font-size: 13px;
  color: var(--text-muted);
}

.social-followers-placeholder {
  font-size: 12px;
  color: var(--text-dark);
  font-weight: 600;
}

.btn-follow-platform {
  padding: 6px 20px;
  background-color: var(--navy);
  color: var(--white);
  border-radius: var(--border-radius-sm);
  font-size: 13px;
  font-weight: 500;
}

.btn-follow-platform:hover {
  background-color: var(--gold);
  color: var(--navy);
}

/* Instagram Image Grid Placements */
.instagram-feed-placeholder-wrapper {
  margin-top: 35px;
  text-align: center;
}

.instagram-feed-title {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 600;
}

.instagram-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.instagram-img-slot {
  aspect-ratio: 1;
  background-color: #E5E7EB;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px dashed #9CA3AF;
  text-align: center;
}

.insta-slot-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.btn-follow-instagram-cta {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--navy);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  font-size: 14px;
}

.btn-follow-instagram-cta:hover {
  background-color: var(--gold);
  color: var(--navy);
}

/* ----------------------------------------------------
   STANDALONE NEWSLETTER SIGNUP
   ---------------------------------------------------- */
.newsletter-signup-section {
  background-color: var(--navy);
  padding: 80px 0;
  position: relative;
}

.newsletter-content-wrapper {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-white {
  color: var(--white);
}

.text-white-opacity {
  color: rgba(255, 255, 255, 0.85);
}

.newsletter-subtext {
  font-size: 15px;
}

.newsletter-signup-form {
  margin-top: 10px;
}

.newsletter-form-inline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-email-input {
  flex-grow: 1;
  padding: 12px 16px;
  font-size: 14px;
  border: none;
  border-radius: var(--border-radius-sm);
}

.btn-newsletter-subscribe {
  padding: 12px 28px;
  background-color: var(--gold);
  color: var(--navy);
  border: none;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-newsletter-subscribe:hover {
  background-color: var(--gold-light);
}

.newsletter-error-msg {
  font-size: 12px;
  color: #FFA500;
  margin-top: 5px;
  display: block;
}

.newsletter-success-box {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-sm);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ----------------------------------------------------
   FOOTER SECTION
   ---------------------------------------------------- */
.main-chamber-footer {
  background-color: var(--dark-bg);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0 0;
  border-top: 4px solid var(--gold);
}

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

.footer-info-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-widget-title {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--gold);
}

.footer-text-summary {
  font-size: 14.5px;
  line-height: 1.6;
}

.footer-social-row {
  display: flex;
  gap: 15px;
}

.footer-social-link {
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  color: var(--gold-light);
}

.footer-social-svg {
  width: 22px;
  height: 22px;
}

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

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

.footer-links-list li a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
}

.footer-links-list li a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.footer-contact-text {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-contact-item {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-inline-link {
  color: var(--white);
}

.footer-inline-link:hover {
  color: var(--gold-light);
}

.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

/* Copyright Row */
.footer-copyright-bar {
  background-color: #0B0F19;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-flex-row {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  align-items: center;
}

.copyright-text-line {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.visitor-counter-footer {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

.counter-number-inline {
  color: var(--gold-light);
  font-weight: 600;
}

/* ----------------------------------------------------
   FLOATING WHATSAPP BUTTON
   ---------------------------------------------------- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  cursor: pointer;
  animation: waPulse 2s infinite;
}

.whatsapp-icon-svg {
  width: 32px;
  height: 32px;
}

/* Tooltip on hover */
.whatsapp-tooltip-text {
  visibility: hidden;
  width: 180px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 1000;
  bottom: 125%;
  /* Position above button */
  right: 0;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12.5px;
  font-family: var(--font-body);
  pointer-events: none;
}

.floating-whatsapp-btn:hover .whatsapp-tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* WhatsApp Pulse Animation keyframe */
@keyframes waPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ----------------------------------------------------
   EXIT INTENT POPUP MODAL
   ---------------------------------------------------- */
.exit-intent-overlay-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}

.exit-intent-modal-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  width: 100%;
  max-width: 500px;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border-top: 6px solid var(--gold);
  animation: modalSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideIn {
  from {
    transform: scale(0.9) translateY(20px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.exit-intent-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
}

.exit-intent-close-btn:hover {
  color: var(--navy);
}

.exit-intent-content-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.exit-headline-text {
  font-size: 26px;
  color: var(--navy);
  font-weight: 700;
}

.exit-sub-text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.exit-popup-lead-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-submit-exit-intent {
  background-color: var(--gold);
  color: var(--navy);
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: var(--border-radius-sm);
  font-size: 14.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-submit-exit-intent:hover {
  background-color: var(--gold-light);
}

/* ----------------------------------------------------
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ---------------------------------------------------- */

/* Tablet View: Min-width 768px */
@media (min-width: 768px) {
  .top-utility-bar {
    display: block;
    /* Show utility bar */
  }

  .main-navigation-menu {
    position: static;
    max-height: none;
    overflow: visible;
    border: none;
    box-shadow: none;
    width: auto;
  }

  .nav-links-list {
    flex-direction: row;
    padding: 0;
    gap: 25px;
  }

  .nav-link-item {
    padding: 0;
  }

  .dropdown-trigger-item {
    padding: 0;
    gap: 4px;
  }

  /* FIX-START: Issue 2 - Dropdown hover gap fix */
  /* FIX-START: Issue 1 - Marquee z-index fix */
  .dropdown-submenu-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--gold);
    border-left: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: none;
    padding-top: 10px;
    z-index: 1001;
  }

  /* FIX-END: Issue 1 */

  .nav-link-item-dropdown:hover .dropdown-submenu-list {
    display: block;
  }

  .nav-link-item-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 35px;
    background: transparent;
  }

  /* FIX-END: Issue 2 */

  .mobile-hamburger-btn {
    display: none;
    /* Hide toggle on larger screens */
  }

  .nav-cta-wrapper {
    display: block;
    /* Show CTA right */
  }

  .nav-cta-btn {
    background-color: var(--gold);
    color: var(--navy);
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--border-radius-sm);
  }

  .nav-cta-btn:hover {
    background-color: var(--gold-light);
    color: var(--navy);
  }

  /* Hero */
  .hero-showcase-section {
    padding: 100px 0 120px 0;
  }

  .hero-grid-wrapper {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
  }

  .hero-graphic-block {
    display: block;
    /* Show decorative SVG graphic */
  }

  .hero-decorative-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.25));
  }

  /* Badges */
  .trust-badges-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Counters */
  .counters-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Testimonials */
  .testimonial-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Practice Grid */
  .practice-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Consultation */
  .consultation-form-wrapper {
    grid-template-columns: 0.9fr 1.1fr;
    padding: 50px;
  }

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

  /* Guides */
  .guides-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Blog Grid */
  .blog-cards-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Team Grid */
  .team-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Social */
  .instagram-images-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Newsletter */
  .newsletter-form-inline {
    flex-direction: row;
    gap: 10px;
  }

  /* Footer */
  .footer-grid-layout {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
  }

  .copyright-flex-row {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Desktop View: Min-width 1024px */
@media (min-width: 1024px) {
  .practice-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .guides-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .team-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* FIX-START: Issue 3 - Twitter removed */
  .social-follow-platforms-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* FIX-END: Issue 3 */

  .instagram-images-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}


/* ----------------------------------------------------
   BACKWARDS COMPATIBILITY FOR INNER PAGES (BOOTSTRAP/COLORLIB LAYOUTS)
   ---------------------------------------------------- */
body,
p,
ul,
li,
a {
  font-family: var(--font-body);
}

.colorlib-nav {
  background-color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.colorlib-nav a {
  color: var(--navy);
  font-weight: 500;
  transition: var(--transition-smooth);
}

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

.colorlib-nav ul li.active a {
  color: var(--gold) !important;
  border-bottom: 2px solid var(--gold);
}

/* Hide legacy offcanvas wrapper completely on all views */
#colorlib-offcanvas {
  display: none !important;
}

/* Fix desktop layout for inner page navigation */
.colorlib-nav ul {
  padding: 0;
  margin: 5px 0 0 0;
}

.colorlib-nav ul li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-block;
  text-transform: uppercase;
}

.colorlib-nav ul li a {
  font-size: 14px;
  padding: 15px 14px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 1px;
}

.colorlib-nav ul li.has-dropdown {
  position: relative;
}

/* Hidden by default, absolute positioned on hover */
.colorlib-nav ul li.has-dropdown .dropdown {
  width: 240px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  text-align: left;
  background: var(--white) !important;
  border-top: 3px solid var(--gold) !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
  padding: 10px 0;
  border-radius: var(--border-radius-sm);
  z-index: 1002;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

.colorlib-nav ul li.has-dropdown .dropdown li {
  display: block;
  margin-bottom: 0;
  width: 100%;
}

.colorlib-nav ul li.has-dropdown .dropdown li a {
  padding: 10px 20px !important;
  display: block;
  color: var(--text-dark) !important;
  text-transform: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: none !important;
}

.colorlib-nav ul li.has-dropdown .dropdown li a:hover {
  background-color: var(--light-bg) !important;
  color: var(--gold) !important;
}

.colorlib-nav ul li.has-dropdown:hover>.dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* Secondary Court status view bar */
.top-secondary-menu {
  background-color: var(--navy) !important;
  padding: 8px 0 !important;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-secondary-menu a {
  color: var(--text-white-op) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 15px;
  text-transform: uppercase;
  display: inline-block;
}

.top-secondary-menu a:hover {
  color: var(--gold-light) !important;
}

/* Word of the Day banner */
.word-day-bar {
  background-color: #0b1a30;
  padding: 8px 0;
  font-size: 13px;
  overflow: hidden;
  white-space: nowrap;
}

/* Footer Compatibility */
#colorlib-footer {
  background-color: var(--dark-bg) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 60px 0 30px 0 !important;
  border-top: 4px solid var(--gold);
}

#colorlib-footer h4 {
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 25px;
  position: relative;
}

#colorlib-footer h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--gold);
}

#colorlib-footer a {
  color: rgba(255, 255, 255, 0.7) !important;
}

#colorlib-footer a:hover {
  color: var(--gold-light) !important;
  padding-left: 5px;
}

/* Practice Area templates styling */
.cyber-page,
.rera-page,
.banking-page {
  font-family: var(--font-body);
}

.jts-founder-title {
  color: var(--navy) !important;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

.jts-founder-box {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  border-left: 5px solid var(--gold);
}

/* Custom Table styling for laws */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
}

th {
  background-color: var(--navy) !important;
  color: var(--white) !important;
  font-weight: 600;
  padding: 12px 15px !important;
  text-align: left;
  border: 1px solid #D1D5DB !important;
}

td {
  padding: 12px 15px !important;
  border: 1px solid #D1D5DB !important;
  font-size: 14.5px;
}

tr:nth-child(even) {
  background-color: var(--light-bg);
}

/* FIX-START: Issue 4 - Mobile menu overlay */

/* --- STEP 1: Fixed Slide-In Side Panel --- */
/* FIX-START: Issue 2 - Mobile panel CSS lock */
/* Panel is always hidden unless .open class is present */
#jtsMobilePanel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(85vw, 360px);
  background: #FFFFFF;
  z-index: 9999;
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
  box-shadow: -4px 0 32px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  padding: 0 0 40px 0;
}

#jtsMobilePanel.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: all;
}

/* FIX-END: Issue 2 */

/* --- STEP 2: Backdrop Overlay --- */
.jts-mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
  z-index: 9998;
  cursor: pointer;
}

.jts-mobile-backdrop.visible {
  display: block;
}

/* --- STEP 4: Panel Header --- */
.jts-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 0.5px solid #E5E7EB;
  position: sticky;
  top: 0;
  background: #FFFFFF;
  z-index: 1;
}

.jts-panel-logo {
  height: 40px;
  width: auto;
}

.jts-panel-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #1B2A4A;
  padding: 8px;
  line-height: 1;
  border-radius: 4px;
}

.jts-panel-close:hover {
  background: #F3F4F6;
}

/* --- STEP 5: Accordion Submenus --- */
.jts-acc-group {
  border-bottom: 0.5px solid #E5E7EB;
}

.jts-acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 500;
  color: #1B2A4A;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
}

.jts-acc-trigger:hover {
  background: #F4F7FC;
}

.jts-acc-chevron {
  font-size: 18px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.jts-acc-trigger[aria-expanded="true"] .jts-acc-chevron {
  transform: rotate(180deg);
}

.jts-acc-content {
  list-style: none;
  margin: 0;
  padding: 0 0 8px 0;
}

.jts-acc-content li a {
  display: block;
  padding: 10px 20px 10px 36px;
  font-size: 14px;
  color: #374151;
  text-decoration: none;
}

.jts-acc-content li a:hover {
  background: #F4F7FC;
  color: #1B2A4A;
}

.jts-panel-direct-link {
  display: block;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #1B2A4A;
  text-decoration: none;
}

.jts-panel-direct-link:hover {
  background: #F4F7FC;
}

/* --- Inner page (colorlib) hamburger visibility on mobile --- */
.colorlib-nav-toggle {
  display: block;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  padding: 8px;
}

.colorlib-nav-toggle i {
  display: block;
  width: 25px;
  height: 3px;
  background: #1B2A4A;
  position: relative;
}

.colorlib-nav-toggle i::before,
.colorlib-nav-toggle i::after {
  content: '';
  display: block;
  width: 25px;
  height: 3px;
  background: #1B2A4A;
  position: absolute;
  left: 0;
}

.colorlib-nav-toggle i::before {
  top: -8px;
}

.colorlib-nav-toggle i::after {
  top: 8px;
}

/* Make the logo + hamburger row position relative for inner pages */
.colorlib-nav .col-md-3 {
  position: relative;
}

/* Hide the old desktop menu on mobile for inner pages */
@media (max-width: 767px) {
  .colorlib-nav .menu-1 {
    display: none !important;
  }
}

/* On desktop, keep the old menu visible but hide the hamburger */
@media (min-width: 768px) {
  .colorlib-nav-toggle {
    display: none;
  }
}

/* FIX-END: Issue 4 */

/* Old marquee CSS removed — replaced by Issue 5 WOTD block section */

/* FIX-START: Issue 3 - Restored hero sections A B C */

/* Socrates Quote Section */
.jts-restored-quote {
  box-sizing: border-box;
  margin: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #8FA3B8;
  padding: 60px 5%;
}

.jts-restored-quote .jts-rq-bg-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.jts-restored-quote .jts-rq-inner {
  display: flex;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}

.jts-restored-quote .jts-rq-col-left {
  flex: 0 0 35%;
  max-width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jts-restored-quote .jts-rq-scale-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.jts-restored-quote .jts-rq-scale-svg {
  max-width: 200px;
  height: auto;
}

.jts-restored-quote .jts-rq-col-right {
  flex: 0 0 65%;
  max-width: 65%;
}

.jts-restored-quote .jts-rq-blockquote {
  margin: 0 0 12px 0;
  padding: 0;
  border: none;
  background: none;
}

.jts-restored-quote .jts-rq-text {
  font-family: var(--font-heading), Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
  color: #1B2A4A;
  font-weight: bold;
  line-height: 1.3;
  margin: 0;
}

.jts-restored-quote .jts-rq-author {
  display: block;
  font-style: italic;
  font-size: 16px;
  color: #2E5FA3;
  margin-top: 12px;
}

.jts-restored-quote .jts-rq-desc {
  font-family: var(--font-body), 'Inter', sans-serif;
  font-size: 15px;
  color: #4B5563;
  line-height: 1.7;
  margin: 20px 0 0 0;
  max-width: 560px;
}

/* Mission Section */
.jts-restored-mission {
  box-sizing: border-box;
  margin: 0;
  width: 100%;
  overflow: hidden;
  background-color: #1B2A4A;
  padding: 80px 5%;
}

.jts-restored-mission .jts-rm-inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 40px;
}

.jts-restored-mission .jts-rm-col-left {
  flex: 0 0 40%;
  max-width: 40%;
}

.jts-restored-mission .jts-rm-heading-line {
  display: block;
  font-family: var(--font-heading), Georgia, serif;
  color: #FFFFFF;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
}

.jts-restored-mission .jts-rm-col-right {
  flex: 0 0 60%;
  max-width: 60%;
}

.jts-restored-mission .jts-rm-paragraph {
  font-family: var(--font-body), 'Inter', sans-serif;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 20px 0;
}

.jts-restored-mission .jts-rm-paragraph:last-child {
  margin-bottom: 0;
}

/* Dedication Section */
.jts-restored-dedication {
  box-sizing: border-box;
  margin: 0;
  width: 100%;
  overflow: hidden;
  background-color: #F4F7FC;
  padding: 80px 5%;
}

.jts-restored-dedication .jts-rd-header {
  text-align: center;
}

.jts-restored-dedication .jts-rd-title {
  font-family: var(--font-heading), Georgia, serif;
  color: #1B2A4A;
  font-size: 42px;
  font-weight: 700;
  margin: 0;
}

.jts-restored-dedication .jts-rd-divider {
  width: 60px;
  height: 3px;
  background: #B8860B;
  margin: 14px auto 48px;
}

.jts-restored-dedication .jts-rd-inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 40px;
}

.jts-restored-dedication .jts-rd-col-left {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  justify-content: center;
}

.jts-restored-dedication .jts-dedication-photo {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 4px;
  display: block;
}

.jts-restored-dedication .jts-rd-col-right {
  flex: 0 0 50%;
  max-width: 50%;
}

.jts-restored-dedication .jts-rd-subheading {
  font-family: var(--font-heading), Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #1B2A4A;
  margin: 0 0 16px 0;
}

.jts-restored-dedication .jts-rd-paragraph {
  font-family: var(--font-body), 'Inter', sans-serif;
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  margin: 0 0 18px 0;
}

.jts-restored-dedication .jts-rd-paragraph:last-child {
  margin-bottom: 0;
}

.jts-restored-dedication .jts-rd-bold-label {
  font-weight: 600;
  color: #1B2A4A;
  display: inline;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .jts-restored-quote {
    padding: 40px 5%;
  }

  .jts-restored-quote .jts-rq-inner {
    flex-direction: column;
    gap: 30px;
  }

  .jts-restored-quote .jts-rq-col-left,
  .jts-restored-quote .jts-rq-col-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .jts-restored-mission {
    padding: 60px 5%;
  }

  .jts-restored-mission .jts-rm-inner {
    flex-direction: column;
    gap: 32px;
  }

  .jts-restored-mission .jts-rm-col-left,
  .jts-restored-mission .jts-rm-col-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .jts-restored-dedication {
    padding: 60px 5%;
  }

  .jts-restored-dedication .jts-rd-inner {
    flex-direction: column;
    gap: 30px;
  }

  .jts-restored-dedication .jts-rd-col-left,
  .jts-restored-dedication .jts-rd-col-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* FIX-END: Issue 3 */

/* FIX-START: Issue 1 - WhatsApp button professional */
.jts-wa-wrapper {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.jts-wa-btn {
  width: 58px;
  height: 58px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jts-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.jts-wa-tooltip {
  background: #223068;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}

.jts-wa-wrapper:hover .jts-wa-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* FIX-END: Issue 1 */

/* FIX-START: Issue 3 - WOTD text color white forced */
.jts-wotd-section,
.jts-wotd-inner,
.jts-wotd-content,
body .jts-wotd-section,
body .jts-wotd-inner,
body .jts-wotd-content {
  background: linear-gradient(135deg, #223068 0%, #1e2fb0 100%) !important;
  color: #FFFFFF !important;
}

.jts-wotd-section {
  padding: 18px 5%;
  width: 100%;
  position: relative;
  z-index: 500;
  border-bottom: 3px solid #347aea;
}

.jts-wotd-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.jts-wotd-label {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #347aea !important;
  color: #FFFFFF !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.jts-wotd-label span,
.jts-wotd-label i,
.jts-wotd-label * {
  color: #FFFFFF !important;
}

.jts-wotd-label .ti {
  font-size: 16px;
}

.jts-wotd-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.jts-wotd-term {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF !important;
  font-style: italic;
}

.jts-wotd-sep {
  color: #347aea !important;
  font-size: 18px;
  margin: 0 6px;
}

.jts-wotd-def {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88) !important;
  flex: 1;
  line-height: 1.5;
}

.jts-wotd-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55) !important;
  margin-left: auto;
  white-space: nowrap;
}

/* Extra-specific selectors to beat inner page global styles */
body .jts-wotd-section span.jts-wotd-term,
body.taxation-page .jts-wotd-section span.jts-wotd-term,
body.banking-page .jts-wotd-section span.jts-wotd-term,
body.cyber-page .jts-wotd-section span.jts-wotd-term,
body.online-gaming-page .jts-wotd-section span.jts-wotd-term,
body.artificial-page .jts-wotd-section span.jts-wotd-term,
body.ip-it-law-page .jts-wotd-section span.jts-wotd-term,
body.medical-page .jts-wotd-section span.jts-wotd-term,
body.corporate-employment-disputes-page .jts-wotd-section span.jts-wotd-term {
  color: #FFFFFF !important;
}

body .jts-wotd-section span.jts-wotd-def,
body.taxation-page .jts-wotd-section span.jts-wotd-def,
body.banking-page .jts-wotd-section span.jts-wotd-def,
body.cyber-page .jts-wotd-section span.jts-wotd-def,
body.online-gaming-page .jts-wotd-section span.jts-wotd-def,
body.artificial-page .jts-wotd-section span.jts-wotd-def,
body.ip-it-law-page .jts-wotd-section span.jts-wotd-def,
body.medical-page .jts-wotd-section span.jts-wotd-def,
body.corporate-employment-disputes-page .jts-wotd-section span.jts-wotd-def {
  color: rgba(255, 255, 255, 0.88) !important;
}

body .jts-wotd-section span.jts-wotd-date,
body.taxation-page .jts-wotd-section span.jts-wotd-date,
body.banking-page .jts-wotd-section span.jts-wotd-date,
body.cyber-page .jts-wotd-section span.jts-wotd-date,
body.online-gaming-page .jts-wotd-section span.jts-wotd-date,
body.artificial-page .jts-wotd-section span.jts-wotd-date,
body.ip-it-law-page .jts-wotd-section span.jts-wotd-date,
body.medical-page .jts-wotd-section span.jts-wotd-date,
body.corporate-employment-disputes-page .jts-wotd-section span.jts-wotd-date {
  color: rgba(255, 255, 255, 0.55) !important;
}

body .jts-wotd-section span.jts-wotd-sep,
body.taxation-page .jts-wotd-section span.jts-wotd-sep,
body.banking-page .jts-wotd-section span.jts-wotd-sep,
body.cyber-page .jts-wotd-section span.jts-wotd-sep,
body.online-gaming-page .jts-wotd-section span.jts-wotd-sep,
body.artificial-page .jts-wotd-section span.jts-wotd-sep,
body.ip-it-law-page .jts-wotd-section span.jts-wotd-sep,
body.medical-page .jts-wotd-section span.jts-wotd-sep,
body.corporate-employment-disputes-page .jts-wotd-section span.jts-wotd-sep {
  color: #347aea !important;
}

@media(max-width:768px) {
  .jts-wotd-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .jts-wotd-divider,
  .jts-wotd-date {
    display: none;
  }
}

/* FIX-END: Issue 3 */

/* FIX-START: Issue 6 - Instagram section CSS */
.jts-insta-section {
  padding: 80px 5%;
  background: #F4F7FC;
}

.jts-insta-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.jts-insta-icon {
  font-size: 40px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jts-insta-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: #223068;
  margin: 0 0 4px;
}

.jts-insta-handle {
  color: #347aea;
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
}

.jts-insta-follow-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.jts-insta-follow-btn:hover {
  opacity: 0.88;
  color: #fff;
}

.jts-insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.jts-insta-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(34, 48, 104, 0.08);
  min-height: 280px;
}

.jts-insta-footer {
  text-align: center;
  margin-top: 32px;
}

.jts-insta-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #347aea;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.jts-insta-more-btn:hover {
  background: #1e2fb0;
  color: #fff;
}

@media(max-width:1024px) {
  .jts-insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .jts-insta-grid {
    grid-template-columns: 1fr;
  }

  .jts-insta-follow-btn {
    margin-left: 0;
  }
}

/* FIX-END: Issue 6 */

/* FIX-START: Issue 4 - Footer social icons horizontal on inner pages */
/* ── Footer social icons: force horizontal on ALL pages ── */
footer .colorlib-social-icons,
.jts-footer .colorlib-social-icons,
.site-footer .colorlib-social-icons,
.footer-inner .colorlib-social-icons,
.colorlib-social-icons {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Individual social icon items — prevent full-width stretch */
footer .colorlib-social-icons a,
footer .colorlib-social-icons li,
footer .colorlib-social-icons>*,
.colorlib-social-icons .jts-social-item,
.colorlib-social-icons li {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  flex: 0 0 auto !important;
  float: none !important;
}

footer .colorlib-social-icons ul,
.jts-footer .colorlib-social-icons ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

footer .colorlib-social-icons ul li {
  display: inline-flex !important;
  width: auto !important;
  float: none !important;
}

/* FIX-END: Issue 4 */

/* FIX-START: Task 2 - Article page CSS */
.jts-article-main {
  padding: 60px 0;
  background: #FFFFFF;
}

.jts-article-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 5%;
}

.jts-category-badge {
  display: inline-block;
  background: #347aea;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.jts-article-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 38px);
  color: #223068;
  line-height: 1.25;
  margin-bottom: 16px;
}

.jts-article-byline {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 28px;
  line-height: 1.6;
}

.jts-article-thumb-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  background: #EEF3FB;
}

.jts-article-thumb {
  width: 100%;
  height: auto;
  display: block;
  max-height: 460px;
  object-fit: cover;
}

.jts-article-body h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: #1e2fb0;
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #EEF3FB;
}

.jts-article-body h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  color: #223068;
  margin: 28px 0 10px;
  font-style: italic;
}

.jts-article-body p {
  font-size: 16px;
  color: #374151;
  line-height: 1.85;
  margin-bottom: 18px;
}

.jts-article-body ul {
  margin: 0 0 18px 20px;
  padding: 0;
}

.jts-article-body ul li {
  font-size: 16px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 8px;
  list-style: disc;
}

.jts-author-box {
  background: #F4F7FC;
  border-left: 4px solid #347aea;
  border-radius: 8px;
  padding: 28px;
  margin: 48px 0 28px;
}

.jts-author-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.jts-author-box-header .ti {
  font-size: 24px;
  color: #347aea;
}

.jts-author-box-name {
  font-family: var(--font-heading);
  font-size: 15px;
  color: #223068;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.jts-author-box-title {
  font-size: 17px;
  color: #1e2fb0;
  margin-bottom: 10px;
}

.jts-author-box-bio,
.jts-author-box-closing {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 12px;
}

.jts-article-disclaimer {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 28px 0;
  font-size: 13px;
  color: #92400E;
  line-height: 1.6;
}

.jts-article-cta-block {
  background: linear-gradient(135deg, #223068 0%, #1e2fb0 100%);
  border-radius: 12px;
  padding: 36px;
  text-align: center;
  margin: 40px 0;
}

.jts-article-cta-block p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 15px !important;
}

.jts-article-cta-block h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: #FFFFFF;
  margin-bottom: 24px;
  border: none;
  padding: 0;
}

.jts-article-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.jts-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: #347aea;
  color: #FFFFFF;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.jts-btn-primary:hover {
  background: #1e4ba3;
}

.jts-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.jts-article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid #E5E7EB;
  margin-top: 40px;
}

.jts-share-label {
  font-size: 14px;
  font-weight: 600;
  color: #223068;
}

.jts-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.jts-share-linkedin {
  background: #0A66C2;
  color: #FFFFFF;
}

.jts-share-copy {
  background: #F4F7FC;
  color: #223068;
  border: 1px solid #D1D5DB;
}

/* FIX-END: Task 2 */

/* === DISCLAIMER MODAL === */
.jts-disclaimer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  pointer-events: auto;
}

.jts-disclaimer-overlay.accepted {
  display: none !important;
}

.jts-disclaimer-card {
  background: var(--white);
  max-width: 680px;
  width: 100%;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  border-top: 4px solid var(--gold);
  border-radius: 4px;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.jts-disclaimer-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.jts-disclaimer-logo {
  height: 56px;
  width: auto;
}

.jts-disclaimer-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
}

.jts-disclaimer-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: #444444;
  margin-bottom: 24px;
  text-align: justify;
}

.jts-disclaimer-acceptance {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.jts-disclaimer-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #444444;
  cursor: pointer;
  user-select: none;
}

.jts-disclaimer-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
  cursor: pointer;
}

.jts-disclaimer-action {
  display: flex;
  justify-content: center;
}

.jts-disclaimer-btn {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 4px;
  border: none;
  width: 100%;
  max-width: 280px;
  text-align: center;
  transition: var(--transition-smooth);
}

/* Button - disabled state (checkbox unticked) */
.jts-disclaimer-btn:disabled {
  background: #cccccc;
  color: #888888;
  cursor: not-allowed;
}

/* Button - active state (checkbox ticked) */
.jts-disclaimer-btn:not(:disabled) {
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
}

.jts-disclaimer-btn:not(:disabled):hover {
  background: var(--gold);
}

/* Page interaction lock styling */
body.disclaimer-open {
  pointer-events: none !important;
  overflow: hidden !important;
}

body.disclaimer-open #jtsDisclaimerOverlay {
  pointer-events: auto;
}

/* Mobile responsive */
@media screen and (max-width: 600px) {
  .jts-disclaimer-card {
    width: 90vw;
    padding: 28px;
  }

  .jts-disclaimer-logo {
    height: 44px;
  }
}

/* Justify body text only */
p,
.section-lead-paragraph,
.hero-lead-text,
.consultation-lead-text,
.guide-card-desc,
.blog-card-excerpt-text,
.client-quote-text,
.footer-text-summary,
.footer-contact-text,
.jts-rq-desc,
.jts-rm-paragraph,
.jts-rd-paragraph {
  text-align: justify;
}


.mission-page .jts-founder-text {
    text-align: justify;
}

.mission-page .jts-founder-text p,
.mission-page .jts-founder-text li {
    text-align: justify;
}