/* TBM - Insolvency Professionals */
/* Colors: Dark Blue #1c4f82 | Orange #f2a640 | White, Grey */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --nav-blue: #1c4f82;
  --orange: #f2a640;
  --orange-hover: #e08a2a;
  --text-dark: #1a1a2e;
  --text-muted: #5a6c7d;
  --white: #ffffff;
  --grey-bg: #f5f5f5;
  --font-sans: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --border-light: #d1d9e0;
  --input-bg: #fafbfc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: #f5f5f5;
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

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

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

/* ========== CONTAINER ========== */
.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  padding-left: 100px;
  padding-right: 100px;
}

/* ========== TOP HEADER ========== */
.top-header {
  background: white;
  padding: 12px 0;
  animation: fadeIn 0.5s ease-out;
}

.navbar {
  animation: fadeIn 0.5s ease-out 0.08s both;
}

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

.top-header .logo {
  display: block;
  text-decoration: none;
}

.top-header .logo img {
  height: 60px;
  width: auto;
  display: block;
}

.top-header .email {
  font-size: 14px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-header .email:hover {
  color: var(--nav-blue);
}

.top-header .email .email-icon {
  color: #f2a640;
}

/* ========== NAVBAR ========== */
.navbar {
  background: #1c4f82;
  padding: 15px 0;
}

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

.menu {
  display: flex;
  gap: 35px;
  list-style: none;
  color: white;
  margin: 0;
  padding: 0;
}

.menu li {
  cursor: pointer;
  font-size: 16px;
}

.menu li a {
  color: inherit;
  text-decoration: none;
}

.menu .active a,
.menu li:hover a {
  color: #f2a640;
}

.cta-btn {
  background: #f2a640;
  padding: 12px 24px;
  color: white;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border: none;
  font-family: inherit;
  text-align: center;
}

.cta-btn:hover {
  background: var(--orange-hover);
  color: white;
}

/* Contact info modal (navbar CTA) */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 42, 71, 0.65);
  cursor: pointer;
}

.contact-modal__panel {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 8px;
  max-width: 420px;
  width: 100%;
  padding: 28px 28px 24px;
  box-shadow: 0 20px 60px rgba(28, 79, 130, 0.25);
}

.contact-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #1c4f82;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-modal__close:hover {
  background: rgba(28, 79, 130, 0.08);
  color: #f2a640;
}

.contact-modal__title {
  margin: 0 36px 18px 0;
  font-size: 22px;
  font-weight: 600;
  color: #1c4f82;
  padding-bottom: 12px;
  border-bottom: 3px solid #f2a640;
}

.contact-modal__body {
  color: #333;
  font-size: 15px;
  line-height: 1.65;
}

.contact-modal__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-modal__row:last-child {
  margin-bottom: 0;
}

.contact-modal__icon {
  flex-shrink: 0;
  width: 22px;
  text-align: center;
  color: #1c4f82;
  margin-top: 3px;
}

.contact-modal__icon i {
  font-size: 16px;
}

.contact-modal__text {
  flex: 1;
  min-width: 0;
}

.contact-modal__body a.contact-modal__link {
  color: inherit;
  text-decoration: none;
}

.contact-modal__body a.contact-modal__link:hover {
  color: #1c4f82;
  text-decoration: underline;
}

/* Footer logo (reuses img) */
.footer .logo-wrap {
  display: block;
  text-decoration: none;
}

.footer .logo-img {
  display: block;
  height: auto;
  max-height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ========== HERO SLIDER (Home) ========== */
.hero-slider.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: white;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #1c4f82;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slider .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(28, 79, 130, 0.75);
  z-index: 1;
}

.hero-slider .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-left: 100px;
  margin-right: auto;
}

.hero-slider .welcome {
  font-size: 22px;
  margin-bottom: 10px;
}

.hero-slider.hero h1 {
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-slider .hero-text {
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.hero-btn {
  background: #f2a640;
  padding: 14px 30px;
  color: white;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
  text-decoration: none;
}

.hero-btn:hover {
  background: var(--orange-hover);
  color: white;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: white;
  border: 1px solid white;
  padding: 12px 18px;
  cursor: pointer;
  z-index: 3;
}

.slider-arrow.left {
  left: 40px;
}

.slider-arrow.right {
  right: 40px;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ========== PAGE HERO (Inner pages banner) ========== */
.hero.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1c4f82;
  text-align: center;
  color: var(--white);
}

/* Page hero with background image (e.g. practice area details) */
.page-hero.page-hero-with-bg {
  min-height: 420px;
  background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920&h=600&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* About page hero - corporate/legal background */
.page-hero.page-hero-about {
  background-image: url('../images/About Us Page/Page-Hero.png');
}

.page-hero.page-hero-with-bg .hero-bg {
  background: rgba(25, 55, 95, 0.78);
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 79, 130, 0.92) 0%, rgba(28, 79, 130, 0.88) 100%);
  z-index: 0;
}

.page-hero .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
  text-align: center;
}

.page-hero .hero-sub {
  font-size: 18px;
  margin-bottom: 10px;
  opacity: 0.98;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.page-hero .hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
  font-family: Georgia, 'Times New Roman', serif;
  color: #ffffff;
}

.page-hero.page-hero-with-bg .hero-title {
  font-size: 52px;
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.page-hero .hero-breadcrumb {
  font-size: 14px;
  opacity: 0.95;
  font-weight: 400;
}

.page-hero .hero-breadcrumb a {
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
}

.page-hero .hero-breadcrumb a:hover {
  color: var(--orange);
}

/* ========== SECTIONS COMMON ========== */
section {
  padding: 64px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 48px;
}

/* ========== ABOUT US ========== */
.about-section {
  padding: 80px 15%;
  background: #fff;
}

/* About page content blocks - excellence section */
.excellence-section {
  padding: 80px 10%;
  background: #f5f5f5;
  font-family: 'Poppins', sans-serif;
}

.excellence-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.excellence-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.excellence-row:last-child {
  margin-bottom: 0;
}

.excellence-row.reverse {
  flex-direction: row-reverse;
}

.excellence-text {
  flex: 1;
}

.excellence-text h2 {
  font-size: 28px;
  color: #1c2d4a;
  margin-bottom: 15px;
  line-height: 1.3;
}

.excellence-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.excellence-image {
  flex: 1;
  position: relative;
}

.excellence-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 4px;
  display: block;
}

