/* =========================================================
   Iqbal Law Associates - Premium Black & Gold Website
   HTML + Bootstrap + Custom CSS
   ========================================================= */
:root {
  --bg-main: #050505;
  --bg-section: #090909;
  --card-bg: #0d0d0d;
  --card-bg-2: #111111;
  --gold: #d4a437;
  --gold-light: #e8bf58;
  --gold-dark: #8c6720;
  --text-main: #f5f1e8;
  --text-body: #cfcfcf;
  --text-muted: #999999;
  --border-gold: rgba(212, 164, 55, 0.48);
  --shadow-black: 0 22px 60px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 18px 45px rgba(212, 164, 55, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-main);
  color: var(--text-body);
  font-family: "Inter", sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

.custom-container { max-width: 1540px; padding-left: 42px; padding-right: 42px; }
.section { padding: 105px 0; position: relative; overflow: hidden; }
.section-sm { padding: 70px 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Cinzel", serif;
  color: var(--text-main);
  line-height: 1.18;
}

.section-heading { margin-bottom: 55px; }
.section-heading h2, .about-section h2, .cta-box h2 { font-size: clamp(36px, 4vw, 58px); }
.section-kicker {
  display: inline-block;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.with-lines::before, .with-lines::after {
  content: "";
  display: inline-block;
  width: 55px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 14px;
}
.left-lines::before { display: none; }
.ornament-divider {
  width: 260px;
  max-width: 70%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0 28px;
  position: relative;
}
.ornament-divider.mx-auto { background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.ornament-divider::after {
  content: "";
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 1px solid #fff2b7;
  position: absolute;
  top: -5px;
  left: 52%;
  transform: rotate(45deg);
}

/* Header */
.main-header {
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid rgba(212, 164, 55, 0.25);
  backdrop-filter: blur(14px);
  transition: 0.3s ease;
}
.main-header.scrolled { box-shadow: 0 10px 40px rgba(0,0,0,0.6); }
.navbar { min-height: 92px; padding: 0; }
.brand-logo { width: 330px; height: 100px; object-fit: contain; object-position: left center; }
.nav-link {
  color: var(--text-main) !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 34px 0 !important;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 24px;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.nav-link:hover::after, .nav-link.active::after { width: 30px; }
.custom-toggler { border: 1px solid var(--gold); padding: 8px 10px; box-shadow: none !important; }
.custom-toggler span { display: block; width: 24px; height: 2px; background: var(--gold); margin: 5px 0; }

/* Buttons */
.btn-gold, .btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 7px;
  font-weight: 800;
  transition: all .3s ease;
  letter-spacing: .2px;
}
.btn-gold {
  background: linear-gradient(135deg, #ffe08a 0%, var(--gold-light) 42%, var(--gold) 100%);
  color: #0a0a0a;
  border: 1px solid #f3cf72;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 10px 25px rgba(212,164,55,.18);
}
.btn-gold:hover { color: #000; transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.btn-outline-gold { background: rgba(0,0,0,.38); color: var(--gold); border: 1px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #000; transform: translateY(-4px); }
.nav-btn { min-height: 48px; padding: 12px 18px; white-space: nowrap; }

/* ==============================
   Hero Section Updated
   ============================== */

.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.86) 36%,
      rgba(0, 0, 0, 0.50) 65%,
      rgba(0, 0, 0, 0.30) 100%
    ),
    url('../images/hero-law-office.png') center center / cover no-repeat;

  transform: scale(1);
  transform-origin: center center;
  animation: slowZoom 20s ease-in-out infinite;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }
}

/* Container */
.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 92px;
}

.hero-content {
  max-width: 780px !important;
  padding-top: 45px;
  padding-bottom: 130px;
}

/* Iqbal Law Associates small title */
.hero-content .section-kicker,
.hero-law-title {
  display: inline-block !important;
  font-family: "Cinzel", serif !important;
  font-size: 30px !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
  letter-spacing: 3px !important;
  color: #d4a437 !important;
  text-transform: uppercase !important;
  text-shadow: 0 6px 24px rgba(212, 164, 55, 0.28) !important;
  margin-bottom: 18px !important;
}

/* Hero main heading */
.hero-content h1 {
  font-size: clamp(25px, 5.6vw, 60px) !important;
  line-height: 1.02 !important;
  letter-spacing: -1px !important;
  margin-bottom: 14px !important;
  color: #ffffff !important;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.65) !important;
}

/* Divider */
.hero-content .ornament-divider {
  margin-top: 22px !important;
  margin-bottom: 24px !important;
}

