/* =====================================================
   KUMAR LEGALS — MAIN STYLESHEET
   Theme: Navy & Gold | Classic, Trustworthy
   ===================================================== */

:root {
  /* #94cf73 */
  --navy: #378b06;
  --navy-dark: #599e31;
  /* --navy: #0A2342; */
  /* --navy-dark: #061730; */
  --navy-light: #133a66;
  --gold: #C9A24B;
  --gold-light: #E2C172;
  --gold-tint: #FBF3DE;
  --ivory: #F8F6F0;
  --charcoal: #1C1C1C;
  --slate: #5C6B7A;
  --white: #FFFFFF;
  --border-soft: rgba(10, 35, 66, 0.1);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 4px;
  --shadow-soft: 0 8px 30px rgba(10, 35, 66, 0.08);
  --shadow-card: 0 4px 20px rgba(10, 35, 66, 0.06);
  --transition: all 0.3s ease;
}

* { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--ivory);
  line-height: 1.7;
  padding-top: 0;
  overflow-x: hidden;
}

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

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-ivory { background-color: var(--ivory) !important; }
.bg-gold-tint { background-color: var(--gold-tint) !important; }

/* =====================================================
   EYEBROW / SECTION LABEL (signature device)
   A thin gold rule + small caps label used to mark every
   section — echoes a wax-seal ribbon, ties back to the
   "seal" motif used in the topbar mark.
   ===================================================== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--slate);
  max-width: 680px;
}
.section-pad { padding: 80px 0; }
@media (max-width: 767.98px) {
  .section-pad { padding: 50px 0; }
}

/* =====================================================
   TOPBAR (above main nav) — contact + social
   Hidden on mobile per requirement
   ===================================================== */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--gold-light); }
.topbar .topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 24px;
}
.topbar .topbar-item i { color: var(--gold); }
.topbar .topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  margin-left: 8px;
  color: var(--white);
}
.topbar .topbar-social a:hover {
  background: var(--gold);
  color: var(--navy-dark);
}
@media (max-width: 991.98px) {
  .topbar { display: none; }
}

/* =====================================================
   MAIN NAVIGATION
   ===================================================== */
.main-nav {
  background: var(--white);
  padding: 14px 0;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-text .brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
}
.brand-text .brand-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links .nav-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 16px !important;
  position: relative;
}
.nav-links .nav-link::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after {
  transform: scaleX(1);
}
.nav-links .nav-link.active { color: var(--gold); }

.btn-consult {
  background: var(--navy);
  color: var(--white) !important;
  font-weight: 600;
  padding: 10px 24px !important;
  border-radius: var(--radius);
  border: 1px solid var(--navy);
}
.btn-consult:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy) !important;
}

/* Hamburger (custom, replaces default bootstrap toggler look) */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--navy);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}
.hamburger-btn span {
  width: 20px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
  transition: var(--transition);
}
.hamburger-btn.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.is-active span:nth-child(2) { opacity: 0; }
.hamburger-btn.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991.98px) {
  .nav-links-desktop, .btn-consult-desktop { display: none !important; }
  .hamburger-btn { display: flex; }
}

/* =====================================================
   SIDEBAR (mobile slide-in menu, triggered by hamburger)
   ===================================================== */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 35, 66, 0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.sidebar-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: var(--navy);
  z-index: 1050;
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0,0,0,0.3);
}
.mobile-sidebar.is-open { right: 0; }

.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-sidebar-header .brand-text .brand-name { color: var(--white); }
.sidebar-close {
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--gold);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
}
.sidebar-close:hover { background: var(--gold); color: var(--navy); }

.mobile-sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 10px 0;
}
.mobile-sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  border-left: 3px solid transparent;
}
.mobile-sidebar-nav a i { color: var(--gold); width: 20px; }
.mobile-sidebar-nav a:hover,
.mobile-sidebar-nav a.active {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--gold);
  color: var(--white);
}

.mobile-sidebar-footer {
  padding: 20px 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-sidebar-footer .contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.mobile-sidebar-footer .contact-line i { color: var(--gold); }
.mobile-sidebar-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.mobile-sidebar-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-sidebar-social a:hover { background: var(--gold); color: var(--navy); }

body.sidebar-locked { overflow: hidden; }

/* =====================================================
   PAGE BANNER (inner pages: bg image + centered title)
   ===================================================== */
.page-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  padding: 110px 0 80px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,35,66,0.82), rgba(10,35,66,0.9));
}
.page-banner-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.page-banner-content .section-eyebrow { color: var(--gold-light); justify-content: center; }
.page-banner-content .section-eyebrow::before { display: none; }
.page-banner-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}
.page-banner-content .breadcrumb-trail {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
}
.page-banner-content .breadcrumb-trail a { color: rgba(255,255,255,0.7); }
.page-banner-content .breadcrumb-trail a:hover { color: var(--gold); }
.page-banner-content .breadcrumb-trail .sep { margin: 0 8px; color: var(--gold); }