/* About page: keep images consistent and responsive */
.page-about .excellence-image {
  width: 100%;
  max-width: 640px; /* matches IMAGES.md */
  aspect-ratio: 640 / 440;
}

.page-about .excellence-image img {
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.page-about .appointment-section .col-img {
  min-height: auto;
  width: 100%;
  max-width: 640px; /* matches IMAGES.md */
  aspect-ratio: 640 / 500;
}

.page-about .appointment-section .col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 1st block: orange bar at left end, bottom of image */
.excellence-row .orange-bar {
  position: absolute;
  width: 90px;
  height: 18px;
  background: #f29b38;
  bottom: -10px;
  left: 0;
}

/* 2nd block: orange bar at right bottom of image */
.excellence-row:nth-child(2) .orange-bar {
  left: auto;
  right: 60px;
}

.download-btn {
  display: inline-block;
  margin-top: 10px;
  background: #1c4f82;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.download-btn:hover {
  background: #163a66;
  transform: translateY(-2px);
}

/* ========== DOWNLOAD POPUP (ABOUT) ========== */
.download-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, visibility 0ms linear 200ms;
}

.download-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 240ms ease, visibility 0ms;
}

.download-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 19, 36, 0.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 240ms ease;
}

.download-modal.is-open .download-modal__overlay {
  opacity: 1;
}

.download-modal__dialog {
  position: relative;
  width: min(520px, calc(100% - 32px));
  margin: 0 auto;
  top: 50%;
  transform: translateY(calc(-50% + 10px)) scale(0.98);
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 20px 18px;
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.42),
    0 1px 0 rgba(255, 255, 255, 0.4) inset;
  opacity: 0;
  transition: transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 240ms ease;
}

.download-modal.is-open .download-modal__dialog {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.download-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: rgba(28, 79, 130, 0.08);
  color: #1c4f82;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.download-modal__close:hover {
  background: rgba(28, 79, 130, 0.14);
  transform: translateY(-1px);
}

.download-modal__title {
  margin: 0 40px 6px 0;
  font-size: 20px;
  color: #1c2d4a;
  letter-spacing: 0.01em;
}

.download-modal__sub {
  margin: 0 0 14px;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.download-modal__form {
  display: grid;
  gap: 12px;
}

.download-modal__field {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: #1c2d4a;
}

.download-modal__field input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.98), #ffffff);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.download-modal__field input:focus {
  border-color: rgba(28, 79, 130, 0.7);
  box-shadow:
    0 0 0 4px rgba(242, 155, 56, 0.22),
    0 10px 22px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.download-modal__field input:invalid {
  border-color: rgba(220, 60, 60, 0.5);
}

.download-modal__submit {
  margin-top: 4px;
  border: 0;
  border-radius: 10px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #f6ad52, #f29b38 55%, #ea7f16);
  color: #132844;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(242, 155, 56, 0.35);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.download-modal__submit:hover {
  filter: brightness(1.02);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(242, 155, 56, 0.42);
}

.download-modal__submit:active {
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .download-modal,
  .download-modal__overlay,
  .download-modal__dialog,
  .download-modal__close,
  .download-modal__field input,
  .download-modal__submit {
    transition: none !important;
  }
  .download-modal__dialog {
    transform: translateY(-50%) !important;
  }
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* TEXT */
.about-text {
  max-width: 520px;
}

.about-text h2 {
  font-size: 42px;
  color: #1c2d4a;
  margin-bottom: 20px;
}

.about-text h3 {
  font-size: 20px;
  color: #1c2d4a;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* BUTTON */
.about-btn {
  background: #f29b38;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  display: inline-block;
}

.about-btn:hover {
  background: #e08a2a;
}

/* IMAGE AREA */
.about-images {
  position: relative;
  width: 420px;
  height: 400px;
}

/* SAME SIZE IMAGES */
.about-images img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  position: absolute;
}

/* RIGHT TOP IMAGE */
.img-top {
  top: 0;
  right: 0;
  z-index: 2;
}

/* LEFT BOTTOM IMAGE */
.img-bottom {
  bottom: 0;
  left: 0;
  z-index: 1;
}



/* – upper-right, lower-left overlaps main’s upper-right */

/* ========== STATS SECTION (Experienced & Skilled) ========== */
.stats-section {
  background: #1c2d4a;
  position: relative;
  overflow: hidden;
  padding: 80px 12%;
}

.stats-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Faint dotted world map overlay */
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.12) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
}

.stats-section .section-title {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  font-family: Georgia, "Playfair Display", "Times New Roman", serif;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.25;
}