/* Paragraph */
.hero-content p {
  font-size: 20px !important;
  line-height: 1.75 !important;
  max-width: 690px !important;
  margin-bottom: 34px !important;
  color: #e2e2e2 !important;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-actions .btn-gold,
.hero-actions .btn-outline-gold {
  min-height: 52px;
  padding: 14px 26px;
  font-size: 14px;
}

/* Features bottom bar */
.hero-features {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;

  background: rgba(0, 0, 0, 0.74);
  border-top: 1px solid rgba(212, 164, 55, 0.25);
  backdrop-filter: blur(10px);
}

.feature-item {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 28px;

  border-right: 1px solid rgba(212, 164, 55, 0.22);
  color: var(--text-main);
  font-size: 15px;
  font-weight: 800;
}

.feature-item:last-child {
  border-right: none;
}

.feature-item i {
  color: var(--gold);
  font-size: 26px;
  min-width: 28px;
}

.feature-item span {
  color: #f5f1e8;
  line-height: 1.4;
}

/* Tablet */
@media (max-width: 991px) {
  .hero-section {
    display: block;
    min-height: auto;
  }

  .hero-container {
    padding-top: 88px;
  }

  .hero-content {
    max-width: 100% !important;
    padding-top: 75px;
    padding-bottom: 70px;
  }

  .hero-content .section-kicker,
  .hero-law-title {
    font-size: 22px !important;
    letter-spacing: 2px !important;
  }

  .hero-content h1 {
    font-size: 48px !important;
  }

  .hero-content p {
    font-size: 16px !important;
    max-width: 100% !important;
  }

  .hero-features {
    position: relative;
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(212, 164, 55, 0.16);
  }
}

/* Mobile */
@media (max-width: 575px) {
  .hero-container {
    padding-top: 78px;
  }

  .hero-content {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .hero-content .section-kicker,
  .hero-law-title {
    font-size: 17px !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 14px !important;
  }

  .hero-content h1 {
    font-size: 38px !important;
    line-height: 1.08 !important;
  }

  .hero-content p {
    font-size: 14.5px !important;
    line-height: 1.65 !important;
    margin-bottom: 26px !important;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn-gold,
  .hero-actions .btn-outline-gold {
    width: 100%;
    min-height: 48px;
    padding: 12px 18px;
    font-size: 13px;
  }

  .feature-item {
    min-height: 72px;
    padding: 16px 18px;
    font-size: 14px;
  }

  .feature-item i {
    font-size: 22px;
  }
}

/* Premium Cards */
.premium-card {
  background: linear-gradient(180deg, rgba(18,18,18,.98), rgba(4,4,4,.98));
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  box-shadow: var(--shadow-black);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}
.premium-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at top, rgba(212,164,55,.12), transparent 36%);
  opacity: 0;
  transition: .35s ease;
  pointer-events: none;
}
.premium-card:hover { transform: translateY(-9px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.premium-card:hover::before { opacity: 1; }

/* Login Portal icon golden */
.login-portal-link i {
  color: #d4a437 !important;
  margin-right: 6px !important;
}

.login-portal-link {
  color: #ffffff !important;
}

.login-portal-link:hover {
  color: #d4a437 !important;
}

.login-portal-link:hover i {
  color: #e1bc5a !important;
}
/* Services */
.services-section { background: #050505; }
.service-card, .why-card { min-height: 285px; padding: 34px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
.service-card i, .why-card i { color: var(--gold); font-size: 48px; margin-bottom: 22px; }
.service-card h3, .why-card h3 { font-size: 22px; margin-bottom: 15px; }
.service-card p, .why-card p { color: var(--text-body); font-size: 15px; margin-bottom: 0; }

/* About */
.about-section { background: linear-gradient(90deg, #050505 0%, #080808 100%); }
.about-section p { font-size: 17px; max-width: 700px; color: var(--text-body); }
.about-image-wrap { border: 1px solid var(--border-gold); border-radius: 14px; padding: 0; overflow: hidden; box-shadow: var(--shadow-black); }
.about-image-wrap img { width: 100%; height: 610px; object-fit: cover; }
.stats-panel {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  overflow: hidden;
  max-width: 720px;
  background: rgba(0,0,0,.32);
}
.stats-panel div { padding: 24px 18px; text-align: center; border-right: 1px solid rgba(212,164,55,.25); }
.stats-panel div:last-child { border-right: none; }
.stats-panel i { color: var(--gold); font-size: 32px; margin-bottom: 10px; }
.stats-panel strong { display: block; color: var(--gold-light); font-family: "Cinzel", serif; font-size: 30px; line-height: 1.1; }
.stats-panel span { display: block; color: var(--text-main); font-size: 13px; }

/* Why */
.why-card { min-height: 330px; justify-content: center; }
.why-card h3 { font-size: 25px; }

/* Reviews */
.review-card { padding: 36px 34px; min-height: 365px; }
.quote-stars { display: flex; align-items: center; justify-content: space-between; color: var(--gold-light); font-size: 28px; margin-bottom: 28px; }
.quote-stars span { letter-spacing: 4px; font-size: 22px; }
.review-card p { font-size: 17px; color: var(--text-main); min-height: 118px; }
.review-author { display: flex; align-items: center; gap: 16px; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(212,164,55,.28); }
.avatar {
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid var(--gold);
  display: grid; place-items: center;
  color: #000; font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.review-author h4 { font-size: 20px; margin-bottom: 3px; }
.review-author small { color: var(--gold); }

/* CTA */
.cta-box {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 36px;
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  background: radial-gradient(circle at 12% 50%, rgba(212,164,55,.15), transparent 26%), linear-gradient(135deg, #101010, #030303);
  padding: 56px;
  box-shadow: var(--shadow-black);
}
.cta-icon {
  width: 140px; height: 140px; border-radius: 50%; border: 1px solid rgba(212,164,55,.32);
  display: grid; place-items: center;
  color: var(--gold); font-size: 74px;
}
.cta-content p { margin-bottom: 0; font-size: 18px; }
.cta-btn { white-space: nowrap; }

/* Footer */
.site-footer { background: #020202; border-top: 1px solid rgba(212,164,55,.4); padding-top: 86px; }
.footer-logo { width: 330px; height: 112px; object-fit: contain; object-position: left center; margin-bottom: 18px; }
.footer-main p { color: var(--text-body); }
.footer-main h4 { color: var(--gold); font-size: 20px; margin-bottom: 26px; position: relative; }
.footer-main h4::after { content:""; display:block; width:70px; height:1px; background: var(--gold); margin-top: 10px; }
.footer-main a { display: block; color: var(--text-body); margin-bottom: 13px; transition: .3s; }
.footer-main a::before { content: "›"; color: var(--gold); margin-right: 8px; }
.footer-main a:hover { color: var(--gold); padding-left: 6px; }
.footer-main i { color: var(--gold); margin-right: 10px; }
.footer-stats { display: flex; gap: 18px; flex-wrap: wrap; margin: 24px 0; }
.footer-stats span { border-right: 1px solid rgba(212,164,55,.28); padding-right: 18px; color: var(--text-main); }
.footer-stats strong { color: var(--gold); font-family: "Cinzel", serif; font-size: 22px; }
.social-links { display: flex; gap: 13px; margin-top: 20px; }
.social-links a { width: 42px; height: 42px; border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center; color: var(--gold); margin: 0; }
.social-links a::before { display: none; }
.social-links a:hover { background: var(--gold); color: #000; padding: 0; }
.social-links a:hover i { color: #000; }
.footer-bottom { border-top: 1px solid rgba(212,164,55,.25); margin-top: 60px; padding: 25px 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--text-muted); }
.footer-bottom i { color: var(--gold); }

/* Reveal Animation */
.reveal-up, .reveal-left, .reveal-right { opacity: 0; transition: 0.85s ease; }
.reveal-up { transform: translateY(35px); }
.reveal-left { transform: translateX(-35px); }
.reveal-right { transform: translateX(35px); }
.reveal-up.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translate(0); }

/* Responsive */
@media (max-width: 1199px) {
  .brand-logo { width: 265px; }
  .custom-container { padding-left: 28px; padding-right: 28px; }
  .nav-link { padding: 15px 0 !important; }
  .navbar-collapse { background: rgba(0,0,0,.98); padding: 18px 0 28px; border-top: 1px solid rgba(212,164,55,.2); }
  .hero-content { padding-bottom: 160px; }
  .cta-box { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 991px) {
  .section { padding: 80px 0; }
  .hero-content { max-width: 100%; padding-top: 80px; }
  .hero-features { position: relative; margin-top: -1px; }
  .hero-section { display: block; min-height: auto; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(212,164,55,.16); }
  .about-image-wrap img { height: auto; }
  .stats-panel { grid-template-columns: 1fr; }
  .stats-panel div { border-right: none; border-bottom: 1px solid rgba(212,164,55,.25); }
  .stats-panel div:last-child { border-bottom: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 575px) {
  .custom-container { padding-left: 18px; padding-right: 18px; }
  .brand-logo { width: 220px; height: 60px; }
  .navbar { min-height: 78px; }
  .hero-container { padding-top: 78px; }
  .hero-content h1 { font-size: 42px; }
  .hero-content p { font-size: 16px; }
  .hero-actions .btn-gold, .hero-actions .btn-outline-gold { width: 100%; }
  .with-lines::before, .with-lines::after { width: 26px; margin: 0 8px; }
  .advocate-card img { height: 300px; }
  .service-card, .why-card { min-height: auto; }
  .cta-box { padding: 32px 22px; }
  .cta-icon { width: 110px; height: 110px; font-size: 55px; }
  .footer-logo { width: 250px; height: 88px; }
}
/* ==============================
   FORCE HEADER FIX
   Logo Zoom + Nav Font + Border Button
   ============================== */

/* Header height same */
.site-header,
.custom-navbar,
.navbar {
  height: 90px !important;
  min-height: 90px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  overflow: visible !important;
}

.header-wrapper,
.navbar .container,
.custom-navbar .container {
  height: 90px !important;
  min-height: 90px !important;
  display: flex !important;
  align-items: center !important;
}

/* LOGO IMAGE BIG / READABLE */
.site-header .logo img,
.custom-navbar .navbar-brand img,
.navbar-brand img,
.header-wrapper .logo img {
  width: 185px !important;
  height: auto !important;
  max-height: 86px !important;
  object-fit: contain !important;
  transform: scale(1.35) !important;
  transform-origin: left center !important;
}

/* Agar logo image ke sath text alag hai */
.site-header .logo h3,
.navbar-brand .brand-title {
  font-size: 22px !important;
  line-height: 1 !important;
}

.site-header .logo span,
.navbar-brand .brand-subtitle {
  font-size: 10px !important;
  letter-spacing: 2px !important;
}

/* MENU / TAB FONT IMPROVE */
.nav-menu a,
.custom-navbar .navbar-nav .nav-link,
.navbar .navbar-nav .nav-link {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;
  color: #f5f1e8 !important;
}

.nav-menu a:hover,
.nav-menu a.active,
.custom-navbar .navbar-nav .nav-link:hover,
.custom-navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #d4a437 !important;
}

/* BOOK CONSULTATION BUTTON - FILLED SE BORDER STYLE */
.site-header .btn-primary,
.site-header .btn-gold,
.custom-navbar .btn-primary,
.custom-navbar .btn-gold,
.navbar .btn-primary,
.navbar .btn-gold,
.header-wrapper .btn-primary {
  background: transparent !important;
  background-image: none !important;
  color: #d4a437 !important;
  border: 2px solid #d4a437 !important;
  box-shadow: none !important;
  padding: 13px 24px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
}

/* Button icon color */
.site-header .btn-primary i,
.site-header .btn-gold i,
.custom-navbar .btn-primary i,
.custom-navbar .btn-gold i,
.navbar .btn-primary i,
.navbar .btn-gold i {
  color: #d4a437 !important;
}

/* Hover par fill ho */
.site-header .btn-primary:hover,
.site-header .btn-gold:hover,
.custom-navbar .btn-primary:hover,
.custom-navbar .btn-gold:hover,
.navbar .btn-primary:hover,
.navbar .btn-gold:hover {
  background: linear-gradient(135deg, #e1bc5a, #d4a437) !important;
  color: #000 !important;
  border-color: #d4a437 !important;
}

.site-header .btn-primary:hover i,
.site-header .btn-gold:hover i,
.custom-navbar .btn-primary:hover i,
.custom-navbar .btn-gold:hover i,
.navbar .btn-primary:hover i,
.navbar .btn-gold:hover i {
  color: #000 !important;
}

/* ==============================
   Advocates Section Final CSS
   Based on Existing Theme
   ============================== */

.advocates-section {
  background: radial-gradient(circle at center top, #111 0%, #050505 44%, #020202 100%);
  padding: 90px 0 100px;
}

.advocates-section .section-heading {
  margin-bottom: 45px;
}

/* 5 cards one row, extra cards next row center */
.advocate-row {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
}

/* Card */
.advocate-card {
  flex: 0 0 calc((100% - 64px) / 5);
  max-width: calc((100% - 64px) / 5);
  min-width: 0;

  background: linear-gradient(180deg, rgba(18,18,18,.98), rgba(4,4,4,.98));
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  box-shadow: var(--shadow-black);
  overflow: hidden;

  display: flex;
  flex-direction: column;
  transition: 0.35s ease;
  position: relative;
}

.advocate-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(212,164,55,.12), transparent 36%);
  opacity: 0;
  transition: 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.advocate-card:hover {
  transform: translateY(-9px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.advocate-card:hover::before {
  opacity: 1;
}

/* Image */
.advocate-img-box {
  width: 100%;
  height: 210px;
  background: #080808;
  border-bottom: 1px solid rgba(212,164,55,.22);
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.advocate-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: 0.35s ease;
}

/* Image zoom very light only */
.advocate-card:hover .advocate-img-box img {
  transform: scale(1.03);
}

/* Content */
.advocate-info {
  padding: 18px 14px 16px;
  text-align: center;
  position: relative;
  z-index: 2;

  flex: 1;
  display: flex;
  flex-direction: column;
}

.advocate-info h3 {
  font-family: "Cinzel", serif;
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.advocate-info span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 9px;
}

.advocate-info p {
  color: var(--text-body);
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* Read More */
.read-more-link {
  margin-top: auto;
  margin-bottom: 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
}

.read-more-link i {
  font-size: 11px;
  transition: 0.3s ease;
}

.read-more-link:hover {
  color: var(--gold-light);
}

.read-more-link:hover i {
  transform: translateX(4px);
}

/* Icons */
.advocate-icons {
  border-top: 1px solid rgba(212,164,55,.18);
  padding-top: 12px;
  margin-top: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.advocate-icons a {
  color: var(--gold);
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.advocate-icons a:hover {
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* Responsive: 4 cards */
@media (max-width: 1200px) {
  .advocate-card {
    flex: 0 0 calc((100% - 48px) / 4);
    max-width: calc((100% - 48px) / 4);
  }

  .advocate-img-box {
    height: 220px;
  }
}

/* Responsive: 3 cards */
@media (max-width: 992px) {
  .advocate-card {
    flex: 0 0 calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
  }

  .advocate-img-box {
    height: 235px;
  }
}

/* Responsive: 2 cards */
@media (max-width: 768px) {
  .advocate-card {
    flex: 0 0 calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }

  .advocate-img-box {
    height: 260px;
  }
}

/* Mobile: 1 card */
@media (max-width: 575px) {
  .advocates-section {
    padding: 70px 0 80px;
  }

  .advocate-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .advocate-img-box {
    height: 300px;
  }

  .advocate-info {
    padding: 22px 18px 20px;
  }

  .advocate-info h3 {
    font-size: 20px;
  }

  .advocate-info span {
    font-size: 13px;
  }

  .advocate-info p {
    font-size: 14px;
  }
}
/* ==============================
   Advocate Reveal + Hover Animation
   ============================== */

#advocates .advocate-card {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease !important;
}

/* Reveal active hone ke baad */
#advocates .advocate-card.active {
  opacity: 1;
  transform: translateY(0);
}

/* Hover animation */
#advocates .advocate-card:hover {
  transform: translateY(-8px) !important;
  border-color: #d4a437 !important;
  box-shadow: 0 18px 45px rgba(212, 164, 55, 0.16) !important;
}

/* Image hover animation */
#advocates .advocate-card:hover .advocate-img-box img {
  transform: scale(1.04);
}
/* ==============================
   Clients Original Logos Section
   ============================== */

#clients.clients-section {
  background:
    radial-gradient(circle at center top, rgba(212, 164, 55, 0.08), transparent 35%),
    linear-gradient(180deg, #090909 0%, #050505 100%) !important;
  overflow: hidden !important;
}

#clients .section-subtitle {
  max-width: 820px !important;
  margin: 14px auto 0 !important;
  color: #cfcfcf !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.clients-logo-slider {
  max-width: 1180px !important;
  margin: 38px auto 0 !important;
  overflow: hidden !important;
  position: relative !important;
}

.clients-logo-slider::before,
.clients-logo-slider::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  width: 90px !important;
  height: 100% !important;
  z-index: 5 !important;
  pointer-events: none !important;
}

.clients-logo-slider::before {
  left: 0 !important;
  background: linear-gradient(90deg, #050505, transparent) !important;
}

.clients-logo-slider::after {
  right: 0 !important;
  background: linear-gradient(270deg, #050505, transparent) !important;
}

.clients-logo-track {
  display: flex !important;
  align-items: stretch !important;
  gap: 16px !important;
  width: max-content !important;
  animation: clientsLogoMove 32s linear infinite !important;
}

.clients-logo-track:hover {
  animation-play-state: paused !important;
}

.client-logo-item {
  width: 190px !important;
  min-width: 190px !important;
  min-height: 150px !important;

  padding: 18px 14px !important;
  border-radius: 16px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  text-align: center !important;

  background: linear-gradient(180deg, #101010, #060606) !important;
  border: 1px solid rgba(212, 164, 55, 0.25) !important;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.36) !important;

  transition: 0.3s ease !important;
}

.client-logo-item:hover {
  transform: translateY(-5px) !important;
  border-color: #d4a437 !important;
  box-shadow: 0 18px 45px rgba(212, 164, 55, 0.15) !important;
}

.client-logo-box {
  width: 92px !important;
  height: 70px !important;
  margin: 0 auto 14px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: #ffffff !important;
  border-radius: 12px !important;
  padding: 10px !important;
}

.client-logo-box img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

.client-logo-item h3 {
  font-size: 13px !important;
  line-height: 1.35 !important;
  margin: 0 !important;
  color: #f5f1e8 !important;
  font-weight: 700 !important;
}

@keyframes clientsLogoMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Tablet */
@media (max-width: 992px) {
  .client-logo-item {
    width: 175px !important;
    min-width: 175px !important;
  }

  .clients-logo-track {
    animation-duration: 26s !important;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .clients-logo-slider {
    margin-top: 28px !important;
  }

  .client-logo-item {
    width: 155px !important;
    min-width: 155px !important;
    min-height: 135px !important;
    padding: 15px 12px !important;
  }

  .client-logo-box {
    width: 78px !important;
    height: 60px !important;
    padding: 8px !important;
  }

  .client-logo-item h3 {
    font-size: 12px !important;
  }

  .clients-logo-slider::before,
  .clients-logo-slider::after {
    width: 40px !important;
  }
}
/* ==============================
   Firm Highlights Image Balanced Fix
   Bigger Slider Size + No Crop + Border Radius Fix
   ============================== */

#firm-highlights .firm-slider {
  max-width: 1400px !important;
  margin: 45px auto 0 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  border: 1px solid rgba(212, 164, 55, 0.35) !important;
  background: #050505 !important;
}

/* Bootstrap carousel item height fix */
#firmHighlightsSlider .carousel-item {
  height: 460px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
}

/* Main slide layout */
#firm-highlights .highlight-slide {
  display: grid !important;
  grid-template-columns: 60% 40% !important;
  height: 460px !important;
  min-height: 460px !important;
  max-height: 460px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
}

/* Image frame */
#firm-highlights .highlight-image {
  position: relative !important;
  width: 100% !important;
  height: 460px !important;
  overflow: hidden !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background-image: var(--slide-bg) !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;

  border-radius: 18px 0 0 18px !important;
}

/* Blurred same image background */
#firm-highlights .highlight-image::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;

  background-image: var(--slide-bg) !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;

  filter: blur(18px) brightness(0.72) !important;
  transform: scale(1.12) !important;
  z-index: 1 !important;
}

/* Soft dark overlay */
#firm-highlights .highlight-image::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.18) !important;
  z-index: 2 !important;
}

/* Front image complete show, no crop */
#firm-highlights .highlight-image img {
  position: relative !important;
  z-index: 3 !important;

  width: auto !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;

  object-fit: contain !important;
  object-position: var(--slide-position, center center) !important;

  display: block !important;
  border-radius: 0 !important;
  background: transparent !important;

  transform: scale(var(--slide-scale, 1)) !important;
  transform-origin: center center !important;
}

/* Right content */
#firm-highlights .highlight-content {
  height: 460px !important;
  max-height: 460px !important;
  padding: 38px 42px !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;

  background: linear-gradient(180deg, #101010, #050505) !important;
  border-radius: 0 18px 18px 0 !important;
}

#firm-highlights .highlight-content span {
  font-size: 11px !important;
  letter-spacing: 2.2px !important;
  margin-bottom: 10px !important;
  color: #d4a437 !important;
  text-transform: uppercase !important;
  font-weight: 800 !important;
}

#firm-highlights .highlight-content h3 {
  font-size: 32px !important;
  line-height: 1.2 !important;
  margin-bottom: 12px !important;
  color: #f5f1e8 !important;
}

#firm-highlights .highlight-content p {
  font-size: 15px !important;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
  color: #cfcfcf !important;
}

/* Slider arrows */
#firm-highlights .carousel-control-prev,
#firm-highlights .carousel-control-next {
  width: 55px !important;
  opacity: 1 !important;
}

#firm-highlights .firm-slider-arrow {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: rgba(0, 0, 0, 0.65) !important;
  border: 1px solid rgba(212, 164, 55, 0.45) !important;
  color: #d4a437 !important;

  font-size: 15px !important;
  transition: all 0.3s ease !important;
}

#firm-highlights .firm-slider-arrow:hover {
  background: #d4a437 !important;
  color: #050505 !important;
}

/* Indicators */
#firm-highlights .carousel-indicators {
  margin-bottom: 14px !important;
  z-index: 10 !important;
}

#firm-highlights .carousel-indicators button {
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  border: none !important;
  background-color: rgba(255, 255, 255, 0.45) !important;
  opacity: 1 !important;
  margin: 0 5px !important;
}