/* =====================================================
   HOME — HERO / BANNER SLIDER
   ===================================================== */
.hero-slider { position: relative; }
.hero-slide {
  height: 88vh;
  min-height: 560px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,35,66,0.88) 0%, rgba(10,35,66,0.55) 55%, rgba(10,35,66,0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 640px;
}
.hero-content .section-eyebrow { color: var(--gold-light); }
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  margin-bottom: 18px;
}
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-gold:hover { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-light-custom {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-outline-light-custom:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.hero-slider .carousel-indicators { bottom: 30px; }
.hero-slider .carousel-indicators [data-bs-target] {
  width: 10px; height: 10px; border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  border: none;
  margin: 0 5px;
}
.hero-slider .carousel-indicators .active { background-color: var(--gold); }
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next { width: 6%; opacity: 0.7; }
.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover { opacity: 1; }

/* =====================================================
   ABOUT SECTION (home snippet)
   ===================================================== */
.about-image-wrap {
  position: relative;
  padding: 24px 24px 24px 0;
}
.about-image-wrap img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 22px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--gold);
}
.about-badge .num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
}
.about-badge .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
}
.about-list { list-style: none; padding: 0; margin: 24px 0; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.about-list li i {
  color: var(--gold);
  background: var(--gold-tint);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 2px;
}

/* =====================================================
   PRACTICE AREA CARDS
   ===================================================== */
.practice-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold);
}
.practice-card .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.practice-card:hover .icon-box { background: var(--navy); color: var(--gold); }
.practice-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.practice-card p { color: var(--slate); font-size: 0.95rem; margin-bottom: 16px; }
.practice-card .read-more {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.practice-card .read-more:hover { color: var(--gold); gap: 10px; }

/* Full practice area detail block (practice-area.php) */
.practice-detail {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-soft);
}
.practice-detail:last-of-type { border-bottom: none; }
.practice-detail .icon-box-lg {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 22px;
}
.practice-detail img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-card {
  text-align: center;
  padding: 36px 24px;
}
.why-card .icon-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--navy);
  font-size: 1.8rem;
  transition: var(--transition);
}
.why-card:hover .icon-circle { background: var(--gold); color: var(--navy); }
.why-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { color: var(--slate); font-size: 0.92rem; }

/* =====================================================
   STATS / SUCCESS STATISTICS
   ===================================================== */
.stats-band {
  background: var(--navy);
  background-image: radial-gradient(circle at 20% 30%, rgba(201,162,75,0.08) 0%, transparent 50%);
  padding: 64px 0;
}
.stat-item { text-align: center; color: var(--white); }
.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--gold);
  font-weight: 700;
  display: block;
  line-height: 1;
}
.stat-item .stat-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
}
.stat-item::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin: 14px auto 0;
}

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq-accordion .accordion-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius) !important;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  padding: 18px 22px;
  background: var(--white);
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--navy);
  color: var(--white);
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(83%) sepia(28%) saturate(575%) hue-rotate(0deg) brightness(105%);
}
.faq-accordion .accordion-button:focus { box-shadow: none; border-color: var(--gold); }
.faq-accordion .accordion-body { color: var(--slate); padding: 20px 22px; background: var(--white); }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  position: relative;
}
.testimonial-card .quote-icon {
  color: var(--gold-tint);
  font-size: 2.6rem;
  position: absolute;
  top: 18px;
  right: 22px;
  line-height: 1;
}
.testimonial-card .stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; }
.testimonial-card .review-text { color: var(--charcoal); margin-bottom: 22px; font-style: italic; min-height: 96px; }
.testimonial-card .client-row { display: flex; align-items: center; gap: 14px; }
.client-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gold-tint);
}
.client-avatar-fallback {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.client-info .client-name { font-weight: 700; color: var(--navy); font-size: 0.98rem; }
.client-info .client-company { color: var(--slate); font-size: 0.82rem; }

/* =====================================================
   CTA BAND
   ===================================================== */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  margin: 0 0 0;
}
.cta-band::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border: 30px solid rgba(201,162,75,0.08);
  border-radius: 50%;
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 0; }
@media (max-width: 767.98px) {
  .cta-band { padding: 40px 26px; text-align: center; }
  .cta-band .cta-btn-wrap { margin-top: 20px; justify-content: center; display: flex; }
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 70px;
}
.site-footer h5 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 22px;
  position: relative;
}
.footer-brand .brand-name { color: var(--white); font-size: 1.4rem; }
.footer-brand .brand-tagline { color: var(--gold); }
.footer-about-text { font-size: 0.9rem; margin: 18px 0; color: rgba(255,255,255,0.6); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; }
.footer-social { display: flex; gap: 10px; margin-top: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding: 22px 0;
  font-size: 0.85rem;
  text-align: center;
}
.footer-bottom a { color: var(--gold-light); }