.stats-section .section-subtitle {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  margin: 0 auto 56px;
  max-width: 700px;
  line-height: 1.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stats-grid.five-col {
  grid-template-columns: repeat(5, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.stat-item .number {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 8px;
  white-space: nowrap;
}

.stat-item .label {
  font-size: 18px;
  color: #f29b38;
  font-weight: 400;
}

/* About page stats - dotted world map bg, 5-col grid (about page only) */
.stats-section.stats-section-about {
  background: #1c4f82 url("https://www.transparenttextures.com/patterns/world-map.png") center/contain no-repeat;
  padding: 50px 20%;
  color: white;
  text-align: center;
}

.stats-section.stats-section-about .stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Row 1: items 1, 2, 3 in columns 1, 3, 5 */
.stats-section.stats-section-about .stats-container .stat-item:nth-child(1) {
  grid-column: 1;
}

.stats-section.stats-section-about .stats-container .stat-item:nth-child(2) {
  grid-column: 3;
}

.stats-section.stats-section-about .stats-container .stat-item:nth-child(3) {
  grid-column: 5;
}

/* Row 2: items 4, 5 in center of gaps between row 1 (columns 2 and 4) */
.stats-section.stats-section-about .stats-container .stat-item:nth-child(4) {
  grid-column: 2;
}

.stats-section.stats-section-about .stats-container .stat-item:nth-child(5) {
  grid-column: 4;
}

.stats-section.stats-section-about .stat-item h2,
.stats-section.stats-section-about .stat-item h2 .number {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
  white-space: nowrap;
}

.stats-section.stats-section-about .stat-item p {
  color: #f2a640;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* ========== PRACTICE AREAS ========== */
.practice-section {
  padding: 80px 10%;
  background: #f5f5f5;
  text-align: center;
}

.practice-section .section-title {
  font-size: 40px;
  color: #1d2e4b;
  margin-bottom: 50px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1000px;
  margin: auto;
}

.practice-card {
  padding: 40px 30px;
  background: white;
  border: 1px solid #e3e3e3;
  transition: 0.4s;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
}

.practice-card i {
  font-size: 40px;
  color: #1c4f82;
  margin: 0 auto 20px;
  display: block;
}

.practice-card h3 {
  font-size: 20px;
  color: #1d2e4b;
  margin-bottom: 10px;
}

.practice-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

.practice-card:hover {
  background: #174e83;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.practice-card:hover h3,
.practice-card:hover p {
  color: white;
}

.practice-card:hover i {
  color: #f7b23b;
}

.practice-section .explore-btn {
  display: inline-block;
  margin-top: 40px;
  background: #f29b38;
  color: white;
  padding: 14px 30px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
}

.practice-section .explore-btn:hover {
  background: #e08a2a;
  color: white;
}

/* ========== WHY CHOOSE US PAGE ========== */
.why-choose-section {
  padding: 72px 0 80px;
  background: var(--white);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-choose-card {
  padding: 0 0 0 20px;
  border-left: 3px solid #c62828;
  text-align: left;
}

.why-choose-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--nav-blue);
  margin-bottom: 12px;
  line-height: 1.35;
}

.why-choose-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.why-choose-get-in-touch {
  padding: 56px 0 64px;
  background: var(--grey-bg);
  text-align: center;
}

.why-choose-get-in-touch__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--nav-blue);
  margin: 0 0 12px;
}

.why-choose-get-in-touch__lead {
  max-width: 520px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-choose-get-in-touch__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
}

.why-choose-get-in-touch__btn {
  display: inline-block;
}

@media (max-width: 900px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-choose-section {
    padding: 48px 0 56px;
  }

  .why-choose-get-in-touch {
    padding: 40px 0 48px;
  }

  .why-choose-get-in-touch__title {
    font-size: 26px;
  }
}

/* ========== EXPERT TEAM ========== */
.team-section {
  padding: 80px 10%;
  background: #f5f5f5;
  text-align: center;
}

.team-title {
  font-size: 40px;
  color: #1c2d4a;
  margin-bottom: 50px;
  font-weight: 600;
}

.team-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.team-slider-inner {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.team-slider-inner:active {
  cursor: grabbing;
}

.team-track {
  display: flex;
  transition: transform 0.4s ease;
}

.team-track .team-card {
  flex: 0 0 33.333%;
  min-width: 33.333%;
  box-sizing: border-box;
  padding: 0 15px;
}

.team-card {
  background: #fff;
  padding: 20px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #f7f9fb;
  margin-top: 10px;
  margin-bottom: 15px;
}

.team-card h3 {
  font-size: 20px;
  color: #1c2d4a;
  margin-bottom: 8px;
}

.team-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 10px;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.team-dots {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.team-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
  margin: 0;
  transition: background 0.2s;
}

.team-dots span:hover {
  background: #bbb;
}

.team-dots span.active {
  background: #f0a030;
}

/* ========== CORE TEAM PROFILE ========== */
.profile-section {
  background: var(--grey-bg);
  padding: 64px 0;
}

.profile-section .flex {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.profile-section .col-img {
  flex: 0 0 380px;
}

.profile-section .col-img img {
  width: 100%;
  border: 3px solid var(--orange);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.profile-section .col-text h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.profile-section .col-text .roles {
  font-size: 15px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 20px;
}

.profile-section .col-text .bio {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.profile-section .linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #0A66C2;
  color: var(--white);
  border-radius: 4px;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 700;
}

.profile-section .btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
}

.profile-section .btn-primary:hover {
  background: var(--orange-hover);
}

/* ========== HAVE A QUERY ========== */
.query-section {
  background: linear-gradient(rgba(28, 79, 130, 0.88), rgba(28, 79, 130, 0.88)), url('../images/core-team/Query.png') center/cover no-repeat;
  padding: 64px 0;
  color: var(--white);
}

.query-section.query-core-team {
  background: linear-gradient(rgba(28, 79, 130, 0.88), rgba(28, 79, 130, 0.88)), url('../images/core-team/Query.png') center/cover no-repeat;
}

.query-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.query-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 0;
}

.query-section .btn-cta {
  background: var(--orange);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.query-section .btn-cta:hover {
  background: var(--orange-hover);
}

.query-section .btn-cta::after {
  content: " →";
}

/* ========== MAKE AN APPOINTMENT / FORM ========== */
.appointment-section {
  background: var(--white);
  padding: 80px 0;
}

.appointment-section .flex {
  display: flex;
  align-items: stretch;
  gap: 48px;
}

.appointment-section .col-form {
  flex: 1;
  max-width: 560px;
}

.appointment-section .col-img {
  flex: 1;
  min-height: 400px;
}

.appointment-section .col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.appointment-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.appointment-section .form-desc {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 480px;
}

.appointment-section form {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.appointment-section .form-row:has(> :only-child) {
  grid-template-columns: 1fr;
}

.appointment-section input,
.appointment-section textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-sans);
  background: var(--input-bg);
  color: var(--text-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.appointment-section input::placeholder,
.appointment-section textarea::placeholder {
  color: #8a9ba8;
}

.appointment-section input:hover,
.appointment-section textarea:hover {
  border-color: #b0bec5;
  background: var(--white);
}

.appointment-section input:focus,
.appointment-section textarea:focus {
  outline: none;
  border-color: var(--nav-blue);
  box-shadow: 0 0 0 3px rgba(28, 79, 130, 0.12);
  background: var(--white);
}

.appointment-section textarea {
  min-height: 130px;
  resize: vertical;
  margin-bottom: 24px;
}

.appointment-section .btn-submit {
  background: var(--orange);
  color: var(--white);
  padding: 16px 36px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  font-family: var(--font-sans);
  box-shadow: 0 4px 14px rgba(242, 166, 64, 0.35);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.appointment-section .btn-submit:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 166, 64, 0.4);
}

.appointment-section .btn-submit:active {
  transform: translateY(0);
}

/* ========== CORPORATE INSOLVENCY CONTENT ========== */
.service-content {
  background: var(--white);
  padding: 64px 0;
}

.service-content .container {
  max-width: 800px;
}

.service-content .highlight-quote {
  border-left: 4px solid var(--orange);
  padding-left: 24px;
  margin-bottom: 28px;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.6;
}

.service-content .body p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.7;
}

.service-content .btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  margin-top: 16px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.service-content .btn-primary:hover {
  background: var(--orange-hover);
}

/* ========== BLOG POSTS ========== */
.blog-section {
  padding: 80px 10%;
  background: #f5f5f5;
  text-align: center;
}

.blog-title {
  font-size: 42px;
  color: #1c2d4a;
  margin-bottom: 50px;
}

.blog-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.blog-slider-inner {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.blog-slider-inner:active {
  cursor: grabbing;
}

.blog-track {
  display: flex;
  transition: transform 0.4s ease;
}

.blog-track .blog-card {
  flex: 0 0 33.333%;
  min-width: 33.333%;
  box-sizing: border-box;
  padding: 0 15px;
}

.blog-card {
  background: white;
  width: 100%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-date {
  background: #1c4f82;
  color: white;
  padding: 10px 15px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 20px;
  color: #1c2d4a;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-section .read-more {
  color: #f29b38;
  text-decoration: none;
  font-weight: 600;
}

/* ========== BLOG ARCHIVE PAGE ========== */
.blog-archive-section {
  padding: 72px 0 96px;
  background: #f5f5f5;
}

.blog-archive-inner {
  max-width: 1200px;
}

.blog-archive-heading {
  font-size: 42px;
  color: #1c2d4a;
  margin: 0 0 16px;
  text-align: center;
}

.blog-archive-status {
  text-align: center;
  color: #555;
  font-size: 15px;
  margin: 0 0 28px;
}

.blog-archive-status--empty {
  color: #666;
}

.blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.blog-archive-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
}

.blog-archive-card .blog-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-archive-card .read-more {
  color: #f29b38;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
}

.blog-archive-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 15px;
  line-height: 1.65;
}

/* ========== BLOG DETAILS PAGE ========== */
.blog-details {
  background: var(--white);
  padding: 72px 0;
}

.blog-details-wrap {
  display: grid;
  grid-template-columns: 1.75fr 0.85fr;
  gap: 42px;
  align-items: start;
}

.blog-details-cover {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  background: #e9eef3;
}

.blog-details-cover img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.blog-details-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 10px;
  color: var(--text-muted);
  font-size: 14px;
}

.blog-meta-dot {
  opacity: 0.7;
}

.blog-details-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.blog-details-read-more {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  background: #f29b38;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.blog-details-read-more:hover {
  background: #e48b22;
  transform: translateY(-1px);
}

.blog-details-aside {
  background: #f7f9fb;
  border: 1px solid rgba(28, 79, 130, 0.08);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.blog-details-aside h3 {
  font-size: 18px;
  margin-bottom: 14px;
  color: #1c2d4a;
}

.blog-related {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-related-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-related-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(28, 79, 130, 0.12);
}

.blog-related-item .thumb {
  border-radius: 8px;
  overflow: hidden;
  background: #e9eef3;
}

.blog-related-item .thumb img {
  width: 100%;
  height: 64px;
  object-fit: cover;
}

.blog-related-item .info .title {
  font-size: 14px;
  font-weight: 700;
  color: #1c2d4a;
  line-height: 1.35;
  margin-bottom: 4px;
}

.blog-related-item .info .date {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .blog-details-wrap {
    grid-template-columns: 1fr;
  }
  .blog-details-cover img {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .blog-details {
    padding: 56px 0;
  }
  .blog-details-cover img {
    height: 260px;
  }
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-dots {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.blog-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
  margin: 0;
  transition: background 0.2s;
}
.blog-dots span:hover {
  background: #bbb;
}

.blog-dots span.active {
  background: #f0a030;
}

/* ========== CAREERS PAGE (layout aligned with tbm_2 careers; TBM colors & type) ========== */
.page-hero.page-hero-careers {
  background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1920&h=600&fit=crop');
}

.careers-main {
  background: var(--grey-bg);
  padding-bottom: 64px;
}

.careers-section-head {
  text-align: center;
  margin-bottom: 40px;
}

.careers-section-head h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 12px;
  line-height: 1.2;
}

.careers-section-head p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.careers-jobs-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 0;
}

.careers-jobs-wrap .careers-section-head {
  margin-bottom: 36px;
}

.careers-jobs-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.careers-job-card {
  background: var(--white);
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(28, 79, 130, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(28px);
}

.careers-job-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.careers-job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(28, 79, 130, 0.14);
}

.careers-job-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.careers-job-title {
  font-size: 22px;
  font-weight: 700;
  color: #1c2d4a;
  margin: 0 0 12px;
}

.careers-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.careers-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
}

.careers-meta-item i {
  color: var(--orange);
  font-size: 14px;
}

.careers-job-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin: 0 0 20px;
  text-align: justify;
}

.careers-job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.careers-job-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(28, 79, 130, 0.08);
  color: var(--nav-blue);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

.careers-job-tag i {
  font-size: 12px;
  color: var(--orange);
}

.careers-job-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.careers-apply-btn {
  padding: 12px 28px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.careers-apply-btn:hover {
  background: var(--orange-hover);
  color: var(--white);
  transform: translateY(-2px);
}

.careers-details-btn {
  padding: 12px 24px;
  background: transparent;
  color: var(--nav-blue);
  border: 2px solid var(--nav-blue);
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.careers-details-btn:hover {
  background: var(--nav-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.careers-cta {
  max-width: 1200px;
  margin: 56px auto 0;
  padding: 48px 40px;
  background: linear-gradient(135deg, #1c4f82 0%, #163a66 100%);
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(28, 79, 130, 0.25);
}

.careers-cta h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 14px;
  line-height: 1.3;
}

.careers-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 24px;
  text-align: center;
}

a.careers-cta-link {
  display: inline-block;
  padding: 14px 32px;
  background: var(--white);
  color: var(--nav-blue);
  font-weight: 700;
  font-size: 15px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.careers-cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: var(--nav-blue);
}

@media (max-width: 768px) {
  .careers-section-head h2 {
    font-size: 28px;
  }

  .careers-job-card {
    padding: 24px 20px;
  }

  .careers-job-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .careers-apply-btn,
  .careers-details-btn {
    width: 100%;
    text-align: center;
  }

  .careers-cta {
    margin-left: 16px;
    margin-right: 16px;
    padding: 36px 24px;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(180deg, #23426c 0%, #1d3559 100%);
  color: var(--white);
  padding: 64px 0 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.footer .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  align-items: start;
}

.footer .logo-wrap .logo {
  color: var(--white);
}

.footer .tagline {
  color: rgba(255,255,255,0.9);
  margin-top: 4px;
}

.footer .footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  margin-top: 10px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  word-spacing: normal;
  text-align: left;
  max-width: 360px;
  text-wrap: pretty;
}

.footer .logo-wrap {
  display: inline-block;
  margin-bottom: 4px;
}

.footer .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer .social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer .social-icons a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.footer .social-icons a[aria-label="IBBI"] {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #ffffff;
  border-color: rgba(255,255,255,0.9);
  padding: 7px;
}

.footer .social-icons a[aria-label="IBBI"] img {
  width: 100%;
  height: 100%;
  filter: none;
}

.footer .social-icons a:hover {
  background: #F29B38;
  border-color: #F29B38;
  transform: translateY(-2px);
}

.footer .social-icons a[aria-label="IBBI"]:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer ul li a:hover {
  color: var(--orange);
}

.footer .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

.footer .contact-item .icon {
  flex-shrink: 0;
  width: 18px;
  text-align: center;
  margin-top: 2px;
}

.footer .contact-item .icon i {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
}

.footer .contact-item__link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer .contact-item > .contact-item__link {
  flex: 1;
  min-width: 0;
}

.footer .contact-item__link:hover {
  color: var(--orange);
}

.footer .contact-item__lines {
  flex: 1;
  min-width: 0;
  line-height: inherit;
}

.footer .subscribe input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-size: 14px;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer .subscribe input:focus {
  outline: none;
  border-color: rgba(242,155,56,0.95);
  box-shadow: 0 0 0 3px rgba(242,155,56,0.2);
}

.footer .subscribe input::placeholder {
  color: rgba(255,255,255,0.6);
}

.footer .subscribe .btn-subscribe {
  width: 100%;
  background: #F29B38;
  color: var(--white);
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: var(--font-sans);
}

.footer .subscribe .btn-subscribe:hover {
  background: var(--orange-hover);
}

.footer .subscribe .btn-subscribe::after {
  content: " →";
}

.copyright {
  background: #1a2f4f;
  text-align: center;
  padding: 20px 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}

.copyright .copyright-text {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.95);
}

.copyright .copyright-credit {
  display: inline-block !important;
  visibility: visible !important;
  font-size: 15px !important;
  color: #f2a640 !important;
  opacity: 1 !important;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-decoration: none;
  text-shadow: 0 0 20px rgba(242, 166, 64, 0.4);
  animation: creditFadeIn 1s ease-out forwards;
}

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

.copyright .copyright-credit:hover {
  color: #ffffff !important;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* ========== UTILITIES ========== */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn-primary:hover {
  background: var(--orange-hover);
}

/* ========== RESPONSIVE: TABLET & MOBILE ========== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .top-header .logo img {
    height: 48px;
  }

  .navbar .nav-flex {
    flex-wrap: wrap;
    gap: 16px;
  }

  .menu {
    gap: 24px;
    order: 1;
    width: 100%;
    justify-content: center;
  }

  .navbar .cta-btn {
    order: 2;
    margin: 0 auto;
  }

  .hero-slider.hero {
    height: 500px;
  }

  .hero-slider.hero h1 {
    font-size: 48px;
  }

  .hero-slider .welcome {
    font-size: 18px;
  }

  .hero-slider .hero-text {
    font-size: 15px;
  }

  .slider-arrow {
    padding: 10px 14px;
    font-size: 22px;
  }

  .slider-arrow.left { left: 24px; }
  .slider-arrow.right { right: 24px; }

  .about-section {
    padding: 60px 5%;
  }

  .about-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
  }

  .about-text h2 {
    font-size: 36px;
  }

  .about-text h3 {
    font-size: 18px;
  }

  .about-images {
    width: 100%;
    max-width: 380px;
    height: 320px;
    margin: 0 auto;
  }

  .about-images img {
    width: 180px;
    height: 180px;
  }

  .excellence-row,
  .excellence-row.reverse {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
  }

  .excellence-image img {
    max-width: 100%;
  }

  .excellence-text h2 {
    font-size: 26px;
  }

  .stats-section {
    padding: 60px 5%;
  }

  .stats-section .section-title {
    font-size: 34px;
  }

  .stats-section .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .stats-grid {
    gap: 32px;
  }

  .stat-item .number {
    font-size: 44px;
  }

  .stat-item .label {
    font-size: 16px;
  }

  .stats-grid.five-col {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .practice-section {
    padding: 60px 5%;
  }

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

  .section-title {
    font-size: 36px;
  }

  .team-section {
    padding: 60px 5%;
  }

  .team-track .team-card {
    flex: 0 0 50%;
    min-width: 50%;
  }

  .team-card {
    max-width: 280px;
  }

  .stats-section.stats-section-about .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .stats-section.stats-section-about .stats-container .stat-item:nth-child(1),
  .stats-section.stats-section-about .stats-container .stat-item:nth-child(2),
  .stats-section.stats-section-about .stats-container .stat-item:nth-child(3),
  .stats-section.stats-section-about .stats-container .stat-item:nth-child(4),
  .stats-section.stats-section-about .stats-container .stat-item:nth-child(5) {
    grid-column: auto;
  }

  .stats-section.stats-section-about .stat-item h2,
  .stats-section.stats-section-about .stat-item h2 .number {
    font-size: 44px;
  }

  .appointment-section .flex {
    flex-direction: column;
    gap: 32px;
  }

  .appointment-section .col-img {
    min-height: 320px;
  }

  .appointment-section h2 {
    font-size: 28px;
  }

  .blog-section {
    padding: 60px 5%;
  }

  .blog-title {
    font-size: 36px;
    margin-bottom: 36px;
  }

  .blog-track .blog-card {
    flex: 0 0 50%;
    min-width: 50%;
  }

  .footer .container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .profile-section .flex {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .profile-section .col-img {
    flex: 0 0 auto;
    max-width: 380px;
    width: 100%;
  }

  .profile-section .col-text {
    text-align: center;
  }

  .service-content {
    padding: 48px 5%;
  }

  .query-section .container {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .page-hero .hero-title {
    font-size: 40px;
  }

  .page-hero .container {
    padding: 48px 24px;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .top-header {
    padding: 10px 0;
  }

  .top-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .top-header .logo img {
    height: 44px;
  }

  .top-header .email {
    font-size: 13px;
  }

  .navbar {
    padding: 12px 0;
  }

  .nav-flex {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .menu {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
  }

  .menu li {
    font-size: 15px;
  }

  .navbar .cta-btn {
    margin: 0;
    text-align: center;
    padding: 12px 20px;
  }

  .hero-slider.hero {
    height: 420px;
  }

  .hero-slider.hero h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-slider .welcome {
    font-size: 16px;
  }

  .hero-slider .hero-text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .slider-arrow {
    padding: 8px 12px;
    font-size: 18px;
  }

  .slider-arrow.left { left: 16px; }
  .slider-arrow.right { right: 16px; }

  .about-section {
    padding: 48px 5%;
  }

  .about-container {
    gap: 32px;
  }

  .about-text h2 {
    font-size: 30px;
  }

  .about-text h3 {
    font-size: 17px;
  }

  .about-images {
    max-width: 320px;
    height: 280px;
  }

  .about-images img {
    width: 160px;
    height: 160px;
  }

  .excellence-text h2 {
    font-size: 22px;
  }

  .excellence-section {
    padding: 60px 5%;
  }

  .stats-section {
    padding: 48px 5%;
  }

  .stats-section .section-title {
    font-size: 28px;
  }

  .stats-section .section-subtitle {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stat-item {
    padding: 20px 16px;
  }

  .stat-item .number {
    font-size: 40px;
  }

  .stat-item .label {
    font-size: 15px;
  }

  .stats-grid.five-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-section.stats-section-about {
    padding: 80px 8%;
  }

  .stats-section.stats-section-about .stats-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stats-section.stats-section-about .stat-item h2,
  .stats-section.stats-section-about .stat-item h2 .number {
    font-size: 40px;
  }

  .practice-section {
    padding: 48px 5%;
  }

  .practice-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .team-section {
    padding: 48px 5%;
  }

  .team-title {
    font-size: 28px;
  }

  .team-track .team-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .team-card {
    max-width: 100%;
  }


  .appointment-section .flex {
    gap: 24px;
  }

  .appointment-section .col-img {
    min-height: 260px;
  }

  .appointment-section h2 {
    font-size: 24px;
  }

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

  .blog-section {
    padding: 48px 5%;
  }

  .blog-title {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .blog-track .blog-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .blog-image img {
    height: 200px;
  }

  .footer .container {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer .footer-desc {
    max-width: none;
  }

  .footer .social-icons {
    justify-content: center;
  }

  .footer .logo-wrap {
    align-items: center;
  }

  .footer .logo-img {
    margin: 0 auto;
  }

  .copyright {
    padding: 16px 20px;
    font-size: 12px;
  }

  .profile-section .col-img {
    max-width: 100%;
  }

  .profile-section .col-text h1 {
    font-size: 28px;
  }

  .profile-section .col-text .roles,
  .profile-section .col-text .bio {
    font-size: 15px;
  }

  .service-content {
    padding: 40px 5%;
  }

  .service-content .highlight-quote {
    font-size: 15px;
  }

  .page-hero {
    min-height: 320px;
  }

  .page-hero .hero-title {
    font-size: 32px;
  }

  .page-hero .hero-sub {
    font-size: 16px;
  }

  .page-hero .container {
    padding: 40px 20px;
  }
}

/* Small mobile (480px and below) */
@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .top-header .logo img {
    height: 40px;
  }

  .hero-slider.hero {
    height: 380px;
  }

  .hero-slider.hero h1 {
    font-size: 28px;
  }

  .hero-slider .welcome {
    font-size: 14px;
  }

  .hero-slider .hero-text {
    font-size: 13px;
  }

  .slider-arrow.left { left: 12px; }
  .slider-arrow.right { right: 12px; }

  .about-text h2 {
    font-size: 26px;
  }

  .about-text h3 {
    font-size: 16px;
  }

  .about-images {
    height: 240px;
    max-width: 280px;
  }

  .about-images img {
    width: 140px;
    height: 140px;
  }

  .stats-section .section-title {
    font-size: 24px;
  }

  .stats-section .section-subtitle {
    font-size: 14px;
  }

  .stat-item .number {
    font-size: 36px;
  }

  .stats-grid.five-col {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }

  .practice-card h3 {
    font-size: 18px;
  }

  .practice-card p {
    font-size: 14px;
  }

  .blog-title {
    font-size: 24px;
  }

  .appointment-section h2 {
    font-size: 22px;
  }

  .page-hero .hero-title {
    font-size: 28px;
  }
}

/* ========== RESPONSIVE POLISH LAYER (GLOBAL) ========== */
@media (max-width: 1024px) {
  .hero-slider .hero-content {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .menu {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .top-header .email {
    text-align: center;
    word-break: break-word;
  }

  .blog-details-wrap {
    gap: 28px;
  }

  .blog-details-meta {
    flex-wrap: wrap;
  }

  .careers-jobs-wrap {
    padding: 48px 20px 0;
  }

  .footer .container > div {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .hero-slider .hero-content {
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }

  .menu {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
    padding: 6px 2px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .menu li {
    flex: 0 0 auto;
  }

  .menu li a {
    display: block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(28, 79, 130, 0.08);
    white-space: nowrap;
  }

  .navbar .cta-btn {
    width: 100%;
  }

  .section-title,
  .blog-title,
  .team-title,
  .page-hero .hero-title {
    line-height: 1.2;
    letter-spacing: 0.01em;
  }

  .practice-card,
  .blog-card,
  .team-card,
  .careers-job-card {
    border-radius: 10px;
  }

  .blog-content {
    padding: 18px;
  }

  .blog-details-cover img {
    border-radius: 10px;
  }

  .blog-details-read-more {
    width: 100%;
    text-align: center;
  }

  .appointment-section input,
  .appointment-section textarea {
    font-size: 16px;
  }

  .footer .container {
    text-align: left;
  }

  .footer .footer-desc {
    max-width: 100%;
  }

  .footer .social-icons {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-slider .hero-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .menu li a {
    font-size: 13px;
    padding: 7px 10px;
  }

  .hero-slider.hero {
    height: 360px;
  }

  .blog-image img {
    height: 180px;
  }

  .blog-content h3 {
    font-size: 20px;
  }

  .footer h4 {
    margin-bottom: 12px;
  }

  .footer .contact-item {
    font-size: 13px;
  }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll-triggered: sections start hidden, reveal when in view */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children when parent enters view */
.animate-on-scroll .practice-card,
.animate-on-scroll .blog-card,
.animate-on-scroll .team-card,
.animate-on-scroll .stat-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-on-scroll.in-view .practice-card,
.animate-on-scroll.in-view .blog-card,
.animate-on-scroll.in-view .team-card,
.animate-on-scroll.in-view .stat-item {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll .practice-card:nth-child(1),
.animate-on-scroll .blog-card:nth-child(1),
.animate-on-scroll .team-card:nth-child(1),
.animate-on-scroll .stat-item:nth-child(1) { transition-delay: 0.05s; }
.animate-on-scroll .practice-card:nth-child(2),
.animate-on-scroll .blog-card:nth-child(2),
.animate-on-scroll .team-card:nth-child(2),
.animate-on-scroll .stat-item:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll .practice-card:nth-child(3),
.animate-on-scroll .blog-card:nth-child(3),
.animate-on-scroll .team-card:nth-child(3),
.animate-on-scroll .stat-item:nth-child(3) { transition-delay: 0.15s; }
.animate-on-scroll .practice-card:nth-child(4),
.animate-on-scroll .blog-card:nth-child(4),
.animate-on-scroll .team-card:nth-child(4),
.animate-on-scroll .stat-item:nth-child(4) { transition-delay: 0.2s; }
.animate-on-scroll .practice-card:nth-child(5),
.animate-on-scroll .stat-item:nth-child(5) { transition-delay: 0.25s; }
.animate-on-scroll .practice-card:nth-child(6),
.animate-on-scroll .stat-item:nth-child(6) { transition-delay: 0.3s; }

/* Hero content: fade in on load */
.hero-slider .hero-content {
  animation: fadeInUp 0.9s ease-out 0.2s both;
}

.hero-slider .slider-arrow {
  transition: opacity 0.25s ease, background 0.25s ease;
}

.hero-slider .slider-arrow:hover {
  opacity: 0.9;
}

/* Card hover: lift and shadow */
.practice-card,
.blog-card,
.team-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.practice-card:hover,
.blog-card:hover,
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(28, 79, 130, 0.12);
}

/* Buttons */
.hero-btn,
.about-btn,
.cta-btn,
.btn-primary,
.btn-submit,
.explore-btn,
.footer .btn-subscribe {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-btn:hover,
.about-btn:hover,
.cta-btn:hover,
.btn-primary:hover,
.btn-submit:hover,
.explore-btn:hover,
.footer .btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 166, 64, 0.35);
}

/* Nav menu links */
.menu a {
  transition: color 0.2s ease;
}

/* About section images subtle zoom on hover */
.about-section img,
.appointment-section .col-img img {
  transition: transform 0.5s ease;
}

.about-section img:hover,
.appointment-section .col-img img:hover {
  transform: scale(1.03);
}

/* Stats section numbers: count-up could be added via JS later; for now subtle transition */
.stats-section .stat-item {
  transition: transform 0.3s ease;
}

.stats-section .stat-item:hover {
  transform: scale(1.05);
}

/* Footer links */
.footer ul li a {
  transition: color 0.2s ease;
}

/* Section titles */
.section-title,
.blog-title,
.team-title {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.animate-on-scroll.in-view .section-title,
.animate-on-scroll.in-view .blog-title,
.animate-on-scroll.in-view .team-title {
  opacity: 1;
  transform: translateY(0);
}

/* ========== PIXEL PASS: PAGE-BY-PAGE RESPONSIVE REFINEMENT ========== */
@media (max-width: 1024px) {
  /* Shared */
  .page-hero {
    min-height: 320px;
  }

  .page-hero .container {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .page-hero .hero-title {
    line-height: 1.18;
  }

  /* Index */
  .hero-slider.hero {
    height: 460px;
  }

  .hero-slider .hero-text {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .practice-grid {
    gap: 20px;
  }

  .team-section .team-slider {
    margin-top: 8px;
  }

  .appointment-section .col-form,
  .appointment-section .col-img {
    border-radius: 10px;
  }

  /* About */
  .page-about .about-content-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .page-about .excellence-row {
    gap: 36px;
  }

  .page-about .excellence-text p {
    line-height: 1.8;
  }

  .page-about .stats-section-about {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  /* Practice area */
  .service-content .container {
    max-width: 920px;
  }

  .service-content .body p {
    margin-bottom: 14px;
  }

  /* Core team */
  .profile-section {
    padding: 72px 24px;
  }

  .profile-section .flex {
    max-width: 1020px;
    margin: 0 auto;
    gap: 36px;
  }

  .query-section.query-core-team {
    margin-top: 8px;
  }

  /* Careers */
  .careers-main {
    padding-bottom: 56px;
  }

  .careers-jobs-wrap {
    padding-top: 48px;
  }

  .careers-job-desc {
    line-height: 1.7;
  }
}

@media (max-width: 768px) {
  /* Shared */
  .page-hero {
    min-height: 280px;
  }

  .page-hero .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .page-hero .hero-breadcrumb {
    margin-top: 6px;
  }

  /* Index */
  .hero-slider.hero {
    height: 420px;
  }

  .hero-slider .hero-content {
    max-width: 560px;
  }

  .hero-slider.hero h1 {
    margin-bottom: 14px;
  }

  .hero-slider .hero-text {
    margin-bottom: 20px;
  }

  .stats-section .section-title br {
    display: none;
  }

  .practice-card {
    padding: 24px 18px;
  }

  .blog-card {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  /* About */
  .page-about .excellence-row {
    gap: 28px;
    margin-bottom: 40px;
  }

  .page-about .download-btn {
    width: 100%;
    text-align: center;
  }

  .page-about .stats-section-about {
    padding: 64px 20px;
  }

  /* Practice area */
  .service-content {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .service-content .highlight-quote {
    margin-bottom: 18px;
  }

  .service-content .btn-primary {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }

  /* Core team */
  .profile-section {
    padding: 56px 20px;
  }

  .profile-section .col-text h1 {
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .profile-section .linkedin {
    margin-bottom: 12px;
  }

  .query-section.query-core-team .container {
    padding: 30px 20px;
    border-radius: 10px;
  }

  /* Careers */
  .careers-jobs-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .careers-section-head {
    margin-bottom: 28px;
  }

  .careers-job-title {
    font-size: 20px;
  }

  .careers-job-meta {
    gap: 12px;
  }

  .careers-cta h3 {
    font-size: 24px;
  }

  /* Blog details */
  .blog-details {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .blog-details-body p {
    line-height: 1.75;
  }

  .blog-details-aside {
    padding: 18px;
  }
}

@media (max-width: 375px) {
  /* Shared */
  .page-hero {
    min-height: 250px;
  }

  .page-hero .hero-title {
    font-size: 26px;
  }

  .page-hero .hero-sub {
    font-size: 14px;
  }

  .page-hero .hero-breadcrumb {
    font-size: 12px;
  }

  /* Index */
  .hero-slider.hero {
    height: 360px;
  }

  .hero-slider .hero-content {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-slider.hero h1 {
    font-size: 42px;
  }

  .hero-slider .hero-text {
    font-size: 13px;
    line-height: 1.5;
  }

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

  .stats-section,
  .practice-section,
  .team-section,
  .blog-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* About */
  .page-about .about-content-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-about .excellence-text h2 {
    font-size: 24px;
  }

  .page-about .stats-section-about .stat-item {
    padding: 16px 12px;
  }

  /* Practice area */
  .service-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-content .highlight-quote {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Core team */
  .profile-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .profile-section .col-text h1 {
    font-size: 24px;
  }

  .query-section.query-core-team h2 {
    font-size: 24px;
  }

  /* Careers */
  .careers-jobs-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }

  .careers-job-card {
    padding: 20px 16px;
  }

  .careers-job-title {
    font-size: 18px;
  }

  .careers-job-desc {
    font-size: 14px;
  }

  .careers-cta {
    margin-left: 12px;
    margin-right: 12px;
    padding: 28px 18px;
  }

  .careers-cta h3 {
    font-size: 21px;
  }

  /* Blog details */
  .blog-details {
    padding-left: 16px;
    padding-right: 16px;
  }

  .blog-details-cover img {
    height: 220px;
  }
}