#firm-highlights .carousel-indicators button.active {
  width: 24px !important;
  border-radius: 20px !important;
  background-color: #d4a437 !important;
}

/* Tablet */
@media (max-width: 992px) {
  #firm-highlights .firm-slider {
    max-width: 92% !important;
    border-radius: 18px !important;
  }

  #firmHighlightsSlider .carousel-item {
    height: auto !important;
    border-radius: 18px !important;
  }

  #firm-highlights .highlight-slide {
    grid-template-columns: 1fr !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    border-radius: 18px !important;
  }

  #firm-highlights .highlight-image {
    height: 340px !important;
    border-radius: 18px 18px 0 0 !important;
  }

  #firm-highlights .highlight-content {
    height: auto !important;
    max-height: none !important;
    padding: 26px 26px 50px !important;
    border-radius: 0 0 18px 18px !important;
  }

  #firm-highlights .highlight-content h3 {
    font-size: 26px !important;
  }

  #firm-highlights .highlight-content p {
    font-size: 14px !important;
  }
}

/* Mobile */
@media (max-width: 576px) {
  #firm-highlights .firm-slider {
    max-width: 100% !important;
    margin-top: 28px !important;
    border-radius: 16px !important;
  }

  #firmHighlightsSlider .carousel-item {
    height: auto !important;
    border-radius: 16px !important;
  }

  #firm-highlights .highlight-slide {
    border-radius: 16px !important;
  }

  #firm-highlights .highlight-image {
    height: 270px !important;
    border-radius: 16px 16px 0 0 !important;
  }

  #firm-highlights .highlight-content {
    padding: 20px 18px 45px !important;
    border-radius: 0 0 16px 16px !important;
  }

  #firm-highlights .highlight-content span {
    font-size: 9.5px !important;
    letter-spacing: 1.8px !important;
    margin-bottom: 8px !important;
  }

  #firm-highlights .highlight-content h3 {
    font-size: 21px !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
  }

  #firm-highlights .highlight-content p {
    font-size: 12.5px !important;
    line-height: 1.6 !important;
  }

  #firm-highlights .carousel-control-prev,
  #firm-highlights .carousel-control-next {
    width: 42px !important;
  }

  #firm-highlights .firm-slider-arrow {
    width: 34px !important;
    height: 34px !important;
    font-size: 13px !important;
  }

  #firm-highlights .carousel-indicators {
    margin-bottom: 12px !important;
  }
}
/* ==============================
   Header Brand / Logo
   ============================== */

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.brand-mark {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* --- Desktop / Base Styles --- */
.brand-mark {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;    /* Text ko horizontal center karne ke liye */
  text-align: center;     /* Multi-line text center rahega */
  line-height: 1;
  min-width: 0;
  width: 100%;            
}

.brand-name {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #f5f1e8;
  line-height: 1.05;
  white-space: nowrap;
}

.brand-tagline {
  margin-top: 6px;
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #d4a437;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-slogan {
  margin-top: 6px;
  font-family: 'Cinzel', serif;
  font-size: 8.8px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #f5f1e8;
  line-height: 1.25;
  font-style: italic;
  white-space: nowrap;
  opacity: 0.95;
}

.brand-author {
  margin-top: 4px;
  font-family: 'Cinzel', serif;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 1.1px;
  color: #d4a437;
  line-height: 1.15;
  white-space: nowrap;
}

/* --- Laptop (max-width: 1300px) --- */
@media (max-width: 1300px) {
  .brand-mark {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-tagline {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .brand-slogan {
    font-size: 7.8px;
  }

  .brand-author {
    font-size: 7.6px;
  }
}

/* --- Tablet (max-width: 991px) --- */
@media (max-width: 991px) {
  .site-brand {
    display: flex;
    flex-direction: column; /* Logo aur Text ko ek dusre ke upar-neeche karne ke liye */
    align-items: center;    /* Logo aur Text dono ko screen ke center mein lane ke liye */
    justify-content: center;
    gap: 9px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .brand-name {
    font-size: 15px;
    letter-spacing: 0.7px;
  }

  .brand-tagline {
    font-size: 7px;
    letter-spacing: 1.2px;
    margin-top: 4px;
  }

  .brand-slogan {
    font-size: 6px;
    letter-spacing: 0.2px;
    margin-top: 4px;
    max-width: 250px;
    white-space: normal; /* Tablet par slogan wrap hokar khud ko center rakhega */
  }

  .brand-author {
    font-size: 6.2px;
    letter-spacing: 0.7px;
    margin-top: 3px;
  }
}

/* --- Mobile (max-width: 576px) --- */
@media (max-width: 576px) {
  /* Site brand ko center hi rakhenge mobile par bhi */
  .site-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-name {
    font-size: 12px;
    letter-spacing: 0.4px;
  }

  .brand-tagline {
    font-size: 5.7px;
    letter-spacing: 0.8px;
  }

  .brand-slogan {
    display: none; /* Mobile par slogan chip jayega */
  }

  .brand-author {
    display: none; /* Mobile par author chip jayega */
  }
}

.wa-premium-float {
    position: fixed;
    right: 0;
    bottom: 100px;
    background-color: #25D366;
    color: white;
    
    /* Image_89c954.png ka exact mini-shape */
    border-radius: 35px 0 0 35px;
    padding: 12px 16px 12px 22px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    
    /* Do alag animations: Ek floating aur ek background pulse effect */
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: wa-float 3s ease-in-out infinite, wa-pulse 2s infinite;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Icon Sizing aur Shaking Animation */
.wa-premium-float i {
    font-size: 26px;
    display: block;
    /* Icon thodi thodi der baad halka sa hilega client ka dhyan khinchne ke liye */
    animation: wa-wiggle 4s ease-in-out infinite;
}

/* 1. Smooth Floating Animation */
@keyframes wa-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 2. Professional Pulse Ripple Effect (Jo peeche se circles niklenge) */
@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), -2px 3px 10px rgba(0, 0, 0, 0.2);
    }
    70% {
        /* Left side par wave phelegi bilkul button ke shape ke mutabiq */
        box-shadow: -15px 0 20px 10px rgba(37, 211, 102, 0), -2px 3px 10px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: -15px 0 20px 10px rgba(37, 211, 102, 0), -2px 3px 10px rgba(0, 0, 0, 0.2);
    }
}

/* 3. Subtle Icon Wiggle (Halka sa lachakdar jhatka) */
@keyframes wa-wiggle {
    0%, 90%, 100% { transform: rotate(0deg); }
    92% { transform: rotate(-15deg); }
    94% { transform: rotate(13deg); }
    96% { transform: rotate(-10deg); }
    98% { transform: rotate(8deg); }
}

/* Hover State - Client jab mouse laye toh premium feel ho */
.wa-premium-float:hover {
    background-color: #1ebd59;
    padding-left: 28px; /* Smoothly thoda sa bahar aayega */
    transform: scale(1.05); /* Halka sa bada hoga */
    animation-play-state: paused; /* Hover par animation rukegi taake distraction na ho */
}


/* ==============================
   Founder Dedication Section
   Compact Premium Version
   ============================== */

.founder-dedication-section {
  background:
    radial-gradient(circle at top left, rgba(212, 164, 55, 0.09), transparent 34%),
    radial-gradient(circle at bottom right, rgba(212, 164, 55, 0.05), transparent 35%),
    #050505;
  position: relative;
  overflow: hidden;
}

.founder-dedication-box {
  display: grid;
  grid-template-columns: 315px 1fr;
  gap: 38px;
  align-items: center;
  padding: 34px 38px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(5, 5, 5, 0.98));
  border: 1px solid rgba(212, 164, 55, 0.42);
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
}

.founder-dedication-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(212, 164, 55, 0.10), transparent 42%);
  opacity: 0.7;
  pointer-events: none;
}

.founder-image-wrap,
.founder-content {
  position: relative;
  z-index: 2;
}

.founder-image-frame {
  width: 100%;
  max-width: 315px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(212, 164, 55, 0.62);
  background: #090909;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.52);
}

.founder-image-frame img {
  width: 100%;
  height: 355px;
  object-fit: cover;
  object-position: center top;
  border-radius: 11px;
  filter: contrast(1.02) saturate(0.95);
  display: block;
}

.founder-content h1 {
  font-size: 38px;
  color: #f5f1e8;
  margin-bottom: 7px;
  text-transform: uppercase;
  line-height: 1.15;
}