/* =====================================================
   GENERIC: breadcrumb spacer, forms, blog, pagination
   ===================================================== */
.form-control, .form-select {
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  padding: 12px 16px;
  font-size: 0.95rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.15);
}
.form-label { font-weight: 600; color: var(--navy); font-size: 0.9rem; margin-bottom: 6px; }

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  height: 100%;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card .blog-card-body { padding: 24px; }
.blog-card .blog-cat-tag {
  display: inline-block;
  background: var(--gold-tint);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card .blog-meta { font-size: 0.82rem; color: var(--slate); margin-top: 16px; display: flex; gap: 16px; }
.blog-card .blog-meta i { color: var(--gold); margin-right: 4px; }

.category-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; justify-content: center; }
.category-filter .btn {
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid var(--border-soft);
  color: var(--navy);
  background: var(--white);
}
.category-filter .btn.active,
.category-filter .btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.pagination .page-link { color: var(--navy); border-color: var(--border-soft); }
.pagination .page-item.active .page-link { background: var(--navy); border-color: var(--navy); }
.pagination .page-link:hover { color: var(--gold); }

/* Case detail page */
.case-detail-content h2, .case-detail-content h3 { margin-top: 30px; }
.case-detail-content p { color: var(--charcoal); margin-bottom: 18px; }
.related-blog-list .related-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}
.related-blog-list .related-item img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.related-blog-list .related-item h6 { font-size: 0.92rem; margin-bottom: 6px; }
.related-blog-list .related-item .date { font-size: 0.78rem; color: var(--slate); }
.sticky-sidebar { position: sticky; top: 100px; }

/* Contact page */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px 32px;
  color: var(--white);
  height: 100%;
}
.contact-info-card .info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info-card .info-item .icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(201,162,75,0.15);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-card .info-item h6 { color: var(--white); margin-bottom: 4px; font-size: 0.95rem; }
.contact-info-card .info-item p, .contact-info-card .info-item a { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }
.contact-info-card .info-item a:hover { color: var(--gold); }
.social-row-list { display: flex; gap: 12px; margin-top: 10px; }

.map-section iframe { width: 100%; height: 420px; border: 0; display: block; }

/* Policy pages */
.policy-content h2 { margin-top: 36px; font-size: 1.4rem; }
.policy-content p, .policy-content li { color: var(--charcoal); }
.policy-content ul { padding-left: 20px; }
.policy-updated { color: var(--slate); font-size: 0.88rem; margin-bottom: 30px; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--gold);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); color: var(--navy); }

/* Floating call button (mobile) */
.floating-call-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-soft);
  z-index: 999;
}
@media (max-width: 767.98px) {
  .floating-call-btn { display: flex; }
}

/* =====================================================
   DISCLAIMER MODAL (BCI Compliance — Home page, first visit)
   ===================================================== */
.disclaimer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 23, 48, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.disclaimer-overlay.is-visible {
  display: flex;
}
body.disclaimer-locked {
  overflow: hidden;
}
.disclaimer-box {
  background: var(--white);
  border-radius: 8px;
  max-width: 620px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  border-top: 4px solid var(--gold);
  animation: disclaimerPop 0.35s ease;
}
@keyframes disclaimerPop {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 32px 18px;
  border-bottom: 1px solid var(--border-soft);
}
.disclaimer-header .seal {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.disclaimer-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--navy);
}
.disclaimer-header .sub {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
  display: block;
}
.disclaimer-body {
  padding: 22px 32px;
  color: var(--charcoal);
  font-size: 0.94rem;
  line-height: 1.75;
}
.disclaimer-body .bci-note {
  background: var(--gold-tint);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 600;
}
.disclaimer-body p { margin-bottom: 14px; }
.disclaimer-body p:last-child { margin-bottom: 0; }
.disclaimer-footer {
  padding: 20px 32px 28px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: flex-end;
}
.disclaimer-footer .btn-gold {
  padding: 12px 36px;
}
@media (max-width: 575.98px) {
  .disclaimer-header, .disclaimer-body, .disclaimer-footer { padding-left: 22px; padding-right: 22px; }
  .disclaimer-footer { justify-content: stretch; }
  .disclaimer-footer .btn-gold { width: 100%; justify-content: center; }
}

[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