.founder-content h3 {
  font-family: 'Inter', sans-serif;
  color: #d4a437;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}

.founder-content .ornament-divider {
  margin: 12px 0 16px;
}

.founder-content p {
  color: #d0d0d0;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 11px;
}

.founder-content strong {
  color: #f5f1e8;
  font-weight: 800;
}

.founder-message {
  margin-top: 6px;
}

/* Founder Values */
.founder-values {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 15px 0 18px;
}

.founder-values span {
  color: #d4a437;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding: 7px 12px;
  border: 1px solid rgba(212, 164, 55, 0.38);
  border-radius: 30px;
  background: rgba(212, 164, 55, 0.07);
}

/* Quote */
.founder-quote {
  margin: 16px 0;
  padding: 16px 18px;
  border-left: 3px solid #d4a437;
  background: rgba(212, 164, 55, 0.08);
  border-radius: 0 10px 10px 0;
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.founder-quote i {
  color: #d4a437;
  font-size: 20px;
  margin-top: 4px;
}

.founder-quote p {
  margin: 0;
  color: #f5f1e8;
  font-family: 'Cinzel', serif;
  font-size: 15.5px;
  line-height: 1.55;
  font-style: italic;
}

.founder-signature {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 13px;
}

.founder-signature span {
  color: #9e9e9e;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.founder-signature strong {
  color: #d4a437;
  font-family: 'Cinzel', serif;
  font-size: 19px;
  letter-spacing: 0.8px;
}

/* Responsive */
@media (max-width: 1100px) {
  .founder-dedication-box {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px;
  }

  .founder-image-frame {
    max-width: 300px;
    margin: 0 auto;
  }

  .founder-image-frame img {
    height: 340px;
  }

 .founder-content {
  text-align: center !important;
}

.founder-values {
  justify-content: center !important;
}

.founder-signature {
  align-items: center !important;
}
}

@media (max-width: 576px) {
  .founder-dedication-box {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .founder-image-frame {
    max-width: 280px;
  }

  .founder-image-frame img {
    height: 300px;
  }

  .founder-content h1,
  .founder-content h2 {
    font-size: 27px;
  }

  .founder-content h3 {
    font-size: 15px;
  }

  .founder-content p {
    font-size: 13.5px;
    line-height: 1.65;
  }

  .founder-values span {
    font-size: 10.5px;
    padding: 6px 10px;
  }

  .founder-quote {
    padding: 15px;
  }

  .founder-quote p {
    font-size: 14px;
  }
}
/* Founder section text center */
.founder-content {
  text-align: center !important;
}

.founder-content .section-kicker,
.founder-content h1,
.founder-content h3,
.founder-content p {
  text-align: center !important;
}

.founder-content .ornament-divider {
  margin-left: auto !important;
  margin-right: auto !important;
}

.founder-values {
  justify-content: center !important;
}

.founder-quote {
  text-align: center !important;
  justify-content: center !important;
}

.founder-quote p {
  text-align: center !important;
}

.founder-signature {
  align-items: center !important;
  text-align: center !important;
}


/* ==============================
   Compact Services Cards - Smaller
   ============================== */

.services-section .row {
  row-gap: 14px !important;
}

.services-section .service-card {
  min-height: 175px !important;
  padding: 16px 14px !important;
  border-radius: 13px !important;
}

.services-section .service-card i {
  font-size: 25px !important;
  margin-bottom: 12px !important;
}

.services-section .service-card h3 {
  font-size: 17px !important;
  line-height: 1.22 !important;
  margin-bottom: 8px !important;
}

.services-section .service-card p {
  font-size: 12.5px !important;
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
}

.service-mini-list {
  list-style: none;
  padding: 0;
  margin: 9px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}

.service-mini-list li {
  color: #d4a437;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border: 1px solid rgba(212, 164, 55, 0.28);
  border-radius: 30px;
  background: rgba(212, 164, 55, 0.06);
}

@media (max-width: 576px) {
  .services-section .service-card {
    min-height: auto !important;
    padding: 18px 15px !important;
  }

  .services-section .service-card h3 {
    font-size: 16px !important;
  }

  .services-section .service-card p {
    font-size: 12px !important;
  }

  .services-section .service-card i {
    font-size: 24px !important;
  }
}
/* ==============================
   Clickable Services Detail Box
   Same Card Size + Tribunal Style
   ============================== */

.services-section .service-card {
  cursor: pointer !important;
  position: relative !important;
  transition: 0.3s ease !important;
}

.services-section .service-card:hover,
.services-section .service-card.service-active {
  border-color: #d4a437 !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 18px 45px rgba(212, 164, 55, 0.15) !important;
}

.services-section .service-card.service-active::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: -13px !important;
  transform: translateX(-50%) rotate(45deg) !important;
  width: 22px !important;
  height: 22px !important;
  background: #101010 !important;
  border-left: 1px solid rgba(212, 164, 55, 0.35) !important;
  border-top: 1px solid rgba(212, 164, 55, 0.35) !important;
  z-index: 5 !important;
}

.services-detail-col {
  width: 100% !important;
  flex: 0 0 100% !important;
  max-width: 100% !important;
}

.services-detail-box {
  max-width: 1180px !important;
  margin: 18px auto 18px !important;
  padding: 28px 30px 30px !important;

  border-top: 4px solid #d4a437 !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, #101010, #060606) !important;

  border-left: 1px solid rgba(212, 164, 55, 0.28) !important;
  border-right: 1px solid rgba(212, 164, 55, 0.28) !important;
  border-bottom: 1px solid rgba(212, 164, 55, 0.28) !important;

  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45) !important;

  display: none !important;
  animation: servicesFade 0.35s ease forwards !important;
}

.services-detail-box.open {
  display: block !important;
}

@keyframes servicesFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.services-detail-header {
  text-align: center !important;
  margin-bottom: 22px !important;
  position: relative !important;
}

.services-detail-header h2 {
  color: #d4a437 !important;
  font-size: 28px !important;
  line-height: 1.25 !important;
  margin-bottom: 10px !important;
}

.services-detail-header p {
  max-width: 780px !important;
  margin: 0 auto !important;
  color: #d6d6d6 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.services-detail-close {
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;

  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(212, 164, 55, 0.35) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: #d4a437 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  cursor: pointer !important;
  transition: 0.3s ease !important;
}

.services-detail-close:hover {
  background: #d4a437 !important;
  color: #111 !important;
}

.services-options-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
}

.services-options-grid span {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 42px !important;

  padding: 10px 13px !important;
  border: 1px solid rgba(212, 164, 55, 0.18) !important;
  border-radius: 9px !important;
  background: rgba(255, 255, 255, 0.035) !important;
  color: #f1f1f1 !important;

  font-size: 13px !important;
  line-height: 1.35 !important;
}

.services-options-grid i {
  color: #d4a437 !important;
  font-size: 13px !important;
}

.services-whatsapp-wrap {
  text-align: center !important;
  margin-top: 24px !important;
}

.services-whatsapp-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;

  background: #25d366 !important;
  color: #ffffff !important;

  padding: 12px 26px !important;
  border-radius: 40px !important;

  font-size: 14px !important;
  font-weight: 900 !important;
  text-decoration: none !important;

  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.25) !important;
  transition: 0.3s ease !important;
}

.services-whatsapp-btn:hover {
  transform: translateY(-3px) !important;
  color: #ffffff !important;
}

/* Tablet */
@media (max-width: 992px) {
  .services-options-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .services-detail-header h2 {
    font-size: 25px !important;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .services-section .service-card.service-active::after {
    display: none !important;
  }

  .services-detail-box {
    padding: 22px 14px 24px !important;
    border-radius: 14px !important;
    margin: 14px auto 16px !important;
  }

  .services-detail-header {
    padding-top: 8px !important;
  }

  .services-detail-header h2 {
    font-size: 22px !important;
    padding: 0 35px !important;
  }

  .services-detail-header p {
    font-size: 13px !important;
  }

  .services-detail-close {
    width: 30px !important;
    height: 30px !important;
  }

  .services-options-grid {
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }
}
/* ==============================
   Services Cards Equal Size + Click Detail Design Fix
   Paste this at the END of style.css
   ============================== */

/* Keep service row clean */
#services.services-section .row {
  row-gap: 30px !important;
  align-items: stretch !important;
}

/* Equal column/card height */
#services.services-section .row > [class*="col-"] {
  display: flex !important;
}

/* Equal service cards */
#services.services-section .service-card {
  width: 100% !important;
  height: 195px !important;
  min-height: 195px !important;
  max-height: 195px !important;

  padding: 16px 14px !important;
  border-radius: 13px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  text-align: center !important;
  cursor: pointer !important;
  position: relative !important;

  overflow: hidden !important;
  outline: none !important;

  border: 1px solid rgba(212, 164, 55, 0.35) !important;
  background: linear-gradient(180deg, #101010, #060606) !important;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.36) !important;
  transition: 0.3s ease !important;
}

#services.services-section .service-card:focus,
#services.services-section .service-card:focus-visible {
  outline: none !important;
  box-shadow: 0 18px 45px rgba(212, 164, 55, 0.18) !important;
}

/* Icon */
#services.services-section .service-card i {
  font-size: 25px !important;
  margin-bottom: 12px !important;
  color: #d4a437 !important;
  line-height: 1 !important;
}

/* Title equal area */
#services.services-section .service-card h3 {
  font-size: 16px !important;
  line-height: 1.2 !important;
  margin: 0 0 8px !important;
  color: #f5f1e8 !important;

  min-height: 39px !important;
  max-height: 58px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Paragraph equal area */
#services.services-section .service-card p {
  font-size: 12.5px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  color: #cfcfcf !important;

  max-width: 95% !important;
}

/* Hover / active */
#services.services-section .service-card:hover,
#services.services-section .service-card.service-active {
  border-color: #d4a437 !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 18px 45px rgba(212, 164, 55, 0.15) !important;
}

/* Active small arrow */
#services.services-section .service-card.service-active::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: -12px !important;
  transform: translateX(-50%) rotate(45deg) !important;

  width: 22px !important;
  height: 22px !important;

  background: #101010 !important;
  border-left: 1px solid rgba(212, 164, 55, 0.35) !important;
  border-top: 1px solid rgba(212, 164, 55, 0.35) !important;
  z-index: 5 !important;
}

/* Detail full row */
#services .services-detail-col {
  width: 100% !important;
  flex: 0 0 100% !important;
  max-width: 100% !important;
  display: block !important;
}

/* Main detail box */
#services .services-detail-box {
  max-width: 1180px !important;
  margin: 18px auto 8px !important;
  padding: 28px 30px 30px !important;

  border-top: 4px solid #d4a437 !important;
  border-radius: 18px !important;

  background: linear-gradient(180deg, #101010, #060606) !important;

  border-left: 1px solid rgba(212, 164, 55, 0.28) !important;
  border-right: 1px solid rgba(212, 164, 55, 0.28) !important;
  border-bottom: 1px solid rgba(212, 164, 55, 0.28) !important;

  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45) !important;

  display: none !important;
  position: relative !important;
  animation: servicesFade 0.35s ease forwards !important;
}

#services .services-detail-box.open {
  display: block !important;
}



/* Detail header */
#services .services-detail-header {
  text-align: center !important;
  margin-bottom: 24px !important;
  position: relative !important;
}

#services .services-detail-header h2 {
  color: #d4a437 !important;
  font-size: 28px !important;
  line-height: 1.25 !important;
  margin: 0 0 10px !important;
  font-family: inherit !important;
}

#services .services-detail-header p {
  max-width: 780px !important;
  margin: 0 auto !important;
  color: #d6d6d6 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

/* Close button */
#services .services-detail-close {
  position: absolute !important;
  right: 0 !important;
  top: -4px !important;

  width: 34px !important;
  height: 34px !important;

  border-radius: 50% !important;
  border: 1px solid rgba(212, 164, 55, 0.38) !important;

  background: rgba(255, 255, 255, 0.04) !important;
  color: #d4a437 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  cursor: pointer !important;
  padding: 0 !important;
  line-height: 1 !important;
  font-size: 15px !important;
  transition: 0.3s ease !important;
}

#services .services-detail-close:hover {
  background: #d4a437 !important;
  color: #111 !important;
}

/* Detail options grid */
#services .services-options-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
}

#services .services-options-grid span {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;

  min-height: 42px !important;
  padding: 10px 13px !important;

  border: 1px solid rgba(212, 164, 55, 0.18) !important;
  border-radius: 9px !important;

  background: rgba(255, 255, 255, 0.035) !important;
  color: #f1f1f1 !important;

  font-size: 13px !important;
  line-height: 1.35 !important;
}

#services .services-options-grid i {
  color: #d4a437 !important;
  font-size: 13px !important;
  flex: 0 0 auto !important;
}

/* WhatsApp button */
#services .services-whatsapp-wrap {
  text-align: center !important;
  margin-top: 24px !important;
}

#services .services-whatsapp-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;

  background: #25d366 !important;
  color: #ffffff !important;

  padding: 12px 26px !important;
  border-radius: 40px !important;

  font-size: 14px !important;
  font-weight: 900 !important;
  text-decoration: none !important;

  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.25) !important;
  transition: 0.3s ease !important;
}

#services .services-whatsapp-btn:hover {
  transform: translateY(-3px) !important;
  color: #ffffff !important;
}

/* Tablet */
@media (max-width: 992px) {
  #services.services-section .service-card {
    height: 190px !important;
    min-height: 190px !important;
    max-height: 190px !important;
  }

  #services .services-options-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  #services .services-detail-header h2 {
    font-size: 25px !important;
  }
}

/* Mobile */
@media (max-width: 576px) {
  #services.services-section .row {
    row-gap: 14px !important;
  }

  #services.services-section .service-card {
    height: auto !important;
    min-height: 170px !important;
    max-height: none !important;
    padding: 18px 15px !important;
  }

  #services.services-section .service-card.service-active::after {
    display: none !important;
  }

  #services .services-detail-box {
    padding: 22px 14px 24px !important;
    border-radius: 14px !important;
    margin: 14px auto 16px !important;
  }

  #services .services-detail-header {
    padding-top: 8px !important;
  }

  #services .services-detail-header h2 {
    font-size: 22px !important;
    padding: 0 36px !important;
  }

  #services .services-detail-header p {
    font-size: 13px !important;
  }

  #services .services-detail-close {
    width: 30px !important;
    height: 30px !important;
  }

  #services .services-options-grid {
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }
}
/* ==============================
   Tribunal Section Same as Services Section
   Equal Cards + Same Click Detail Design
   ============================== */

#tribunal-services {
  background:
    radial-gradient(circle at center top, rgba(212, 164, 55, 0.08), transparent 35%),
    linear-gradient(180deg, #050505 0%, #090909 100%) !important;
  padding: 58px 0 64px !important;
}

#tribunal-services .section-heading {
  margin-bottom: 30px !important;
}

#tribunal-services .section-heading h1 {
  font-size: 36px !important;
  line-height: 1.2 !important;
}

#tribunal-services .tribunal-heading-text {
  max-width: 760px !important;
  margin: 0 auto !important;
  color: #cfcfcf !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

/* Same row style as Services */
#tribunal-services .tribunal-services-row {
  row-gap: 30px !important;
  align-items: stretch !important;
}

/* Equal column/card height */
#tribunal-services .tribunal-services-row > [class*="col-"] {
  display: flex !important;
}

/* Equal tribunal cards same as service cards */
#tribunal-services .service-card {
  width: 100% !important;
  height: 195px !important;
  min-height: 195px !important;
  max-height: 195px !important;

  padding: 16px 14px !important;
  border-radius: 13px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  text-align: center !important;
  cursor: pointer !important;
  position: relative !important;

  overflow: hidden !important;
  outline: none !important;

  border: 1px solid rgba(212, 164, 55, 0.35) !important;
  background: linear-gradient(180deg, #101010, #060606) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.36) !important;
  transition: 0.3s ease !important;
}

#tribunal-services .service-card:focus,
#tribunal-services .service-card:focus-visible {
  outline: none !important;
  box-shadow: 0 18px 45px rgba(212, 164, 55, 0.18) !important;
}

/* Icon same as Services */
#tribunal-services .service-card i {
  font-size: 25px !important;
  margin-bottom: 12px !important;
  color: #d4a437 !important;
  line-height: 1 !important;
}

/* Title same as Services */
#tribunal-services .service-card h3 {
  font-size: 16px !important;
  line-height: 1.2 !important;
  margin: 0 0 8px !important;
  color: #f5f1e8 !important;

  min-height: 39px !important;
  max-height: 58px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Paragraph same as Services */
#tribunal-services .service-card p {
  font-size: 12.5px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  color: #cfcfcf !important;
  max-width: 95% !important;
}

/* Hover / active */
#tribunal-services .service-card:hover,
#tribunal-services .service-card.tribunal-active {
  border-color: #d4a437 !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 18px 45px rgba(212, 164, 55, 0.15) !important;
}

/* Detail full row */
#tribunal-services .tribunal-detail-col {
  width: 100% !important;
  flex: 0 0 100% !important;
  max-width: 100% !important;
  display: block !important;
}

/* Main detail box same as Services */
#tribunal-services .tribunal-detail-box {
  max-width: 1180px !important;
  margin: 18px auto 8px !important;
  padding: 28px 30px 30px !important;

  border-top: 4px solid #d4a437 !important;
  border-radius: 18px !important;

  background: linear-gradient(180deg, #101010, #060606) !important;

  border-left: 1px solid rgba(212, 164, 55, 0.28) !important;
  border-right: 1px solid rgba(212, 164, 55, 0.28) !important;
  border-bottom: 1px solid rgba(212, 164, 55, 0.28) !important;

  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45) !important;

  display: none !important;
  position: relative !important;
  animation: tribunalFade 0.35s ease forwards !important;
}

#tribunal-services .tribunal-detail-box.open {
  display: block !important;
}

@keyframes tribunalFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

/* Detail header */
#tribunal-services .tribunal-detail-header {
  text-align: center !important;
  margin-bottom: 24px !important;
  position: relative !important;
}

#tribunal-services .tribunal-detail-header h2 {
  color: #d4a437 !important;
  font-size: 28px !important;
  line-height: 1.25 !important;
  margin: 0 0 10px !important;
  font-family: inherit !important;
}

#tribunal-services .tribunal-detail-header p {
  max-width: 780px !important;
  margin: 0 auto !important;
  color: #d6d6d6 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

/* Detail options grid same as Services */
#tribunal-services .tribunal-options-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
}

#tribunal-services .tribunal-options-grid span {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;

  min-height: 42px !important;
  padding: 10px 13px !important;

  border: 1px solid rgba(212, 164, 55, 0.18) !important;
  border-radius: 9px !important;

  background: rgba(255, 255, 255, 0.035) !important;
  color: #f1f1f1 !important;

  font-size: 13px !important;
  line-height: 1.35 !important;
}

#tribunal-services .tribunal-options-grid i {
  color: #d4a437 !important;
  font-size: 13px !important;
  flex: 0 0 auto !important;
}

/* WhatsApp button same as Services */
#tribunal-services .tribunal-whatsapp-wrap {
  text-align: center !important;
  margin-top: 24px !important;
}

#tribunal-services .tribunal-whatsapp-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;

  background: #25d366 !important;
  color: #ffffff !important;

  padding: 12px 26px !important;
  border-radius: 40px !important;

  font-size: 14px !important;
  font-weight: 900 !important;
  text-decoration: none !important;

  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.25) !important;
  transition: 0.3s ease !important;
}

#tribunal-services .tribunal-whatsapp-btn:hover {
  transform: translateY(-3px) !important;
  color: #ffffff !important;
}

/* Tablet */
@media (max-width: 992px) {
  #tribunal-services .service-card {
    height: 190px !important;
    min-height: 190px !important;
    max-height: 190px !important;
  }

  #tribunal-services .tribunal-options-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  #tribunal-services .tribunal-detail-header h2 {
    font-size: 25px !important;
  }
}

/* Mobile */
@media (max-width: 576px) {
  #tribunal-services {
    padding: 46px 0 52px !important;
  }

  #tribunal-services .section-heading h1 {
    font-size: 27px !important;
  }

  #tribunal-services .tribunal-services-row {
    row-gap: 14px !important;
  }

  #tribunal-services .service-card {
    height: auto !important;
    min-height: 170px !important;
    max-height: none !important;
    padding: 18px 15px !important;
  }

  #tribunal-services .tribunal-detail-box {
    padding: 22px 14px 24px !important;
    border-radius: 14px !important;
    margin: 14px auto 16px !important;
  }

  #tribunal-services .tribunal-detail-header h2 {
    font-size: 22px !important;
    padding: 0 36px !important;
  }

  #tribunal-services .tribunal-detail-header p {
    font-size: 13px !important;
  }

  #tribunal-services .tribunal-options-grid {
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }
}
/* ==============================
   Services + Tribunal Same UI Fix
   Remove Service Arrow + Add Tribunal Close X
   ============================== */

/* Remove small arrow from Services active card */
#services.services-section .service-card.service-active::after,
#services.services-section .service-card.active::after {
  display: none !important;
}

/* Tribunal close button same as Services */
#tribunal-services .tribunal-detail-close {
  position: absolute !important;
  right: 0 !important;
  top: -4px !important;

  width: 34px !important;
  height: 34px !important;

  border-radius: 50% !important;
  border: 1px solid rgba(212, 164, 55, 0.38) !important;

  background: rgba(255, 255, 255, 0.04) !important;
  color: #d4a437 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  cursor: pointer !important;
  padding: 0 !important;
  line-height: 1 !important;
  font-size: 18px !important;
  transition: 0.3s ease !important;
}

#tribunal-services .tribunal-detail-close:hover {
  background: #d4a437 !important;
  color: #111 !important;
}

/* Make tribunal detail header position correct for X button */
#tribunal-services .tribunal-detail-header {
  position: relative !important;
  text-align: center !important;
  margin-bottom: 24px !important;
}

@media (max-width: 576px) {
  #tribunal-services .tribunal-detail-close {
    width: 30px !important;
    height: 30px !important;
    font-size: 16px !important;
  }
}
/* ==============================
   About Founder Compact Right Side
   ============================== */

.about-founder-compact {
  max-width: 520px;
  margin-left: auto;
}

.about-founder-img {
  position: relative;
  max-width: 360px;
  margin: 0 auto 18px;
  padding: 8px;
  background: #080808;
  border: 1px solid rgba(212, 164, 55, 0.55);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.48);
  overflow: hidden;
}

.about-founder-img img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center top;
  border-radius: 11px;
  display: block;
}

.about-founder-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(212, 164, 55, 0.45);
  border-radius: 10px;
  text-align: center;
}

.about-founder-overlay h3 {
  font-family: 'Cinzel', serif;
  color: #f5f1e8;
  font-size: 18px;
  margin: 0 0 4px;
}

.about-founder-overlay span {
  color: #d4a437;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.about-founder-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-founder-message,
.about-founder-mini-grid div,
.about-founder-values {
  background: linear-gradient(180deg, #101010, #060606);
  border: 1px solid rgba(212, 164, 55, 0.28);
  border-radius: 12px;
  padding: 14px 16px;
}

.about-founder-message h4,
.about-founder-mini-grid h4,
.about-founder-values h4 {
  color: #d4a437;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  margin-bottom: 7px;
}

.about-founder-message p,
.about-founder-mini-grid p {
  color: #d0d0d0;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.about-founder-message p {
  color: #f5f1e8;
  font-style: italic;
}

.about-founder-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.about-founder-values ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.about-founder-values li {
  color: #d0d0d0;
  font-size: 13px;
  line-height: 1.45;
}

.about-founder-values strong {
  color: #d4a437;
}

/* Responsive */
@media (max-width: 992px) {
  .about-founder-compact {
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .about-founder-img {
    max-width: 300px;
  }

  .about-founder-img img {
    height: 260px;
  }

  .about-founder-mini-grid {
    grid-template-columns: 1fr;
  }

  .about-founder-message,
  .about-founder-mini-grid div,
  .about-founder-values {
    padding: 13px;
  }
}

/* ==============================
   About Founder Simple Style
   ============================== */

.about-founder-compact {
  max-width: 520px;
  margin-left: auto;
}

.about-founder-img {
  position: relative;
  max-width: 360px;
  margin: 0 auto 22px;
  padding: 8px;
  background: #080808;
  border: 1px solid rgba(212, 164, 55, 0.55);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.48);
  overflow: hidden;
}

.about-founder-img img {
  width: 100%;
  height: 310px;
  object-fit: contain !important;
  object-position: center center !important;
  background: #000;
  border-radius: 11px;
  display: block;
}

.about-founder-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(212, 164, 55, 0.45);
  border-radius: 10px;
  text-align: center;
}

.about-founder-overlay h3 {
  font-family: 'Cinzel', serif;
  color: #f5f1e8;
  font-size: 18px;
  margin: 0 0 4px;
}

.about-founder-overlay span {
  color: #d4a437;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.about-founder-details-simple {
  text-align: center;
}

.about-founder-message-simple {
  margin-bottom: 18px;
}

.about-founder-message-simple h4,
.about-founder-text-block h4 {
  color: #d4a437;
  font-family: 'Cinzel', serif;
  font-size: 17px;
  margin-bottom: 7px;
}

.about-founder-message-simple p {
  color: #f5f1e8;
  font-size: 14px;
  line-height: 1.65;
  font-style: italic;
  margin: 0;
}

.about-founder-text-block {
  margin-bottom: 14px;
}

.about-founder-text-block p {
  color: #d0d0d0;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

.about-founder-text-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-founder-text-block li {
  color: #d0d0d0;
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 5px;
}

.about-founder-text-block strong {
  color: #d4a437;
}

@media (max-width: 992px) {
  .about-founder-compact {
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .about-founder-img {
    max-width: 300px;
  }

  .about-founder-img img {
    height: 260px;
  }

  .about-founder-overlay {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }

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

/* ==============================
   Firm Highlights Improved Size
   ============================== */

.firm-slider {
  max-width: 1400px !important;
  margin: 45px auto 0 !important;
  border-radius: 18px !important;
}

.highlight-slide {
  display: grid !important;
  grid-template-columns: 60% 40% !important;
  height: 500px !important;
  max-height: 500px !important;
  min-height: 500px !important;
}

.highlight-image {
  height: 340px !important;
  overflow: hidden !important;
  background: #050505 !important;
}

.highlight-image img {
  width: 100% !important;
  height: 340px !important;
  object-fit: cover !important;
  object-position: var(--slide-position, center center) !important;
  transform: scale(var(--slide-scale, 1)) !important;
  transform-origin: center center !important;
  display: block !important;
}

.highlight-content {
  height: 340px !important;
  padding: 36px 42px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.highlight-content span {
  font-size: 12px !important;
  letter-spacing: 2.5px !important;
  margin-bottom: 12px !important;
}

.highlight-content h3 {
  font-size: 30px !important;
  line-height: 1.2 !important;
  margin-bottom: 14px !important;
}

.highlight-content p {
  font-size: 14.5px !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

@media (max-width: 992px) {
  .highlight-slide {
    grid-template-columns: 1fr !important;
    height: auto !important;
    max-height: none !important;
  }

  .highlight-image,
  .highlight-image img {
    height: 240px !important;
  }

  .highlight-content {
    height: auto !important;
    padding: 28px 24px 50px !important;
  }
}

@media (max-width: 576px) {
  .highlight-image,
  .highlight-image img {
    height: 190px !important;
  }

  .highlight-content h3 {
    font-size: 22px !important;
  }
}



.footer-map:hover iframe {
  filter: grayscale(20%) invert(0%) contrast(100%);
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: #d4a437;
}

/* Footer contact arrow remove */
.footer-contact a::before,
.footer-contact-link::before {
  content: none !important;
  display: none !important;
}

.footer-contact p {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 13px !important;
}

.footer-contact p i {
  color: #d4a437 !important;
  margin-right: 6px !important;
}

.footer-contact a {
  color: inherit !important;
  text-decoration: none !important;
  padding-left: 0 !important;
}

.footer-contact a:hover {
  color: #d4a437 !important;
  padding-left: 0 !important;
}

.footer-contact-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

/* ==============================
   Find Us Section - Theme Matched
   ============================== */

.find-us-section {
  background:
    radial-gradient(circle at top left, rgba(212, 164, 55, 0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(212, 164, 55, 0.05), transparent 32%),
    #050505;
  padding: 85px 0 90px;
  position: relative;
  overflow: hidden;
}

.find-us-heading {
  text-align: center;
  margin-bottom: 34px;
}

.find-us-heading h2 {
  font-family: 'Cinzel', serif;
  font-size: 52px;
  color: #f5f1e8;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.find-us-heading p {
  color: #cfcfcf;
  font-size: 16px;
  margin-top: 12px;
  margin-bottom: 0;
  font-style: italic;
}

/* ==============================
   Find Us Compact Card Style
   ============================== */

.find-us-section {
  background:
    radial-gradient(circle at top left, rgba(212, 164, 55, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(212, 164, 55, 0.05), transparent 30%),
    #050505 !important;
  padding: 45px 0 50px !important;
  position: relative !important;
  overflow: hidden !important;
}

.find-us-heading {
  text-align: center !important;
  margin-bottom: 20px !important;
}

.find-us-heading .section-kicker {
  font-size: 12px !important;
  letter-spacing: 2px !important;
  margin-bottom: 8px !important;
}

.find-us-heading h2 {
  font-family: "Cinzel", serif !important;
  font-size: 36px !important;
  color: #f5f1e8 !important;
  margin-bottom: 4px !important;
  text-transform: uppercase !important;
}

.find-us-heading .ornament-divider {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.find-us-heading p {
  color: #cfcfcf !important;
  font-size: 14px !important;
  font-style: italic !important;
  margin: 0 !important;
}

/* Outer bordered card */
.find-us-map-wrap {
  max-width: 1120px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 12px 12px 16px !important;

  background: linear-gradient(180deg, #101010, #060606) !important;
  border: 1px solid rgba(212, 164, 55, 0.55) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55) !important;
}

/* Map inside card */
.find-us-map-box {
  width: 100% !important;
  height: 340px !important;
  border-radius: 13px !important;
  overflow: hidden !important;
  border: 1px solid rgba(212, 164, 55, 0.25) !important;
  background: #0b0b0b !important;
  box-shadow: none !important;
  position: relative !important;
}

.find-us-map-box::before {
  content: "" !important;
  position: absolute !important;
  inset: 7px !important;
  border: 1px solid rgba(212, 164, 55, 0.14) !important;
  border-radius: 9px !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

.find-us-map-box iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block !important;
}

/* Button card ke andar */
.find-us-btn-wrap {
  text-align: center !important;
  margin-top: 14px !important;
}

.find-us-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;

  background: linear-gradient(135deg, #d4a437, #b88923) !important;
  color: #111111 !important;
  border: 1px solid rgba(212, 164, 55, 0.85) !important;
  border-radius: 7px !important;

  padding: 10px 24px !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.4px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;

  box-shadow: 0 8px 22px rgba(212, 164, 55, 0.18) !important;
  transition: 0.3s ease !important;
}

.find-us-btn i {
  font-size: 13px !important;
  color: #111111 !important;
}

.find-us-btn:hover {
  transform: translateY(-2px) !important;
  color: #000000 !important;
  box-shadow: 0 12px 28px rgba(212, 164, 55, 0.28) !important;
}

/* Tablet */
@media (max-width: 992px) {
  .find-us-section {
    padding: 40px 0 45px !important;
  }

  .find-us-heading h2 {
    font-size: 31px !important;
  }

  .find-us-map-wrap {
    max-width: 92% !important;
    padding: 10px 10px 14px !important;
  }

  .find-us-map-box {
    height: 300px !important;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .find-us-section {
    padding: 35px 0 40px !important;
  }

  .find-us-heading {
    margin-bottom: 16px !important;
  }

  .find-us-heading h2 {
    font-size: 26px !important;
  }

  .find-us-heading p {
    font-size: 13px !important;
  }

  .find-us-map-wrap {
    max-width: 94% !important;
    padding: 8px 8px 12px !important;
    border-radius: 14px !important;
  }

  .find-us-map-box {
    height: 245px !important;
    border-radius: 10px !important;
  }

  .find-us-btn {
    width: 100% !important;
    max-width: 255px !important;
    padding: 10px 14px !important;
    font-size: 12px !important;
  }
}
/* ==============================
   Contact CTA Section
   ============================== */

.contact-cta-section {
  position: relative;
  padding: 85px 0 90px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88), rgba(0,0,0,0.78), rgba(0,0,0,0.90)),
    url("../images/hero-law-office.png") center center / cover no-repeat;
  overflow: hidden;
}

.contact-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212,164,55,0.10), transparent 35%),
    radial-gradient(circle at 80% 50%, rgba(212,164,55,0.08), transparent 35%);
  pointer-events: none;
}

.contact-cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-cta-content {
  color: #ffffff;
}

.contact-kicker {
  display: inline-block;
  color: #d4a437;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.contact-cta-content h2 {
  font-family: "Inter", sans-serif;
  color: #ffffff;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 900;
  max-width: 650px;
  margin-bottom: 22px;
}

.contact-cta-content > p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.8;
  max-width: 660px;
  font-weight: 500;
  margin-bottom: 35px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 9px;
  background: linear-gradient(135deg, #e1bc5a, #d4a437);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(212, 164, 55, 0.22);
}

.contact-info-icon i {
  color: #ffffff;
  font-size: 16px;
}

.contact-info-icon.green-icon {
  background: #0b8f49;
}

.contact-info-item h4 {
  font-family: "Inter", sans-serif;
  color: #d4a437;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.contact-info-item a,
.contact-info-item p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  text-decoration: none;
  font-weight: 500;
}

.contact-info-item a:hover {
  color: #d4a437;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.map-link i {
  color: #ffffff;
  font-size: 13px;
}

/* Form Card */
.contact-form-card {
  max-width: 530px;
  width: 100%;
  background: #ffffff;
  border-radius: 18px;
  padding: 42px 50px 45px;
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.45);
  margin-left: auto;
}

.contact-form-card h3 {
  font-family: "Inter", sans-serif;
  color: #0b2c57;
  font-size: 34px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 24px;
}

.contact-form-card .form-group {
  margin-bottom: 12px;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border: 0;
  outline: none;
  background: #f0f1f4;
  color: #222;
  border-radius: 6px;
  padding: 13px 15px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
}

.contact-form-card textarea {
  resize: none;
  min-height: 92px;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: #2f3b4a;
}

.contact-submit-btn {
  margin-top: 8px;
  border: 0;
  outline: none;
  background: linear-gradient(135deg, #e1bc5a, #d4a437);
  color: #ffffff;
  padding: 13px 28px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: 0.3s ease;
}

.contact-submit-btn:hover {
  background: #0b2c57;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1100px) {
  .contact-cta-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-form-card {
    margin: 0;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .contact-cta-section {
    padding: 60px 0 65px;
  }

  .contact-cta-content h2 {
    font-size: 30px;
  }

  .contact-cta-content > p {
    font-size: 14px;
  }

  .contact-info-item {
    gap: 12px;
  }

  .contact-info-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .contact-form-card {
    padding: 30px 22px 32px;
    border-radius: 15px;
  }

  .contact-form-card h3 {
    font-size: 28px;
  }
}
/* ==============================
   Contact CTA Compact Size
   ============================== */

.contact-cta-section {
  padding: 55px 0 60px !important;
}

.contact-cta-grid {
  max-width: 1160px !important;
  gap: 45px !important;
}

/* Left content compact */
.contact-kicker {
  font-size: 14px !important;
  margin-bottom: 10px !important;
}

.contact-cta-content h2 {
  font-size: 34px !important;
  line-height: 1.18 !important;
  max-width: 560px !important;
  margin-bottom: 16px !important;
}

.contact-cta-content > p {
  font-size: 14px !important;
  line-height: 1.65 !important;
  max-width: 560px !important;
  margin-bottom: 24px !important;
}

.contact-info-list {
  gap: 18px !important;
}

.contact-info-item {
  gap: 13px !important;
}

.contact-info-icon {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  border-radius: 8px !important;
}

.contact-info-icon i {
  font-size: 14px !important;
}

.contact-info-item h4 {
  font-size: 13px !important;
  margin-bottom: 4px !important;
}

.contact-info-item a,
.contact-info-item p {
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.map-link {
  margin-top: 8px !important;
  font-size: 13px !important;
}

/* Form card compact */
.contact-form-card {
  max-width: 460px !important;
  padding: 30px 38px 34px !important;
  border-radius: 16px !important;
}

.contact-form-card h3 {
  font-size: 30px !important;
  margin-bottom: 18px !important;
}

.contact-form-card .form-group {
  margin-bottom: 10px !important;
}

.contact-form-card input,
.contact-form-card textarea {
  padding: 11px 14px !important;
  font-size: 14px !important;
  border-radius: 5px !important;
}

.contact-form-card textarea {
  min-height: 78px !important;
}

.contact-submit-btn {
  margin-top: 6px !important;
  padding: 11px 24px !important;
  font-size: 13px !important;
  border-radius: 5px !important;
}

/* Tablet */
@media (max-width: 1100px) {
  .contact-cta-section {
    padding: 50px 0 55px !important;
  }

  .contact-cta-grid {
    gap: 32px !important;
  }

  .contact-form-card {
    max-width: 100% !important;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .contact-cta-section {
    padding: 42px 0 48px !important;
  }

  .contact-cta-content h2 {
    font-size: 27px !important;
  }

  .contact-cta-content > p {
    font-size: 13.5px !important;
    margin-bottom: 20px !important;
  }

  .contact-info-list {
    gap: 15px !important;
  }

  .contact-form-card {
    padding: 26px 20px 28px !important;
    border-radius: 14px !important;
  }

  .contact-form-card h3 {
    font-size: 25px !important;
  }

  .contact-form-card textarea {
    min-height: 70px !important;
  }
}


/* ==============================
   CEO Section Compact Clean
   Main Card Removed
   ============================== */

#ceo {
  padding: 55px 0 60px !important;
  background:
    radial-gradient(circle at top left, rgba(212, 164, 55, 0.07), transparent 30%),
    radial-gradient(circle at bottom right, rgba(212, 164, 55, 0.04), transparent 32%),
    #050505 !important;
}

/* Heading compact */
#ceo .section-heading {
  margin-bottom: 30px !important;
}

#ceo .section-heading .section-kicker {
  font-size: 12px !important;
  letter-spacing: 2px !important;
  margin-bottom: 8px !important;
}

#ceo .section-heading h1 {
  font-size: 36px !important;
  line-height: 1.15 !important;
  margin-bottom: 0 !important;
}

#ceo .section-heading .ornament-divider {
  margin-top: 14px !important;
  margin-bottom: 14px !important;
}

/* Main box card remove */
#ceo .ceo-main-box {
  display: grid !important;
  grid-template-columns: 330px 1fr !important;
  gap: 34px !important;
  align-items: flex-start !important;

  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Image column */
#ceo .ceo-image-column {
  width: 100% !important;
}

/* Sirf picture frame rahega */
#ceo .ceo-image-card {
  position: sticky !important;
  top: 105px !important;

  border: 1px solid rgba(212, 164, 55, 0.55) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  background: #080808 !important;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45) !important;
}

/* Picture center */
#ceo .ceo-image-card img {
  width: 100% !important;
  height: 385px !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
}

/* Name/designation overlay same but compact */
#ceo .ceo-image-overlay {
  padding: 14px 15px 16px !important;
  background: linear-gradient(180deg, rgba(12,12,12,0.92), rgba(5,5,5,0.98)) !important;
  border-top: 1px solid rgba(212, 164, 55, 0.22) !important;
  text-align: center !important;
}

#ceo .ceo-image-overlay h3 {
  font-size: 20px !important;
  line-height: 1.2 !important;
  margin-bottom: 5px !important;
}

#ceo .ceo-image-overlay span {
  font-size: 13px !important;
  margin-bottom: 4px !important;
}

#ceo .ceo-content-column h4 {
  color: #d4a437 !important;
}
#ceo .ceo-image-overlay p {
  font-size: 12px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
}

/* Right content compact */
#ceo .ceo-content-column {
  color: #d6d6d6 !important;
}

#ceo .ceo-small-title {
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 6px !important;
}

#ceo .ceo-content-column h2 {
  font-size: 32px !important;
  line-height: 1.12 !important;
  margin-bottom: 5px !important;
}

#ceo .ceo-content-column h4 {
  font-size: 15px !important;
  line-height: 1.35 !important;
  margin-bottom: 12px !important;
}

#ceo .ceo-content-column p {
  font-size: 13.5px !important;
  line-height: 1.65 !important;
  margin-bottom: 10px !important;
}

/* Info box background/card remove, heading ke sath simple content */
#ceo .ceo-info-box {
  margin-top: 14px !important;
  padding: 0 0 10px !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 1px solid rgba(212, 164, 55, 0.18) !important;
}

#ceo .ceo-info-box:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

#ceo .ceo-info-box h3 {
  font-size: 20px !important;
  line-height: 1.25 !important;
  color: #d4a437 !important;
  margin-bottom: 8px !important;
}

#ceo .ceo-info-box ul {
  margin: 0 !important;
  padding-left: 18px !important;
}

#ceo .ceo-info-box ul li {
  font-size: 13px !important;
  line-height: 1.55 !important;
  margin-bottom: 5px !important;
  color: #d2d2d2 !important;
}

#ceo .ceo-vision-title {
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin-bottom: 8px !important;
  color: #d4a437 !important;
}

/* Commitment check list compact */
#ceo .ceo-check-list {
  list-style: none !important;
  padding-left: 0 !important;
}

#ceo .ceo-check-list li {
  position: relative !important;
  padding-left: 24px !important;
  margin-bottom: 6px !important;
}

#ceo .ceo-check-list li::before {
  content: "✔" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: #d4a437 !important;
  font-weight: 700 !important;
}

/* Tablet */
@media (max-width: 1100px) {
  #ceo .ceo-main-box {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  #ceo .ceo-image-card {
    position: relative !important;
    top: auto !important;
    max-width: 340px !important;
    margin: 0 auto !important;
  }

  #ceo .ceo-image-card img {
    height: 360px !important;
  }
}

/* Mobile */
@media (max-width: 576px) {
  #ceo {
    padding: 42px 0 48px !important;
  }

  #ceo .section-heading h1 {
    font-size: 28px !important;
  }

  #ceo .ceo-image-card {
    max-width: 300px !important;
  }

  #ceo .ceo-image-card img {
    height: 315px !important;
  }

  #ceo .ceo-content-column h2 {
    font-size: 25px !important;
  }

  #ceo .ceo-content-column h4 {
    font-size: 13.5px !important;
  }

  #ceo .ceo-content-column p,
  #ceo .ceo-info-box ul li {
    font-size: 12.8px !important;
    line-height: 1.55 !important;
  }

  #ceo .ceo-info-box h3 {
    font-size: 18px !important;
  }
}
/* ==============================
   Tribunal Services Final
   Row Wise Click Details
   ============================== */

#tribunal-services {
  background:
    radial-gradient(circle at center top, rgba(212, 164, 55, 0.08), transparent 35%),
    linear-gradient(180deg, #050505 0%, #090909 100%) !important;
  padding: 58px 0 64px !important;
}

#tribunal-services .section-heading {
  margin-bottom: 30px !important;
}

#tribunal-services .section-heading h1 {
  font-size: 36px !important;
  line-height: 1.2 !important;
}

#tribunal-services .section-kicker {
  font-size: 12px !important;
  letter-spacing: 2px !important;
  margin-bottom: 8px !important;
}

#tribunal-services .ornament-divider {
  margin-top: 14px !important;
  margin-bottom: 14px !important;
}

.tribunal-heading-text {
  max-width: 760px !important;
  margin: 0 auto !important;
  color: #cfcfcf !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

/* Wrapper */
.tribunal-click-area {
  max-width: 1180px !important;
  margin: 0 auto !important;
}

.tribunal-row {
  margin-bottom: 20px !important;
}

/* Cards grid */
.tribunal-tabs-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 14px !important;
  margin-bottom: 14px !important;
}

.tribunal-tab {
  min-height: 180px !important;
  padding: 17px 15px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(212, 164, 55, 0.24) !important;
  background: linear-gradient(180deg, #101010, #060606) !important;
  color: #ffffff !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: 0.3s ease !important;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.36) !important;
  position: relative !important;
}

.tribunal-tab:hover,
.tribunal-tab.active {
  border-color: #d4a437 !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 18px 45px rgba(212, 164, 55, 0.15) !important;
}

.tribunal-tab.active::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: -16px !important;
  transform: translateX(-50%) rotate(45deg) !important;
  width: 16px !important;
  height: 16px !important;
  background: #101010 !important;
  border-right: 1px solid rgba(212, 164, 55, 0.35) !important;
  border-bottom: 1px solid rgba(212, 164, 55, 0.35) !important;
  z-index: 5 !important;
}

.tribunal-tab-icon {
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  margin: 0 auto 12px !important;
  background: rgba(212, 164, 55, 0.10) !important;
  border: 1px solid rgba(212, 164, 55, 0.42) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.tribunal-tab-icon i {
  font-size: 22px !important;
  color: #d4a437 !important;
}

.tribunal-tab:hover .tribunal-tab-icon,
.tribunal-tab.active .tribunal-tab-icon {
  background: linear-gradient(135deg, #e1bc5a, #d4a437) !important;
}

.tribunal-tab:hover .tribunal-tab-icon i,
.tribunal-tab.active .tribunal-tab-icon i {
  color: #111111 !important;
}

.tribunal-tab h3 {
  font-size: 15.5px !important;
  line-height: 1.25 !important;
  margin-bottom: 7px !important;
  color: #f5f1e8 !important;
}

.tribunal-tab p {
  font-size: 11.7px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  color: #cfcfcf !important;
}

/* Detail box row wise */
.tribunal-detail-box {
  display: none !important;
  padding: 24px 28px 26px !important;
  border-top: 4px solid #d4a437 !important;
  border-radius: 16px !important;
  background: linear-gradient(180deg, #101010, #060606) !important;
  border-left: 1px solid rgba(212, 164, 55, 0.28) !important;
  border-right: 1px solid rgba(212, 164, 55, 0.28) !important;
  border-bottom: 1px solid rgba(212, 164, 55, 0.28) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42) !important;
  animation: tribunalDetailOpen 0.35s ease forwards !important;
}

.tribunal-detail-box.open {
  display: block !important;
}

@keyframes tribunalDetailOpen {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

.tribunal-detail-panel {
  display: none !important;
}

.tribunal-detail-panel.active {
  display: block !important;
}

.tribunal-detail-panel h2 {
  text-align: center !important;
  color: #d4a437 !important;
  font-size: 27px !important;
  margin-bottom: 8px !important;
}

.tribunal-detail-panel p {
  text-align: center !important;
  max-width: 760px !important;
  margin: 0 auto 20px !important;
  color: #d6d6d6 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.tribunal-options-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 10px !important;
}

.tribunal-options-grid span {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  min-height: 40px !important;
  padding: 9px 12px !important;
  border: 1px solid rgba(212, 164, 55, 0.18) !important;
  border-radius: 9px !important;
  background: rgba(255, 255, 255, 0.035) !important;
  color: #f1f1f1 !important;
  font-size: 12.5px !important;
  line-height: 1.35 !important;
}

.tribunal-options-grid i {
  color: #d4a437 !important;
  font-size: 13px !important;
}

/* WhatsApp */
.tribunal-whatsapp-wrap {
  text-align: center !important;
  margin-top: 22px !important;
}

.tribunal-whatsapp-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  background: #25d366 !important;
  color: #ffffff !important;
  padding: 11px 25px !important;
  border-radius: 40px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.25) !important;
  transition: 0.3s ease !important;
}

.tribunal-whatsapp-btn:hover {
  transform: translateY(-3px) !important;
  color: #ffffff !important;
}

/* Tablet */
@media (max-width: 992px) {
  .tribunal-tabs-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .tribunal-options-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile */
@media (max-width: 576px) {
  #tribunal-services {
    padding: 46px 0 52px !important;
  }

  #tribunal-services .section-heading h1 {
    font-size: 27px !important;
  }

  .tribunal-tabs-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .tribunal-tab {
    min-height: auto !important;
    padding: 15px 12px !important;
  }

  .tribunal-tab.active::after {
    display: none !important;
  }

  .tribunal-detail-box {
    padding: 20px 14px 22px !important;
    border-radius: 14px !important;
  }

  .tribunal-detail-panel h2 {
    font-size: 22px !important;
  }

  .tribunal-detail-panel p {
    font-size: 13px !important;
  }

  .tribunal-options-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ==============================
   Tribunal Cards Link Mode
   Separate Detail Page
   ============================== */

#tribunal-services .tribunal-tab {
  text-decoration: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

#tribunal-services .tribunal-tab:hover {
  text-decoration: none !important;
}

#tribunal-services .tribunal-view-more {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;

  margin-top: 12px !important;
  padding: 7px 14px !important;

  border-radius: 30px !important;
  border: 1px solid rgba(212, 164, 55, 0.35) !important;
  background: rgba(212, 164, 55, 0.08) !important;
  color: #d4a437 !important;

  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;

  transition: 0.3s ease !important;
}

#tribunal-services .tribunal-view-more i {
  font-size: 10px !important;
  margin: 0 !important;
  color: inherit !important;
}

#tribunal-services .tribunal-tab:hover .tribunal-view-more {
  background: #d4a437 !important;
  color: #111111 !important;
}

/* =========================================
   Why Choose Us — Service Card Design
========================================= */
.why-services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 15px;
  align-items: stretch;
}

.why-services-grid .service-card {
  width: 100%;
  min-height: 220px;
  padding: 22px 15px;
  text-align: center;
  align-items: center;
  cursor: pointer;
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.why-services-grid .service-icon {
  margin: 0 auto 14px;
}

.why-services-grid .service-card h3 {
  margin-bottom: 9px;
  font-size: 15px;
  line-height: 1.4;
}

.why-services-grid .service-card p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.65;
}

.why-services-grid .service-card:hover,
.why-services-grid .service-card.card-active,
.why-services-grid .service-card:focus-visible {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  outline: none;
}

.why-services-grid .service-card:active {
  transform: translateY(-5px) scale(.985);
}

@media (max-width: 1199px) {
  .why-services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 991px) {
  .why-services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .why-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .why-services-grid .service-card {
    min-height: 205px;
    padding: 18px 11px;
  }

  .why-services-grid .service-card h3 { font-size: 13px; }
  .why-services-grid .service-card p { font-size: 11px; line-height: 1.55; }
}

@media (max-width: 390px) {
  .why-services-grid { grid-template-columns: 1fr; }
  .why-services-grid .service-card { min-height: auto; }
}

/* =========================================
   Client Reviews — Continuous Loop
========================================= */
.reviews-slider-wrapper {
  position: relative;
  padding: 0 48px;
}

.reviews-slider {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 3px 18px;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-inline: contain;
}

.reviews-slider::-webkit-scrollbar { display: none; }

.review-slide {
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: calc((100% - 48px) / 4);
}

.reviews-slider .review-card {
  height: 100%;
  min-height: 245px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.reviews-slider .review-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.reviews-slider .quote-stars {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.reviews-slider .quote-stars i { font-size: 23px; }
.reviews-slider .quote-stars span { font-size: 13px; letter-spacing: 2px; }

.reviews-slider .review-card > p {
  flex: 1;
  min-height: 0;
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1.7;
}

.reviews-slider .review-author {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
  padding-top: 14px;
}

.reviews-slider .avatar {
  width: 39px;
  height: 39px;
  min-width: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.reviews-slider .review-author h4 { margin: 0 0 3px; font-size: 14px; line-height: 1.3; }
.reviews-slider .review-author small { font-size: 11px; }

.review-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
}

.review-slider-btn:hover { transform: translateY(-50%) translateY(-3px); }
.review-slider-btn:active { transform: translateY(-50%) scale(.94); }
.review-prev-btn { left: 0; }
.review-next-btn { right: 0; }
.review-slider-btn i { font-size: 13px; }

@media (max-width: 1199px) {
  .review-slide {
    flex-basis: calc((100% - 32px) / 3);
    min-width: calc((100% - 32px) / 3);
  }
}

@media (max-width: 991px) {
  .review-slide {
    flex-basis: calc((100% - 16px) / 2);
    min-width: calc((100% - 16px) / 2);
  }
  .reviews-slider .review-card { min-height: 235px; }
}

@media (max-width: 575px) {
  .reviews-slider-wrapper { padding: 0 34px; }
  .reviews-slider { gap: 12px; }
  .review-slide { flex-basis: 100%; min-width: 100%; }
  .reviews-slider .review-card { min-height: 225px; padding: 20px 17px; }
  .review-slider-btn { width: 32px; height: 32px; }
  .review-prev-btn { left: -2px; }
  .review-next-btn { right: -2px; }
}

.firm-slider {
    position: relative;
}

.firm-slider .carousel-inner {
    position: relative;
    z-index: 1;
}

.firm-slider .carousel-control-prev,
.firm-slider .carousel-control-next {
    z-index: 20;
    width: 60px;
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}

.firm-slider .carousel-control-prev {
    left: 10px;
}

.firm-slider .carousel-control-next {
    right: 10px;
}

.firm-slider .firm-slider-arrow {
    pointer-events: none;
}

/* =========================================
   Simple Footer Bottom
========================================= */

.site-footer .footer-bottom-simple {
    width: 100%;
    margin-top: 35px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer .footer-bottom-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    text-align: center;
    color: #53647d;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.site-footer .footer-divider {
    color: #53647d;
    font-size: 13px;
    opacity: 0.9;
}

.site-footer .footer-developer a {
    color: #53647d;
    font-family: inherit;
    font-size: inherit;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer .footer-developer a:hover {
    color: #c5a15a;
}

/* Mobile */
@media (max-width: 575px) {
    .site-footer .footer-bottom-simple {
        margin-top: 25px;
        padding: 17px 0;
    }

    .site-footer .footer-bottom-content {
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px 9px;
        text-align: center;
        font-size: 11px;
    }
}

/* =========================================================
   FINAL THEME CONSISTENCY, BUTTONS & BIDIRECTIONAL MOTION
   ========================================================= */
:root {
  --theme-bg: #050505;
  --theme-surface: #0d0d0d;
  --theme-surface-2: #111111;
  --theme-gold: #d4a437;
  --theme-gold-light: #e8bf58;
  --theme-text: #f5f1e8;
  --theme-muted: #cfcfcf;
  --theme-border: rgba(212, 164, 55, .42);
  --theme-shadow: 0 18px 45px rgba(212, 164, 55, .15);
}

/* Header navigation keeps sentence case and one consistent size */
.main-header .navbar-nav .nav-link {
  font-size: 13px !important;
  text-transform: none !important;
  letter-spacing: .2px !important;
}

/* Consistent heading scale after semantic H1/H2 cleanup */
.section-heading h2 {
  font-size: clamp(30px, 3.2vw, 46px) !important;
  line-height: 1.16 !important;
}

.founder-content h2 {
  font-size: 38px !important;
  color: var(--theme-text) !important;
  margin-bottom: 7px !important;
  text-transform: uppercase !important;
  line-height: 1.15 !important;
}

/* Accessibility */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100000;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--theme-gold);
  color: #080808;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform .25s ease;
}

.skip-link:focus { transform: translateY(0); }

/* Consistent black-and-gold section palette */
.founder-dedication-section,
#ceo,
.services-section,
#tribunal-services,
.advocates-section,
.about-section,
.why-section,
.reviews-section,
.clients-section,
.firm-highlights-section,
.find-us-section,
.contact-cta-section {
  color: var(--theme-muted);
}

.why-section,
.reviews-section,
.firm-highlights-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 164, 55, .07), transparent 34%),
    linear-gradient(180deg, #090909 0%, #050505 100%);
}

/* One shared card interaction */
.premium-card,
.advocate-card,
.client-logo-item,
.ceo-image-card,
.contact-form-card,
.find-us-map-box {
  border-color: var(--theme-border);
}

.premium-card:hover,
.advocate-card:hover,
.client-logo-item:hover {
  transform: translateY(-8px) !important;
  border-color: var(--theme-gold) !important;
  box-shadow: var(--theme-shadow) !important;
}

/* Unified button foundation */
.btn-gold,
.btn-outline-gold,
.ceo-view-more-btn,
.review-slider-btn,
.find-us-btn,
.contact-submit-btn,
#firm-highlights .firm-slider-arrow {
  border: 1px solid var(--theme-gold) !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: .25px !important;
  transition:
    transform .28s ease,
    color .28s ease,
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease !important;
  box-shadow: 0 10px 24px rgba(212, 164, 55, .14) !important;
}

/* Primary gold buttons */
.btn-gold,
.find-us-btn,
.contact-submit-btn {
  background: linear-gradient(135deg, var(--theme-gold-light), var(--theme-gold)) !important;
  color: #080808 !important;
}

.btn-gold i,
.find-us-btn i,
.contact-submit-btn i { color: #080808 !important; }

.btn-gold:hover,
.find-us-btn:hover,
.contact-submit-btn:hover {
  background: linear-gradient(135deg, #f1ce70, var(--theme-gold-light)) !important;
  color: #050505 !important;
  border-color: var(--theme-gold-light) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 36px rgba(212, 164, 55, .24) !important;
}

/* Secondary outline buttons */
.btn-outline-gold,
.ceo-view-more-btn,
.review-slider-btn,
#firm-highlights .firm-slider-arrow {
  background: rgba(5, 5, 5, .82) !important;
  color: var(--theme-gold) !important;
}

.btn-outline-gold i,
.ceo-view-more-btn i,
.review-slider-btn i,
#firm-highlights .firm-slider-arrow i { color: inherit !important; }

.btn-outline-gold:hover,
.ceo-view-more-btn:hover,
.review-slider-btn:hover,
#firm-highlights .carousel-control-prev:hover .firm-slider-arrow,
#firm-highlights .carousel-control-next:hover .firm-slider-arrow {
  background: var(--theme-gold) !important;
  color: #080808 !important;
  border-color: var(--theme-gold) !important;
  box-shadow: 0 16px 34px rgba(212, 164, 55, .22) !important;
}

.btn-outline-gold:hover,
.ceo-view-more-btn:hover { transform: translateY(-3px) !important; }

/* Keep WhatsApp actions in their official brand color */
.wa-premium-float,
.services-whatsapp-btn,
.tribunal-whatsapp-btn {
  background: #25d366 !important;
  color: #ffffff !important;
  border-color: #25d366 !important;
}

/* CEO show/hide moved from inline CSS */
.ceo-view-more-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px 0 10px;
}

.ceo-view-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 155px;
  padding: 12px 26px;
  border-radius: 7px;
  cursor: pointer;
}

.ceo-view-more-btn i {
  font-size: 12px;
  transition: transform .3s ease;
}

.ceo-view-more-btn.active i { transform: rotate(180deg); }

.ceo-more-content {
  display: none;
  margin-top: 0;
}

.ceo-more-content.show {
  display: block;
  margin-top: 25px;
  animation: ceoDetailsOpen .5s cubic-bezier(.22, .61, .36, 1) both;
}

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

/* Contact section now follows the same black-and-gold visual language */
.contact-info-icon,
.contact-info-icon.green-icon {
  background: linear-gradient(135deg, var(--theme-gold-light), var(--theme-gold)) !important;
}

.contact-info-icon i { color: #080808 !important; }

.contact-form-card {
  background: linear-gradient(180deg, #111111, #070707) !important;
  border: 1px solid var(--theme-border) !important;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .55) !important;
}

.contact-form-card h3 { color: var(--theme-gold) !important; }

.contact-form-card input,
.contact-form-card textarea {
  background: #0b0b0b !important;
  color: var(--theme-text) !important;
  border: 1px solid rgba(212, 164, 55, .22) !important;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease !important;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder { color: #9d9d9d !important; }

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  background: #0f0f0f !important;
  border-color: var(--theme-gold) !important;
  box-shadow: 0 0 0 3px rgba(212, 164, 55, .12) !important;
}

/* Footer bottom no longer introduces a blue-grey accent */
.site-footer .footer-bottom-content,
.site-footer .footer-divider,
.site-footer .footer-developer a {
  color: #a9a9a9 !important;
}

.site-footer .footer-developer a:hover { color: var(--theme-gold) !important; }

/* Placeholder team links do not jump to page top */
.placeholder-link {
  opacity: .55;
  cursor: default;
}

/* Bidirectional reveal: JS changes entry direction while scrolling up/down */
.reveal-up,
.reveal-left,
.reveal-right {
  --reveal-x: 0px;
  --reveal-y: 34px;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0);
  transition:
    opacity .72s cubic-bezier(.22, .61, .36, 1),
    transform .72s cubic-bezier(.22, .61, .36, 1) !important;
  will-change: opacity, transform;
}

.reveal-left { --reveal-x: -34px; }
.reveal-right { --reveal-x: 34px; }
.reveal-from-top { --reveal-y: -34px; }
.reveal-from-bottom { --reveal-y: 34px; }

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 576px) {
  .ceo-view-more-wrapper { margin-top: 22px; }
  .ceo-view-more-btn { min-width: 145px; padding: 11px 22px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }

  .reviews-slider { overflow-x: auto; }
}
/* =========================================
   FIND US - FINAL DESKTOP / MOBILE FIX
========================================= */

.find-us-section {
    padding: 80px 0;
}

.find-us-heading {
    text-align: center;
    margin-bottom: 45px;
}

/* DESKTOP - BOTH OFFICES SIDE BY SIDE */
.find-us-locations-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px !important;
    width: 100% !important;
    align-items: start !important;
}

.find-us-location-card {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.find-us-location-title {
    margin-bottom: 18px !important;
}

.find-us-location-title h3 {
    margin: 0 0 10px 0 !important;
}

.find-us-location-title p {
    margin: 0 !important;
    line-height: 1.6;
    min-height: 52px;
}

/* MAP */
.find-us-map-box {
    position: relative;
    width: 100% !important;
    height: 380px !important;
    overflow: hidden;
    border-radius: 10px;
}

.find-us-map-box iframe {
    display: block;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

/* Makes full map clickable */
.map-click-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
    background: transparent;
}


/* =========================================
   TABLET / MOBILE
========================================= */

@media only screen and (max-width: 991px) {

    .find-us-locations-grid {
        grid-template-columns: 1fr !important;
        gap: 45px !important;
    }

    .find-us-location-title p {
        min-height: auto;
    }

    .find-us-map-box {
        height: 330px !important;
    }
}


/* SMALL MOBILE */
@media only screen and (max-width: 576px) {

    .find-us-section {
        padding: 50px 0;
    }

    .find-us-map-box {
        height: 280px !important;
    }

    .find-us-locations-grid {
        gap: 40px !important;
    }
}
.find-us-locations-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px !important;
}

/* ================= Footer Contact Spacing Fix ================= */

.footer-contact p {
    margin: 0 0 10px !important;
    line-height: 1.5;
}

.footer-contact p:last-child {
    margin-bottom: 0 !important;
}

.footer-contact h4 {
    margin-bottom: 20px !important;
}

/* Address blocks */
.footer-contact p span {
    line-height: 1.55;
}

/* Icon aur text ka gap */
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact p > i,
.footer-contact p > a > i {
    margin-top: 4px;
    flex-shrink: 0;
}

/* Links */
.footer-contact a {
    line-height: 1.5;
}
.footer-contact p {
    margin-bottom: 7px !important;
}

/* ===============================
   FIND US - MOBILE STACK FIX
================================ */

@media only screen and (max-width: 767px) {

    .find-us-locations-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        width: 100% !important;
    }

    .find-us-location-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .find-us-location-title {
        width: 100% !important;
        margin-bottom: 16px !important;
    }

    .find-us-location-title h3 {
        margin-bottom: 8px !important;
    }

    .find-us-location-title p {
        min-height: auto !important;
        margin: 0 !important;
    }

    .find-us-map-box {
        width: 100% !important;
        height: 300px !important;
    }
}