:root {
  --color-primary: #0f4c97;
  --color-secondary: #2b6cb0;
  --color-accent: #1d5fbf;
  --color-bg: #f4f7fb;
  --color-text: #1f2937;
  --color-surface: #ffffff;
  --ink-strong: #111827;
  --ink-high: #1f2937;
  --ink-body: #374151;
  --ink-muted: #6b7280;
  --heading-highlight: #0f4c97;
  --shadow-soft: 0 12px 30px rgba(15, 76, 151, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Lato", "Trebuchet MS", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(1200px circle at -10% -10%, rgba(37, 99, 235, 0.14), transparent 58%),
    radial-gradient(900px circle at 110% 0%, rgba(56, 189, 248, 0.1), transparent 54%),
    linear-gradient(180deg, #fcfdff 0%, #f4f7fb 52%, #ffffff 100%);
  line-height: 1.6;
}

h1,
h2,
.brand-text {
  font-family: "Merriweather", "Georgia", serif;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--color-surface);

  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.top-strip {
  background :linear-gradient(120deg, black, #222222); 
  color: #ffffff;
}

.top-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.7rem;
  padding: 0.34rem 0;
}

.top-message {
  margin: 0;
  display:flex;
  align-items:baseline;
  gap: 0.34rem;
  font-size: 10px;
  
  font-weight: 600;
}

.msg-full {
  display: none;
}

/* .top-call {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.22rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.top-call:hover {
  background: rgba(0, 105, 39, 0.2);
} */

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink-strong);
}

.brand-mark {
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 0.58rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
  background: linear-gradient(150deg, var(--color-primary), #222222);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.brand-text {
  font-size: 0.9rem;
  font-weight: 700;
}

.brand-full {
  display: none;
}

.nav-toggle {
  width: 2.3rem;
  height: 2.3rem;
  border: 0;
  border-radius: 0.62rem;
  background: var(--color-primary);
  color: #ffffff;
  display: inline-grid;
  place-items: center;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.nav-toggle i {
  position: absolute;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.nav-toggle .icon-bars {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.nav-toggle .icon-close {
  opacity: 0;
  transform: rotate(-100deg) scale(0.65);
}

.nav-toggle.is-active {
  background: var(--color-accent);
  transform: translateY(-1px);
}

.nav-toggle.is-active .icon-bars {
  opacity: 0;
  transform: rotate(90deg) scale(0.7);
}

.nav-toggle.is-active .icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.main-nav {
  display: flex;
  order: 3;
  width: 100%;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  z-index: 12;
  flex-direction: column;
  gap: 0.18rem;
  margin-top: 0;
  padding: 0.4rem;
  border: 1px solid rgba(0, 0, 0, 0.17);
  border-radius: 0.72rem;
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top center;
  will-change: transform, opacity;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s linear 0.18s;
}

.main-nav.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s linear 0s;
}

.main-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.44rem 0.52rem;
  border-radius: 0.34rem;
  transition: background-color 0.2s ease;
}

.main-nav a:hover {
  background: rgba(0, 0, 0, 0.14);
}

.main-nav .nav-cta,
.primary-btn {
  background: var(--color-accent);
  color: #ffffff;
}

.main-nav .nav-cta {
  margin-top: 0.16rem;
}

.main-nav .nav-cta:hover,
.primary-btn:hover {
  background: #111111;
}

/* main {
  padding: 0 0 clamp(2.2rem, 4.6vh, 3.8rem);
}  */

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.56rem 0.92rem;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.hero-premium {
  position: relative;
  overflow: hidden; 
  border-radius: 1.35rem;
  border: none;
  background:
    radial-gradient(circle at 86% 16%, rgba(0, 0, 0, 0.25), transparent 42%),
    radial-gradient(circle at 8% 86%, rgba(0, 0, 0, 0.14), transparent 48%),
    linear-gradient(165deg, #ffffff 0%, #ffffff 58%, #ffffff 100%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12); 
  margin-bottom: 1.2rem;
   color: var(--color-text);
}

.hero-premium::before,
.hero-premium::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-premium::before {
  width: 18rem;
  height: 10rem;
  left: -8rem;
  top: -7.4rem;
  border-radius: 45% 55% 60% 40% / 40% 48% 52% 60%;
  background: rgba(255, 255, 255, 0.58);
}

.hero-premium::after {
  width: 13rem;
  height: 8rem;
  right: -4.8rem;
  /* bottom: -5rem; */
  border-radius: 58% 42% 48% 52% / 48% 44% 56% 52%;
  background: rgba(0, 0, 0, 0.08);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.2rem;
  /* padding: 1.2rem 1rem 1.15rem; */
}

.hero-content {
  animation: hero-rise 0.45s ease both;
}

/* .hero-kicker {
  margin: 0;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #222222;
  background: rgba(255, 255, 255, 0.78);

  border-radius: 999px;
  padding: 0.32rem 0.65rem;
} */

.hero h1 {
  margin: 0.78rem 0 0.68rem;
  /* padding-bottom: 1.85rem; */
  font-size: clamp(1.32rem, 4.8vw, 2.45rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  max-width: 18.5ch;
  color: var(--color-primary);
}

.hero-lead {
  margin: 0;
  padding-bottom: 0.30rem;
  font-size: clamp(0.92rem, 2.7vw, 1.02rem);
  max-width: 52ch;
  color: #222222;
}

.hero-actions {
  margin-top: 0.50rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.56rem;
}

.hero-know-btn {
  margin-top: 0;
}

.hero-know-btn i {
  font-size: 0.86rem;
}

.hero .primary-btn {
  background: var(--color-primary);
}

.hero .primary-btn:hover {
  background: #222222;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.ghost-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.53rem 0.88rem;
  font-weight: 700;
  color: var(--ink-strong);
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.8);
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.ghost-btn:hover {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.32);
}

.hero-trust {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.40rem;
  padding: 0;
  font-size: 0.74rem;
  font-weight: 700;
  color: #222222;
}

.hero-trust span i {
  color: #111111;
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
  animation: hero-rise 0.78s ease both;
}

.hero-photo-wrap {
  position: relative;
  width: min(300px, 84vw);
  aspect-ratio: 4 / 5;
  border-radius: 58% 42% 47% 53% / 43% 57% 45% 55%;
  padding: 0.45rem;
  background: linear-gradient(160deg, #222222, #222222);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.27);
}

.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -0.45rem;
  border-radius: inherit;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  opacity: 0.35;
}

.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.24), transparent 40%);
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.hero-photo-meta {
  margin: 0.58rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #222222;
}

.hero-photo-meta i {
  color: #111111;
}

.about-mini {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.18rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background:
    radial-gradient(circle at 92% 20%, rgba(0, 0, 0, 0.16), transparent 42%),
    linear-gradient(155deg, #ffffff 12%, #ffffff 100%);
}

.about-mini::before {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  left: -6rem; 
   top: -6rem;
  border-radius: 62% 38% 54% 46% / 42% 58% 42% 58%;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.about-mini-inner {
  position: relative;
  z-index: 1;
  padding: 1.02rem 0.95rem;
}

.about-mini-kicker {
  margin: 0;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #4a4a4a;
}

.about-mini h2 {
  margin: 0.42rem 0 0.45rem;
  font-size: clamp(1.06rem, 3.4vw, 1.45rem);
  line-height: 1.3;
  max-width: 42ch;
  color: var(--color-primary);
}

.about-mini-text {
  margin: 0;
  max-width: 62ch;
  font-size: 0.9rem;
  color: #222222;
}

.about-mini-link {
  margin-top: 0.64rem;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  color: #222222;
  transition: transform 0.22s ease, color 0.22s ease;
}

.about-mini-link:hover {
  transform: translateX(2px);
  color: #222222;
}

.about-mini-link i {
  font-size: 0.72rem;
}

.practice-section {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.2rem;
  padding: 1.08rem 0.95rem 1.15rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.09);
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 0, 0, 0.19), transparent 38%),
    linear-gradient(160deg, #ffffff 8%, #ffffff 100%);
}

.practice-section::before,
.practice-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.practice-section::before {
  width: 14rem;
  height: 14rem;
  left: -7.6rem;
  top: -7rem;
  border-radius: 53% 47% 60% 40% / 42% 56% 44% 58%;
  background: rgba(255, 255, 255, 0.62);
}

.practice-section::after {
  width: 12.5rem;
  height: 12.5rem;
  right: -6rem;
  bottom: -6rem;
  border-radius: 48% 52% 44% 56% / 60% 40% 60% 40%;
  background: rgba(0, 0, 0, 0.06);
}

.practice-head {
  position: relative;
  z-index: 1;
}

.practice-kicker {
  margin: 0;
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #222222;
}

.practice-head h2 {
  margin: 0.5rem 0 0.5rem;
  font-size: clamp(1.22rem, 4.4vw, 2rem);
  line-height: 1.22;
  max-width: 22ch;
  color: var(--color-primary);
}

/* .text-highlight {
  position: relative;
  color: var(--color-primary);
  font-weight: 800;
}

.text-highlight::after {
  content: "";
  position: absolute;
  left: 0.08em;
  right: 0.08em;
  bottom: 0.08em;
  height: 0.42em;
  z-index: -1;
  border-radius: 0.5em;
  background: rgba(124, 58, 237, 0.2);
} */

.practice-lead {
  margin: 0;
  max-width: 58ch;
  font-size: 0.95rem;
  color: #222222;
}

.practice-grid {
  position: relative;
  z-index: 1;
  margin-top: 0.96rem;
  display: grid;
  gap: 0.78rem;
}

.practice-item {
  --practice-accent: #222222;
  border-radius: 1.5rem 2.2rem 1.7rem 2.1rem / 1.7rem 1.4rem 2rem 1.6rem;
  padding: 0.95rem 0.9rem 0.88rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.11);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.practice-criminal {
  --practice-accent: #222222;
}

.practice-civil {
  --practice-accent: #222222;
}

.practice-family {
  --practice-accent: #111111;
}

.practice-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.24);
  background: #ffffff;
}

.practice-icon {
  margin: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 52% 48% 42% 58% / 46% 56% 44% 54%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.08);
  color: var(--practice-accent);
  font-size: 0.84rem;
}

.practice-item h3 {
  margin: 0.56rem 0 0.32rem;
  font-family: "Merriweather", "Georgia", serif;
  font-size: 1rem;
  color: var(--ink-strong);
}

.practice-item > p:not(.practice-icon) {
  margin: 0;
  font-size: 0.87rem;
  color: #222222;
}

.practice-link {
  margin-top: 0.62rem;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  font-size: 0.81rem;
  font-weight: 800;
  color: var(--practice-accent);
}

.practice-link i {
  font-size: 0.72rem;
}

.why-section {
  margin-bottom: 0.4rem;
  padding: 0.2rem 0.1rem;
}

.why-kicker {
  margin: 0;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #555555;
}

.why-section h2 {
  margin: 0.36rem 0 0.46rem;
  font-size: clamp(1.12rem, 3.8vw, 1.7rem);
  line-height: 1.28;
  color: var(--color-primary);
}

.why-intro {
  margin: 0;
  max-width: 68ch;
  font-size: 0.92rem;
  color: #3a3a3a;
}

.why-list {
  list-style: none;
  margin: 0.95rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.84rem;
}

.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 0.58rem;
}

.why-item i {
  margin-top: 0.08rem;
  font-size: 0.92rem;
  color: #222222;
}

.why-item h3 {
  margin: 0;
  font-family: "Merriweather", "Georgia", serif;
  font-size: 0.98rem;
  line-height: 1.32;
  color: var(--ink-strong);
}

.why-item p {
  margin: 0.2rem 0 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #222222;
}

.why-section ul {
  margin: 0;
  padding: 0;
}

.contact-section {
  position: relative;
  overflow: hidden;
  margin-top: 1.3rem;
  margin-bottom: 0.2rem;
  padding: clamp(1.55rem, 4vh, 2.5rem) clamp(1rem, 2.8vw, 2.1rem);
  border-radius: 1.45rem;
  border: 1px solid rgba(76, 29, 149, 0.14);
  background:
    radial-gradient(circle at 90% 10%, rgba(124, 58, 237, 0.2), transparent 36%),
    linear-gradient(160deg, #ffffff 0%, #f6f2ff 64%, #ffffff 100%);
}

.contact-section::before {
  content: "";
  position: absolute;
  width: 14rem;
  height: 14rem;
  left: -7rem;
  bottom: -8rem;
  border-radius: 58% 42% 50% 50% / 40% 54% 46% 60%;
  background: rgba(91, 33, 182, 0.12);
  pointer-events: none;
}

.contact-head {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(0.9rem, 2vh, 1.4rem);
}

.contact-head h2 {
  margin: 0;
  font-size: clamp(1.28rem, 3.4vw, 2rem);
  line-height: 1.2;
  color: var(--color-primary);
  max-width: 24ch;
}

.contact-layout {
  position: relative;
  z-index: 1;
  margin-top: 0;
  align-items: start;
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.8rem);
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  padding: clamp(1rem, 2.6vh, 1.45rem);
  border-radius: 1.08rem;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 255, 0.92));
  border: 1px solid rgba(76, 29, 149, 0.14);
  box-shadow: 0 14px 28px rgba(76, 29, 149, 0.12);
}

.contact-line {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.46rem;
  padding-bottom: 0.42rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
  color: #2f2f2f;
}

.contact-line:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-line i {
  margin-top: 0.16rem;
  width: 1rem;
  font-size: 0.86rem;
  color: #222222;
}

.contact-line a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
}

.contact-line a:hover {
  text-decoration: underline;
  text-underline-offset: 0.15rem;
}

.office-hours {
  margin-top: 0.38rem;
  padding-top: 0.58rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: grid;
  gap: 0.42rem;
}

.office-hours p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  font-size: 0.84rem;
  color: #3a3a3a;
}

.office-hours i {
  color: #111111;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.form-head h3 {
  margin: 0;
  font-family: "Merriweather", "Georgia", serif;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--ink-strong);
}

.form-field {
  display: grid;
  gap: 0.28rem;
}

.form-field label {
  font-size: 0.76rem;
  font-weight: 700;
  color: #222222;
}

.field-hint {
  margin: 0;
  font-size: 0.74rem;
  color: #222222;
}

.field-error {
  margin: 0;
  min-height: 1.15em;
  font-size: 0.74rem;
  font-weight: 700;
  color: #b14242;
}

.field-error:empty {
  min-height: 0;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 0;
  background: transparent;
  padding: 0.45rem 0.05rem;
  font: inherit;
  color: var(--ink-strong);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #666666;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: #222222;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-bottom-color: #b14242;
}

.form-field textarea {
  resize: vertical;
  min-height: 6.2rem;
}

.contact-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.8rem;
  font-weight: 700;
}

.contact-status.is-error {
  color: #b14242;
}

.contact-status.is-success {
  color: #111111;
}

.contact-submit {
  margin-top: 0.1rem;
  width: fit-content;
}

.contact-submit[disabled] {
  opacity: 0.72;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.contact-submit i {
  font-size: 0.92rem;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .hero-visual {
    animation: none;
  }

  .primary-btn,
  .ghost-btn,
  .about-mini-link,
  .practice-item,
  .practice-link,
  .nav-toggle,
  .main-nav,
  .main-nav a {
    transition: none;
  }
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 0, 0, 0.16), transparent 34%),
    linear-gradient(160deg, #ffffff 0%, #ffffff 60%, #ffffff 100%);
  color: #2f2f2f;
}

.site-footer > .container > p {
  margin: 0;
  padding: 1rem 0;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 0 1rem;
}

.footer-col h2 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.3;
  color: var(--color-primary);
}

.footer-about {
  margin: 0.48rem 0 0;
  font-size: 0.86rem;
  color: #3a3a3a;
}

.footer-mobile-actions {
  display: none;
}

.footer-social {
  margin-top: 0.62rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-social a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  padding: 0.36rem 0.56rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
  color: #222222;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.3);
  background: #ffffff;
}

.footer-list {
  margin: 0.56rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.34rem;
}

.footer-list a {
  text-decoration: none;
  font-size: 0.84rem;
  color: #222222;
}

.footer-list a:hover {
  text-decoration: underline;
  text-underline-offset: 0.15rem;
}

.footer-map-text {
  margin: 0.5rem 0 0.42rem;
  font-size: 0.84rem;
  color: #222222;
}

.footer-map-wrap {
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 0.8rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.footer-map-wrap iframe {
  display: block;
  width: 100%;
  height: 190px;
  border: 0;
}

.footer-map-link {
  margin-top: 0.48rem;
  display: inline-flex;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.81rem;
  color: #222222;
}

.footer-map-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.14rem;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.76rem 0 0.95rem;
  display: grid;
  gap: 0.3rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: #222222;
}
#ishvora{
  color: rgb(255, 0, 132);
  padding: 4px;
  border: 0.1px solid pink;
  border-radius: 10px;
  background-color: rgba(216, 112, 147, 0.156);
}

.footer-bottom a {
  width: fit-content;
  text-decoration: none;
  font-size: 0.79rem;
  font-weight: 700;
  color: #222222;
}

.footer-bottom a:hover {
  text-decoration: underline;
  text-underline-offset: 0.14rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (min-width: 900px) {
  .top-strip-inner {
    justify-content: space-between;
    gap: 0.6rem 1rem;
    padding: 0.52rem 0;
  }

  .top-message {
    font-size: 0.88rem;
    gap: 0.48rem;
  }

  .msg-short {
    display: none;
  }

  .msg-full {
    display: inline;
  }

  .top-call {
    font-size: 0.82rem;
    padding: 0.3rem 0.7rem;
    gap: 0.38rem;
  }

  .nav-wrap {
    flex-wrap: nowrap; 
     gap: 1.15rem; 
     padding: 0.78rem 0 0.92rem;
  }

  .brand-mark {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 0.68rem;
    font-size: 0.84rem;
  }

  .brand-text {
    font-size: 1rem;
  }

  .brand-short {
    display: none;
  }

  .brand-full {
    display: inline;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    order: 0;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    z-index: auto;
    width: auto;
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    flex-direction: row;
    align-items: center;
    gap: 0.22rem;
    opacity: 1;
    transform: none;
    will-change: auto;
    pointer-events: auto;
    visibility: visible;
    transition: none;
  }

  .main-nav a {
    font-size: 0.9rem;
    padding: 0.46rem 0.58rem;
    transition: background-color 0.2s ease;
  }

  .main-nav .nav-cta {
    margin-top: 0;
  }

  .hero-premium {
    background:
      radial-gradient(circle at 92% 10%, rgba(0, 0, 0, 0.3), transparent 40%),
      radial-gradient(circle at 4% 88%, rgba(0, 0, 0, 0.22), transparent 54%),
      linear-gradient(118deg, #ffffff 0%, #ffffff 48%, #ffffff 100%);
  }

  .hero-premium::before {
    width: 24rem;
    height: 24rem;
    left: -10rem;
    top: -9rem;
  }

  .hero-premium::after {
    width: 17rem;
    height: 17rem;
    right: -6rem;
    bottom: -6rem;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 1.75rem;
    padding: 1.6rem 1.5rem 1.52rem;
  }

  .hero h1 {
    margin-top: 0.86rem;
    margin-bottom: 0.75rem;
    max-width: 17ch;
  }

  .hero-kicker {
    font-size: 0.74rem;
    padding: 0.33rem 0.7rem;
  }

  .hero-lead {
    font-size: 1.01rem;
    max-width: 48ch;
  }

  .hero-actions {
    margin-top: 1.04rem;
  }

  .ghost-btn {
    padding: 0.55rem 0.95rem;
  }

  .hero-trust {
    margin-top: 1.05rem;
    gap: 0.66rem;
  }

  .hero-trust span {
    font-size: 0.76rem;
  }

  .hero-visual {
    justify-items: end;
  }

  .hero-photo-wrap {
    width: min(355px, 33vw);
    padding: 0.55rem;
    border-radius: 52% 48% 56% 44% / 44% 58% 42% 56%;
  }

  .hero-photo-meta {
    margin-top: 0.72rem;
    font-size: 0.86rem;
  }

  .about-mini {
    border-radius: 1.35rem;
    background:
      radial-gradient(circle at 94% 22%, rgba(0, 0, 0, 0.21), transparent 40%),
      linear-gradient(120deg, #ffffff 0%, #ffffff 100%);
  }

  .about-mini::before {
    width: 15rem;
    height: 15rem;
    left: -7.4rem;
    top: -7rem;
  }

  .about-mini-inner {
    padding: 1.18rem 1.3rem 1.1rem;
  }

  .about-mini h2 {
    max-width: 46ch;
  }

  .about-mini-text {
    font-size: 0.92rem;
    max-width: 72ch;
  }

  .about-mini-link {
    margin-top: 0.7rem;
    font-size: 0.83rem;
  }

  .practice-section {
    padding: 1.4rem 1.3rem 1.46rem;
    background:
      radial-gradient(circle at 93% 12%, rgba(0, 0, 0, 0.24), transparent 37%),
      radial-gradient(circle at 5% 94%, rgba(0, 0, 0, 0.2), transparent 52%),
      linear-gradient(116deg, #ffffff 0%, #ffffff 56%, #ffffff 100%);
  }

  .practice-section::before {
    width: 18rem;
    height: 18rem;
    left: -8.6rem;
    top: -8rem;
  }

  .practice-section::after {
    width: 14rem;
    height: 14rem;
    right: -6.4rem;
    bottom: -6.4rem;
  }

  .practice-head h2 {
    max-width: 24ch;
  }

  .practice-lead {
    max-width: 62ch;
  }

  .practice-grid {
    margin-top: 1.08rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .practice-item {
    padding: 1rem 0.96rem 0.95rem;
  }

  .practice-criminal {
    border-radius: 2rem 1.45rem 2.25rem 1.85rem / 1.7rem 2.1rem 1.55rem 2rem;
  }

  .practice-civil {
    border-radius: 1.5rem 2.25rem 1.7rem 2.15rem / 2rem 1.5rem 2rem 1.45rem;
  }

  .practice-family {
    border-radius: 2.2rem 1.75rem 1.6rem 2rem / 1.6rem 2rem 1.8rem 2.1rem;
  }

  .practice-item h3 {
    font-size: 1.04rem;
  }

  .practice-item > p:not(.practice-icon) {
    font-size: 0.88rem;
  }

  .why-section {
    padding: 0.25rem 0;
  }

  .why-section h2 {
    max-width: 28ch;
    margin-bottom: 0.5rem;
  }

  .why-intro {
    font-size: 0.95rem;
    max-width: 72ch;
  }

  .why-list {
    margin-top: 1.02rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1rem;
  }

  .why-item h3 {
    font-size: 1rem;
  }

  .why-item p {
    font-size: 0.87rem;
  }

  .contact-section {
    margin-top: 1.45rem;
    padding: 1.42rem 1.3rem 1.48rem;
    background:
      radial-gradient(circle at 92% 10%, rgba(0, 0, 0, 0.2), transparent 35%),
      radial-gradient(circle at 5% 94%, rgba(0, 0, 0, 0.18), transparent 50%),
      linear-gradient(120deg, #ffffff 0%, #ffffff 62%, #ffffff 100%);
  }

  .contact-section::before {
    width: 18rem;
    height: 18rem;
    left: -8.2rem;
    bottom: -9.4rem;
  }

  .contact-head h2 {
    max-width: 24ch;
  }

  .contact-layout {
    margin-top: 1.08rem;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: 1.55rem;
    align-items: stretch;
  }

  .contact-info {
    height: 100%;
    justify-content: space-between;
    padding: 1rem 0.96rem;
  }

  .contact-line a {
    font-size: 0.9rem;
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.95rem;
    row-gap: 0.75rem;
  }

  .form-head h3 {
    font-size: 1.05rem;
  }

  .form-field-full,
  .contact-status,
  .contact-submit {
    grid-column: 1 / -1;
  }

  .contact-submit {
    margin-top: 0.2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: start;
    padding: 1.45rem 0 1.15rem;
  }

  .footer-map-wrap iframe {
    height: 170px;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

/* Readability and section pacing refresh */

html {
  scroll-padding-top: 6.5rem;
}

main > section {
  margin: 0;
  min-height: max(560px, calc(100svh - 6.5rem));
  scroll-margin-top: 6.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* 
main > section + section {
  margin-top: clamp(1.5rem, 3.4vh, 3rem);
} */

.hero-premium,
.about-mini,
.practice-section,
.why-section {
  padding: clamp(1.5rem, 3.8vh, 2.8rem) clamp(1rem, 2.8vw, 2.2rem);
}

.hero-shell {
  gap: clamp(1.45rem, 3vh, 2.3rem);
  padding: clamp(1rem, 2.4vh, 1.8rem) 0;
}

.about-mini-inner {
  padding: clamp(0.95rem, 2.3vh, 1.6rem) 0;
}

.practice-grid,
.why-list {
  margin-top: clamp(1.2rem, 2.7vh, 2rem);
  gap: clamp(0.9rem, 2.1vh, 1.4rem);
}

.practice-item {
  padding: clamp(1rem, 2.2vh, 1.35rem);
}

main section h1,
main section h2 {
  color: var(--heading-highlight);
  letter-spacing: 0.01em;
}

main section h3 {
  color: var(--ink-strong);
  letter-spacing: 0.01em;
}

main section h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.32rem;
}

main section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.06rem;
  width: min(84px, 44%);
  height: 0.48rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 76, 151, 0.24), rgba(15, 76, 151, 0));
  z-index: -1;
}

main section p,
main section li {
  color: var(--ink-body);
  line-height: 1.78;
}

.hero-lead,
.about-mini-text,
.practice-lead,
.why-intro,
.practice-item > p:not(.practice-icon),
.why-item p,
.contact-line,
.office-hours p {
  color: var(--ink-high);
}

.hero-kicker,
.about-mini-kicker,
.practice-kicker,
.why-kicker,
.field-hint {
  color: var(--ink-muted);
}

main section strong {
  color: var(--ink-strong);
}

@media (max-width: 639px) {
  html {
    scroll-padding-top: 6rem;
  }

  main > section {
    min-height: max(520px, calc(100svh - 6rem));
    scroll-margin-top: 6rem;
  }
}

/* Purple identity and background refresh */

.site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(76, 29, 149, 0.16);
  box-shadow: 0 10px 24px rgba(76, 29, 149, 0.1);
  backdrop-filter: blur(8px);
}

.top-strip {
  background:linear-gradient(120deg, #01113d 0%, #001789 52%, #1f0646 100%); 
}

.brand-mark {
  background: linear-gradient(145deg, #4c1d95, #6d28d9);
  box-shadow: 0 10px 24px rgba(76, 29, 149, 0.26);
}

.main-nav {
  background: linear-gradient(180deg, #ffffff, #f5f3ff);
}

.main-nav.is-open {
  border-color: rgba(76, 29, 149, 0.16);
}

.main-nav a:hover {
  background: rgba(76, 29, 149, 0.1);
  color: var(--ink-strong);
}

.main-nav .nav-cta,
.primary-btn,
.hero .primary-btn {
  background: linear-gradient(145deg, #1b084f, #001579, #190a54);
  color: #fcfcff;
  box-shadow: 0 10px 24px rgba(76, 29, 149, 0.2);
}

.main-nav .nav-cta:hover,
.primary-btn:hover,
.hero .primary-btn:hover {
  background: linear-gradient(360deg, #0a0025, #06176b, #2600be);
}

.ghost-btn {
  color: var(--ink-strong);
  border-color: rgba(76, 29, 149, 0.34);
  background: rgba(255, 255, 255, 0.78);
}

.ghost-btn:hover {
  border-color: rgba(0, 86, 11, 0.6);
  background: rgba(255, 255, 255, 0.96);
}

.hero-premium {
  border: 1px solid rgba(76, 29, 149, 0.14);
  background:
    radial-gradient(circle at 88% 12%, rgba(124, 58, 237, 0.22), transparent 42%),
    radial-gradient(circle at 7% 90%, rgba(91, 33, 182, 0.18), transparent 48%),
    linear-gradient(165deg, #ffffff 0%, #f8f4ff 56%, #ffffff 100%);
  box-shadow: 0 16px 34px rgba(76, 29, 149, 0.14);
}

.hero-premium::before {
  background: rgba(167, 139, 250, 0.2);
}

.hero-premium::after {
  background: rgba(76, 29, 149, 0.1);
}

.hero-kicker {
  color: var(--ink-muted);
  border-color: rgba(76, 29, 149, 0.18);
  background: rgba(255, 255, 255, 0.84);
}

.hero-lead,
.about-mini-text,
.practice-lead,
.why-intro,
.contact-line {
  color: var(--ink-high);
}

.hero-trust span i,
.hero-photo-meta i,
.practice-icon,
.why-item i,
.contact-line i,
.office-hours i {
  color: var(--color-primary);
}

.hero-photo-wrap {
  padding: clamp(0.14rem, 0.38vw, 0.22rem);
  border-radius: 1.35rem;
  background: linear-gradient(155deg, #5b21b6 0%, #7c3aed 58%, #8b5cf6 100%);
  box-shadow:
    0 20px 38px rgba(76, 29, 149, 0.25),
    0 8px 18px rgba(76, 29, 149, 0.12);
  overflow: hidden;
  isolation: isolate;
}

.hero-photo-wrap::before {
  inset: 0.14rem;
  border-radius: calc(1.35rem - 0.14rem);
  border: 1px solid rgba(255, 255, 255, 0.42);
  opacity: 1;
}

.hero-photo-wrap::after {
  inset: 0.14rem;
  border-radius: calc(1.35rem - 0.14rem);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 44%);
}

.hero-photo {
  border-radius: calc(1.35rem - 0.14rem);
  filter: saturate(1.03) contrast(1.02);
}

.about-mini {
  border-color: rgba(76, 29, 149, 0.14);
  background:
    radial-gradient(circle at 92% 20%, rgba(124, 58, 237, 0.2), transparent 42%),
    linear-gradient(155deg, #ffffff 12%, #f9f6ff 100%);
}

.about-mini::before {
  background: rgba(167, 139, 250, 0.2);
}

.about-mini-link,
.practice-link,
.contact-line a {
  color: var(--ink-strong);
}

.about-mini-link:hover,
.practice-link:hover,
.contact-line a:hover {
  color: var(--heading-highlight);
}

.footer-social a[aria-label="WhatsApp"] {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.38);
  background: rgba(37, 211, 102, 0.08);
}

.footer-social a[aria-label="WhatsApp"]:hover {
  color: #1ea952;
  border-color: rgba(37, 211, 102, 0.56);
  background: rgba(37, 211, 102, 0.14);
}

.footer-social a[aria-label="Facebook"] {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.38);
  background: rgba(24, 119, 242, 0.08);
}

.footer-social a[aria-label="Facebook"]:hover {
  color: #125fc2;
  border-color: rgba(24, 119, 242, 0.56);
  background: rgba(24, 119, 242, 0.14);
}

.footer-social a[aria-label="Instagram"] {
  color: #e4405f;
  border-color: rgba(228, 64, 95, 0.38);
  background: rgba(228, 64, 95, 0.08);
}

.footer-social a[aria-label="Instagram"]:hover {
  color: #bd2f4c;
  border-color: rgba(228, 64, 95, 0.56);
  background: rgba(228, 64, 95, 0.14);
}

.footer-social a[aria-label="LinkedIn"] {
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.38);
  background: rgba(10, 102, 194, 0.08);
}

.footer-social a[aria-label="LinkedIn"]:hover {
  color: #084f97;
  border-color: rgba(10, 102, 194, 0.56);
  background: rgba(10, 102, 194, 0.14);
}

.practice-section {
  border-color: rgba(76, 29, 149, 0.14);
  background:
    radial-gradient(circle at 86% 12%, rgba(124, 58, 237, 0.2), transparent 38%),
    linear-gradient(160deg, #ffffff 8%, #f7f3ff 100%);
}

.practice-section::after {
  background: rgba(76, 29, 149, 0.08);
}

.practice-item {
  --practice-accent: #5b21b6;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(76, 29, 149, 0.14);
}

.practice-item:hover {
  border-color: rgba(76, 29, 149, 0.28);
}

.why-section {
  border-radius: 1.25rem;
  border: 1px solid rgba(76, 29, 149, 0.12);
  background:
    radial-gradient(circle at 95% 8%, rgba(124, 58, 237, 0.12), transparent 34%),
    linear-gradient(160deg, #ffffff 10%, #faf7ff 100%);
  padding: clamp(1.5rem, 3.8vh, 2.8rem) clamp(1rem, 2.8vw, 2.2rem);
}

.contact-line {
  color: var(--ink-high);
  border-bottom-color: rgba(76, 29, 149, 0.18);
}

.office-hours {
  border-top-color: rgba(76, 29, 149, 0.16);
}

.form-field input,
.form-field select,
.form-field textarea {
  color: var(--ink-strong);
  border-bottom-color: rgba(76, 29, 149, 0.26);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--color-primary);
}

/* Focused contact section upgrade */

.contact-line {
  align-items: flex-start;
  gap: 0.62rem;
  padding: 0.64rem 0;
}

.contact-line i {
  margin-top: 0.22rem;
}

.contact-line span {
  display: grid;
  gap: 0.2rem;
}

.contact-line strong {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

.contact-line a {
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--ink-strong);
}

.contact-line a:hover {
  color: var(--ink-strong);
  text-decoration: none;
}

.office-hours {
  margin-top: 0.46rem;
  padding-top: 0.82rem;
  gap: 0.48rem;
}

.office-hours-title {
  margin: 0 0 0.1rem;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

.office-hours p {
  font-size: 0.88rem;
}

.contact-form {
  padding: clamp(1rem, 2.5vh, 1.45rem);
  border-radius: 1.08rem;
  border: 1px solid rgba(76, 29, 149, 0.14);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 28px rgba(76, 29, 149, 0.1);
  row-gap: 0.82rem;
}

.form-head h3 {
  font-size: clamp(1.02rem, 2.1vw, 1.2rem);
  margin-bottom: 0.2rem;
}

.form-field label {
  font-size: 0.78rem;
}

.contact-submit {
  margin-top: 0.22rem;
}

@media (max-width: 899px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

/* Why section testimonials */
.why-testimonials {
  margin-top: clamp(1.25rem, 3vh, 2rem);
  padding-top: clamp(0.9rem, 2vh, 1.4rem);
  border-top: 1px solid rgba(76, 29, 149, 0.18);
}

.why-testimonials h3 {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.24rem);
  color: var(--ink-strong);
}

.why-testimonials-grid {
  margin-top: clamp(0.8rem, 2vh, 1.2rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.75rem, 2vh, 1.1rem);
}

.why-testimonial-card {
  padding: clamp(0.65rem, 1.5vw, 0.9rem);
  border-radius: 0.9rem;
  border: 1px solid rgba(76, 29, 149, 0.16);
  background: rgba(255, 255, 255, 0.86);
}

.why-testimonial-label {
  margin: 0 0 0.52rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.why-testimonial-card video,
.why-testimonial-card img {
  width: 100%;
  display: block;
  border-radius: 0.65rem;
  border: 1px solid rgba(76, 29, 149, 0.12);
  background: #f4f0ff;
}

.why-testimonial-card video {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.why-testimonial-photo {
  height: clamp(180px, 26vw, 260px);
  object-fit: cover;
  object-position: center;
  background: #ffffff;
  padding: 0;
}

@media (min-width: 900px) {
  .why-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .container {
    width: 100%;
  }

  .hero-premium,
  .about-mini,
  .practice-section,
  .why-section,
  .contact-section {
    padding-left: 0.72rem !important;
    padding-right: 0.72rem !important;
    border-radius: 0;
  }

  .main-nav {
    border-radius: 0;
  }

  .site-footer {
    margin-top: 1.4rem;
  }

  .footer-grid {
    gap: 0.76rem;
    padding: 0.9rem 0 0.85rem;
  }

  .footer-col {
    padding: 0.82rem 0.78rem;
    border: 1px solid rgba(76, 29, 149, 0.16);
    border-radius: 0.88rem;
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 255, 0.9));
    box-shadow: 0 8px 18px rgba(76, 29, 149, 0.08);
  }

  .footer-about-col {
    order: 1;
  }

  .footer-map-col {
    order: 2;
  }

  .footer-pages-col {
    order: 3;
  }

  .footer-legal-col {
    order: 4;
  }

  .footer-col h2 {
    font-size: 0.92rem;
  }

  .footer-about {
    margin-top: 0.42rem;
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .footer-mobile-actions {
    margin-top: 0.62rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
  }

  .footer-action-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.32rem;
    border-radius: 0.55rem;
    border: 1px solid rgba(76, 29, 149, 0.2);
    background: rgba(255, 255, 255, 0.82);
    padding: 0.42rem 0.5rem;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--ink-strong);
  }

  .footer-action-link:last-child {
    grid-column: 1 / -1;
  }

  .footer-action-link i {
    font-size: 0.72rem;
  }

  .footer-social {
    margin-top: 0.56rem;
    gap: 0.34rem;
  }

  .footer-social a {
    padding: 0.3rem 0.48rem;
    font-size: 0.74rem;
  }

  .footer-list {
    margin-top: 0.44rem;
    gap: 0.28rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-list a {
    font-size: 0.79rem;
  }

  .footer-map-text {
    margin-top: 0.42rem;
    margin-bottom: 0.34rem;
    font-size: 0.8rem;
  }

  .footer-map-wrap iframe {
    height: 142px;
  }

  .footer-map-link {
    margin-top: 0.42rem;
    font-size: 0.77rem;
  }

  .footer-bottom {
    padding: 0.72rem 0 1rem;
    gap: 0.28rem;
    text-align: center;
    justify-items: center;
  }

  .footer-bottom p {
    font-size: 0.76rem;
  }

  .footer-bottom a {
    font-size: 0.73rem;
  }
}

/* About Page Starts from here */

/* =========================
   ABOUT ADVOCATE SECTION
========================= */

#about-advocate {
  padding: 80px 20px;
  background: #f8f9fc;
}

#about-advocate .container {
  max-width: 1200px;
  margin: 0 auto;
}


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}


.about-image img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgb(24 8 255 / 38%);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}


.about-content h1 {
  font-size: 34px;
  font-weight: 700;
  color: #0b1c39;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}


.about-content ul {
  margin-top: 20px;
  padding-left: 0;
}

.about-content ul li {
  list-style: none;
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
}


.about-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #001253; 
  font-weight: bold;
}


@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h1 {
    font-size: 28px;
  }

  .about-image img {
    max-height: 350px;
  }
}

@media (max-width: 576px) {
  #about-advocate {
    padding: 60px 15px;
  }

  .about-content h1 {
    font-size: 24px;
  }

  .about-content p {
    font-size: 15px;
  }
}

/* =========================
   PROFESSIONAL BACKGROUND (NON-BOXY)
========================= */

#professional-background {
  padding: 100px 20px;
  background: #ffffff;
}

#professional-background .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID */
.background-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
  align-items: center;
}

/* CONTENT */
.background-content h2 {
  font-size: 32px;
  color: #0b1c39;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}

/* subtle underline accent */
.background-content h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #c9a14a;
  display: block;
  margin-top: 8px;
}

.background-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* LIST */
.background-content ul {
  margin-top: 25px;
  padding-left: 0;
}

.background-content ul li {
  list-style: none;
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
  position: relative;
  padding-left: 26px;
}

/* clean bullet */
.background-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #001253;
  border-radius: 50%;
}

/* IMAGE */
.background-image {
  position: relative;
}

.background-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
}

/* subtle background shape */
.background-image::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  background: #f3f5fa;
  z-index: -1;
  border-radius: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .background-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .background-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  #professional-background {
    padding: 70px 15px;
  }

  .background-content h2 {
    font-size: 22px;
  }

  .background-content p {
    font-size: 15px;
  }
}

/* 3rd section start from here */

/* =========================
   EDUCATION - EDITORIAL STYLE
========================= */

#education-qualifications {
  padding: 120px 20px;
  background: #ffffff;
}

#education-qualifications .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* WRAPPER */
.education-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  position: relative;
}

/* IMAGE */
.education-image {
  position: relative;
}

.education-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
}

/* CONTENT (OVERLAP EFFECT) */
.education-content {
  background: #fff;
  padding: 50px;
  margin-left: -80px; /* overlap magic */
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
}

/* HEADING */
.education-content h2 {
  font-size: 34px;
  color: #0b1c39;
  margin-bottom: 20px;
}

/* TEXT */
.education-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* HIGHLIGHT STRIP */
.edu-highlight {
  background: #0b1c39;
  color: #fff;

  border-radius: 3px;
  font-size: 14px;
 
  display: inline-block;
  letter-spacing: 0.5px;
}

/* LIST */
.education-content ul {
  margin-top: 20px;
  padding-left: 0;
}

.education-content ul li {
  list-style: none;
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
  font-size: 15px;
}

.education-content ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #1a73e88f;
  position: absolute;
  left: 0;
  top: 8px;
  border-radius: 50%;
}

.book-flow-image {
  display: none;
}

.book-flow-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .education-wrapper {
    grid-template-columns: 1fr;
  }

  .education-content {
    margin-left: 0;
    margin-top: -60px; /* overlap mobile */
    padding: 30px;
  }

  .education-image img {
    height: 350px;
  }
}

@media (max-width: 576px) {
  #education-qualifications {
    padding: 70px 15px;
  }

  .education-content h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  #about-main .book-flow-image {
    display: block;
    width: min(46%, 180px);
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(11, 28, 57, 0.18);
    margin: 6px 0 12px;
  }

  #about-main .book-flow-image.align-left {
    float: left;
    margin-right: 14px;
  }

  #about-main .book-flow-image.align-right {
    float: right;
    margin-left: 14px;
  }

  #about-main .book-flow-image img {
    aspect-ratio: 4 / 5;
  }

  #about-main .book-flow-image figcaption {
    margin: 0;
    padding: 8px 10px;
    font-size: 11px;
    line-height: 1.4;
    color: #334155;
    background: #f8fafc;
  }

  #about-main .about-content,
  #about-main .background-content {
    overflow: hidden;
  }

  #about-main .about-content ul,
  #about-main .background-content ul {
    clear: both;
  }

  #about-main .about-image,
  #about-main .background-image {
    display: none;
  }

  #about-main .about-grid,
  #about-main .background-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================
   EXPERIENCE - IMPACT STYLE
========================= */

#experience-achievements {
  padding: 120px 20px;
  background: #ffffff;
  color: #000000;
}

#experience-achievements .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* WRAPPER */
.experience-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* LEFT SIDE */
.experience-left h2 {
  font-size: 38px;
  margin-bottom: 20px;
}


.experience-left p {
  color: #181919;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 30px;
}

/* STATS */
.experience-stats {
  display: flex;
  gap: 40px;
}

.experience-stats div span {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  display: flex;
  justify-content: center;
}

.experience-stats div p {
  font-size: 14px;
  color: #1a1818;
}

/* RIGHT SIDE (timeline feel) */
.experience-right {
  border-left: 2px solid rgba(0, 0, 0, 0.1);
  padding-left: 30px;
}

.exp-item {
  margin-bottom: 30px;
  position: relative;
}

/* dot */
.exp-item::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #0064f1;
  border-radius: 50%;
  position: absolute;
  left: -36px;
  top: 6px;
}

/* TITLE */
.exp-item h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color:rgb(0, 0, 0) ;
  
}

/* TEXT */
.exp-item p {
  font-size: 14px;
  color: #1e1f1f;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .experience-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .experience-stats {
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  #experience-achievements {
    padding: 70px 15px;
  }

  .experience-left h2 {
    font-size: 26px;
  }

  .experience-stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* =========================
   MISSION & VALUES - PREMIUM STYLE
========================= */

#mission-values {
  padding: 120px 20px;
  background: #f9fafc;
  position: relative;
  overflow: hidden;
}

#mission-values .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* =========================
   BACKGROUND IMAGE (SUBTLE)
========================= */

.mission-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  z-index: 1;
}



/* =========================
   CONTENT
========================= */

.mission-content h2 {
  font-size: 36px;
  color: #0b1c39;
  margin-bottom: 20px;
  font-weight: 700;
}

/* underline */
.mission-content h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #060181;
  display: block;
  margin: 10px auto 0;
}

.mission-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* =========================
   VALUES GRID (UPGRADE)
========================= */

.mission-content ul {
  margin-top: 40px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* VALUE ITEM */
.mission-content ul li {
  list-style: none;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #0b1c39;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

/* left accent */
.mission-content ul li::before {
  content: "";
  width: 4px;
  height: 100%;
  background: #020e7d;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 4px 0 0 4px;
}

/* hover */
.mission-content ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .mission-content ul {
    grid-template-columns: 1fr;
  }

  .mission-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  #mission-values {
    padding: 70px 15px;
  }

  .mission-content p {
    font-size: 15px;
  }
}
/* =========================
   WHY CHOOSE - PHOTO DRIVEN PREMIUM
========================= */

#why-choose {
  padding: 120px 20px;
  background: #f8f9fc;
}

#why-choose .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 36px;
  color: #0b1c39;
}

.section-header p {
  color: #666;
  margin-top: 10px;
}

/* LAYOUT */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* =========================
   MAIN IMAGE
========================= */

.why-main-image {
  position: relative;
}

.why-main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 18px;
}

/* floating badge */
.why-main-image::after {
  content: "5+ Years Experience";
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #0b1c39;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
}

/* =========================
   FEATURES LIST
========================= */

.why-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* ITEM */
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

/* IMAGE */
.why-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
}

/* TEXT */
/* .why-item h3 {
  font-size: 18px;
  color: #0b1c39;
  margin-bottom: 5px;
} */
.about-h2{
  letter-spacing: 0;
  display: inline;
}

.why-item p {
  font-size: 14px;
  color: #555;
}

/* HOVER */
.why-item:hover {
  transform: translateX(8px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .why-layout {
    grid-template-columns: 1fr;
  }

  .why-main-image img {
    height: 350px;
  }
}

@media (max-width: 576px) {
  #why-choose {
    padding: 70px 15px;
  }

  .section-header h2 {
    font-size: 26px;
  }
}
/* fqa page */

/* =========================
   FAQ - SLIM PREMIUM
========================= */

#faq {
  padding: 100px 20px;
  background: #ffffff;
}

#faq .container {
  max-width: 800px;
  margin: 0 auto;
}

/* HEADER */
.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h1 {
  font-size: 30px;
  color: #0b1c39;
}

.faq-header p {
  color: #666;
  font-size: 14px;
}

/* LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid #eee;
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #0b1c39;
  cursor: pointer;
  text-align: left;
  position: relative;
}

/* LEFT ICON */
.faq-question i:first-child {
  color: #091d84;
  font-size: 16px;
}

/* TEXT */
.faq-question span {
  flex: 1;
}

/* PLUS ICON */
.faq-question .icon {
  transition: transform 0.3s ease;
  color: #999;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  font-size: 14px;
  color: #555;
  padding-bottom: 15px;
  line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
  color: #000000;
}

/* HOVER */
.faq-question:hover {
  color: #061172;
}

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

@media (max-width: 576px) {
  #faq {
    padding: 60px 15px;
  }

  .faq-header h1 {
    font-size: 22px;
  }

  .faq-question {
    font-size: 14px;
  }
}
/* =========================
   CTA - NEXT LEVEL PREMIUM
========================= */

#faq-cta {
  padding: 110px 20px;
  background: linear-gradient(135deg, #0b1c39, #162a57);
  position: relative;
  overflow: hidden;
}

/* glow effect */
#faq-cta::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(201, 161, 74, 0.15);
  top: -150px;
  left: -150px;
  border-radius: 50%;
  filter: blur(120px);
}

/* container */
#faq-cta .container {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* TAG */
.cta-tag {
  display: inline-block;
  background: rgb(4 122 51);
  color: #f1f2f4;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

/* HEADING */
#faq-cta h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 15px;
}

/* DESC */
.cta-desc {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* BUTTON GROUP */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.primary-btnfqa{
  padding: 6px 66px;
  background: #047a33;
  color: #f1f2f4;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  background: #029e65;
  transform: translateY(-3px);
}

/* SECONDARY BUTTON */
.secondary-btn {
  padding: 6px 77px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  background: #fff;
  color: #0b1c39;
}

/* TRUST TEXT */
.cta-trust {
  margin-top: 20px;
  font-size: 14px;
  color: #cbd5e1;
}

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

@media (max-width: 576px) {
  #faq-cta {
    padding: 70px 15px;
  }

  #faq-cta h2 {
    font-size: 24px;
  }

  .cta-desc {
    font-size: 14px;
  }

}

/*
criminal lawyer pune page
*/

/* ===============================
   Base Reset (safe minimal)
================================ */
#clp-hero-section,
#clp-intro-section {
  width: 100%;
}

/* ===============================
   INTRO SECTION - CLEAN STYLE criminal lawyer page
================================ */
#clp-intro-section {
  background: #ffffff;
  padding: 50px 16px;
}

.clp-intro-container {
  max-width: 100%;
  margin: 0 auto;
}

.clp-intro-heading {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 14px;
  color: #1d4ed8;
  line-height: 1.4;
}

.clp-intro-text {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0 0 14px;
}

.clp-intro-text:last-of-type {
  margin-bottom: 0;
}

.clp-highlight {
  color: #111827;
  font-weight: 600;
}

/* ===============================
   TABLET+
================================ */
@media (min-width: 768px) {
  .clp-intro-container {
    max-width: 750px;
  }

  .clp-intro-heading {
    font-size: 26px;
  }

  .clp-intro-text {
    font-size: 16px;
    line-height: 1.78;
  }
}

/* ===============================
   DESKTOP REFINEMENT
================================ */
@media (min-width: 992px) {
  #clp-intro-section {
    padding: 78px 32px;
    background:
      radial-gradient(900px circle at 0% 0%, rgba(29, 78, 216, 0.1), transparent 52%),
      linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  }

  .clp-intro-container {
    max-width: 1080px;
    display: grid;
    grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.4fr);
    column-gap: clamp(32px, 4.2vw, 64px);
    row-gap: 18px;
    align-items: start;
    padding: clamp(34px, 4.3vw, 56px) clamp(30px, 4vw, 48px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.95));
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
  }

  .clp-intro-heading {
    margin: 0;
    font-size: clamp(31px, 2.3vw, 38px);
    line-height: 1.28;
    color: #1e3a8a;
    position: relative;
    padding-left: 18px;
  }

  .clp-intro-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25em;
    width: 4px;
    height: 1.45em;
    border-radius: 999px;
    background: linear-gradient(180deg, #1d4ed8 0%, #2563eb 100%);
  }

  .clp-intro-heading::after {
    width: min(120px, 60%);
    bottom: -0.08rem;
  }

  .clp-intro-text {
    grid-column: 2;
    margin: 0;
    font-size: 17px;
    line-height: 1.86;
    max-width: 68ch;
  }

  .clp-intro-text + .clp-intro-text {
    margin-top: 6px;
  }

  .clp-highlight {
    color: #0f172a;
  }
}

@media (min-width: 1200px) {
  #clp-intro-section {
    padding: 90px 36px;
  }

  .clp-intro-container {
    grid-template-columns: minmax(290px, 0.95fr) minmax(0, 1.45fr);
  }
}


/* ===============================
   PROCESS SECTION
================================ */

#clp-process-section{
    padding:50px 16px;
    background:#f9fafb;
}

.clp-process-container{
    max-width:100%;
    margin:0 auto;
}

.clp-process-heading{
    font-size:22px;
    font-weight:600;
    color:#1d4ed8;
    margin-bottom:12px;
}

.clp-process-intro{
    font-size:15px;
    color:#4b5563;
    line-height:1.7;
    margin-bottom:20px;
}

.clp-process-steps{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.clp-step{
    background:#ffffff;
    padding:16px;
    border-radius:8px;
    border:1px solid #e5e7eb;
}

.clp-step h3{
    font-size:16px;
    color:#111827;
    margin-bottom:6px;
}

.clp-step p{
    font-size:14px;
    color:#4b5563;
    line-height:1.6;
}


/* ===============================
   TABLET+
================================ */

@media(min-width:768px){

    .clp-process-container{
        max-width:800px;
    }

    .clp-process-heading{
        font-size:26px;
    }

    .clp-step h3{
        font-size:17px;
    }

    .clp-step p{
        font-size:15px;
    }
}

/* civil lawyer pune page */
.civil-page-main {
  --cvlp-bg: #f4f7fd;
  --cvlp-surface: #ffffff;
  --cvlp-surface-soft: #f8fbff;
  --cvlp-ink: #0f172a;
  --cvlp-text: #334155;
  --cvlp-muted: #5b677a;
  --cvlp-primary: #0f3f8a;
  --cvlp-primary-strong: #0b2f67;
  --cvlp-accent: #b88a2f;
  --cvlp-border: rgba(15, 63, 138, 0.14);
  --cvlp-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
  background:
    radial-gradient(900px circle at -4% -6%, rgba(15, 63, 138, 0.12), transparent 52%),
    radial-gradient(720px circle at 110% 10%, rgba(184, 138, 47, 0.14), transparent 54%),
    linear-gradient(180deg, #f7faff 0%, #eef3fb 36%, #f9fbff 100%);
  padding: clamp(14px, 2vw, 28px);
}

.civil-page-main > section {
  min-height: auto;
  scroll-margin-top: 7rem;
  display: block;
  margin: 0 auto clamp(14px, 1.8vw, 22px);
  width: min(1120px, 100%);
  border: 1px solid var(--cvlp-border);
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
  box-shadow: var(--cvlp-shadow);
}

.civil-page-main [class$="-container"] {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 44px);
}

.civil-page-main h1,
.civil-page-main h2,
.civil-page-main h3 {
  color: var(--cvlp-ink);
  margin: 0;
}

.civil-page-main h2 {
  color: var(--cvlp-primary);
  font-size: clamp(1.4rem, 1.5vw + 1rem, 2rem);
  line-height: 1.28;
  margin-bottom: 14px;
}

.civil-page-main h2::after {
  background: linear-gradient(90deg, rgba(15, 63, 138, 0.24), rgba(15, 63, 138, 0));
}

.civil-page-main p {
  margin: 0;
  color: var(--cvlp-text);
  font-size: clamp(0.97rem, 0.25vw + 0.9rem, 1.08rem);
  line-height: 1.84;
}

.civil-page-main p + p {
  margin-top: 12px;
}

.civil-page-main #cvlp-intro-section,
.civil-page-main #cvlp-explained-section,
.civil-page-main #cvlp-location-section {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96));
}

.civil-page-main #cvlp-process-section {
  background:
    radial-gradient(760px circle at 100% 0%, rgba(15, 63, 138, 0.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.cvlp-process-intro {
  max-width: 74ch;
  color: var(--cvlp-muted);
  margin-bottom: 20px;
}

.cvlp-process-steps {
  display: grid;
  gap: 14px;
}

.cvlp-step {
  position: relative;
  border: 1px solid rgba(15, 63, 138, 0.14);
  border-radius: 14px;
  padding: 16px 16px 16px 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.95));
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.cvlp-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cvlp-primary), #2f66c4);
}

.cvlp-step h3 {
  font-size: clamp(1.02rem, 0.25vw + 0.96rem, 1.18rem);
  margin-bottom: 6px;
}

.cvlp-step p {
  font-size: clamp(0.92rem, 0.2vw + 0.88rem, 1rem);
  line-height: 1.75;
  color: var(--cvlp-text);
}

.civil-page-main #cvlp-links-section {
  background:
    linear-gradient(145deg, rgba(11, 47, 103, 0.96), rgba(15, 63, 138, 0.9)),
    linear-gradient(145deg, #0f3f8a, #0b2f67);
  border-color: rgba(11, 47, 103, 0.5);
}

.cvlp-links-heading {
  color: #f8fbff;
}

.cvlp-links-heading::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
}

.cvlp-links-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.cvlp-links-list a {
  color: #eef4ff;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.cvlp-links-list a::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.82rem;
}

.cvlp-links-list a:hover {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.15);
}

.civil-page-main #cvlp-social-section {
  border-style: dashed;
  border-color: rgba(184, 138, 47, 0.45);
  background:
    radial-gradient(500px circle at 15% 20%, rgba(184, 138, 47, 0.15), transparent 62%),
    linear-gradient(180deg, #fffef9 0%, #fffaf0 100%);
}

.cvlp-social-text {
  max-width: 78ch;
  color: #5d4a24;
}

@media (min-width: 700px) {
  .cvlp-process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .civil-page-main #cvlp-location-section .cvlp-location-container,
  .civil-page-main #cvlp-intro-section .cvlp-intro-container,
  .civil-page-main #cvlp-explained-section .cvlp-explained-container {
    display: grid;
    gap: 14px;
  }
}

@media (min-width: 1024px) {
  .civil-page-main {
    padding: clamp(22px, 2.8vw, 36px);
  }

  .civil-page-main > section {
    border-radius: 24px;
  }

  .cvlp-process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cvlp-step:nth-child(4),
  .cvlp-step:nth-child(5) {
    grid-column: span 1;
  }

  .civil-page-main #cvlp-intro-section .cvlp-intro-container,
  .civil-page-main #cvlp-explained-section .cvlp-explained-container,
  .civil-page-main #cvlp-location-section .cvlp-location-container {
    grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.3fr);
    column-gap: clamp(26px, 3vw, 42px);
    row-gap: 8px;
  }

  .civil-page-main #cvlp-intro-section .cvlp-intro-heading,
  .civil-page-main #cvlp-explained-section .cvlp-explained-heading,
  .civil-page-main #cvlp-location-section .cvlp-location-heading {
    margin-bottom: 0;
  }

  .civil-page-main #cvlp-intro-section .cvlp-intro-text,
  .civil-page-main #cvlp-explained-section .cvlp-explained-text,
  .civil-page-main #cvlp-location-section .cvlp-location-text {
    grid-column: 2;
  }

  .cvlp-links-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .civil-page-main {
    padding: 10px;
  }

  .civil-page-main > section {
    border-radius: 14px;
    margin-bottom: 10px;
  }

  .civil-page-main [class$="-container"] {
    padding: 16px 14px;
  }
}
/* family page start */
.family-page-main {
  --flp-bg: #f7fafc;
  --flp-surface: #ffffff;
  --flp-surface-soft: #f4f8ff;
  --flp-ink: #07a34b;
  
  --flp-muted: #5b677a;
  --flp-primary: #143c86;
  --flp-primary-strong: #0f2f66;
  --flp-accent: #b88a2f;
  --flp-border: rgba(20, 60, 134, 0.16);
  --flp-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
  background:
    radial-gradient(900px circle at -8% -6%, rgba(20, 60, 134, 0.14), transparent 54%),
    radial-gradient(700px circle at 110% 10%, rgba(184, 138, 47, 0.12), transparent 56%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 40%, #f9fbfe 100%);
  padding: clamp(12px, 2vw, 28px);
}

.family-page-main > section {
  min-height: auto;
  scroll-margin-top: 7rem;
  margin: 0 auto clamp(12px, 1.7vw, 22px);
  width: min(1120px, 100%);
  border: 1px solid var(--flp-border);
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.95));
  box-shadow: var(--flp-shadow);
}

.family-page-main [class$='-container'] {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(10px, 3vw, 42px);
}

.family-page-main h1,
.family-page-main h2,
.family-page-main h3 {
  margin: 0;
  color: var(--flp-ink);
}

.family-page-main h2 {
color: #0d854a;
  font-size: clamp(1.36rem, 1.45vw + 1rem, 1.98rem);
  line-height: 1.3;
  margin-bottom: 14px;
}

.family-page-main h2::after {
  content: '';
  display: block;
  width: 62px;
  height: 3px;
  border-radius: 999px;
  margin-top: 10px;
  background: linear-gradient(90deg, rgba(20, 60, 134, 0.3), rgba(20, 60, 134, 0));
}

.family-page-main p {
  margin: 0;
  color: var(--flp-text);
  font-size: clamp(0.96rem, 0.25vw + 0.9rem, 1.06rem);
  line-height: 1.82;
}

.family-page-main p + p {
  margin-top: 12px;
}

#flp-hero-section {
  position: relative;
  overflow: hidden;
  border-color: rgba(15, 47, 102, 0.45);
  background:
    radial-gradient(620px circle at 110% -20%, rgba(184, 138, 47, 0.25), transparent 62%),
    radial-gradient(480px circle at -12% 110%, rgba(106, 173, 255, 0.16), transparent 56%),
    linear-gradient(145deg, #0f2f66 0%, #143c86 60%, #0b2a5a 100%);
}

#flp-hero-section::before,
#flp-hero-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

#flp-hero-section::before {
  width: 280px;
  height: 280px;
  top: -150px;
  left: -100px;
  background: rgba(255, 255, 255, 0.08);
}

#flp-hero-section::after {
  width: 220px;
  height: 220px;
  right: -110px;
  bottom: -130px;
  background: rgba(255, 255, 255, 0.06);
}

.flp-hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(16px, 2vw, 26px);
}

.flp-hero-content {
  color: #e8f1ff;
}

.flp-kicker {
  margin: 0;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 7px 12px;
}

.flp-main-heading {
  margin-top: 14px;
  font-size: clamp(1.58rem, 2.3vw + 1rem, 2.75rem);
  line-height: 1.2;
  color: #ffffff;
  max-width: 20ch;
}

.flp-subtext {
  margin-top: 14px;
  max-width: 66ch;
  color: #d9e8ff;
}

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

.flp-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.flp-btn:hover {
  transform: translateY(-2px);
}

.flp-btn-primary {
  color: #0f2f66;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(9, 23, 46, 0.2);
}

.flp-btn-primary:hover {
  background: #f5f9ff;
}

.flp-btn-secondary {
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.flp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.flp-hero-badges {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flp-hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ebf3ff;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.08);
}

.flp-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 18px;
  color: #edf4ff;
}

.flp-hero-panel h2 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: clamp(1.16rem, 0.4vw + 1rem, 1.35rem);
}

.flp-hero-panel h2::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}

.flp-hero-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.flp-hero-panel li {
  position: relative;
  padding-left: 18px;
  font-size: 0.93rem;
  color: #e7efff;
  line-height: 1.56;
}

.flp-hero-panel li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.72rem;
  position: absolute;
  left: 0;
  top: 4px;
  color: #f6d082;
}

.family-page-main #flp-intro-section,
.family-page-main #flp-explained-section,
.family-page-main #flp-location-section {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.99), rgba(246, 251, 255, 0.96));
}

.family-page-main #flp-process-section {
  background:
    radial-gradient(760px circle at 100% 0%, rgba(20, 60, 134, 0.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.flp-process-intro {
  max-width: 74ch;
  color: var(--flp-muted);
  margin-bottom: 20px;
}

.flp-process-steps {
  display: grid;
  gap: 14px;
}

.flp-step {
  position: relative;
  border: 1px solid rgba(20, 60, 134, 0.14);
  border-radius: 14px;
  padding: 16px 16px 16px 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.95));
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.flp-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--flp-primary), #2f66c4);
}

.flp-step h3 {
  font-size: clamp(1rem, 0.28vw + 0.95rem, 1.14rem);
  margin-bottom: 6px;
}

.flp-step p {
  font-size: clamp(0.92rem, 0.2vw + 0.88rem, 1rem);
  line-height: 1.74;
}

.flp-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

.family-page-main #flp-links-section {
  background:
    linear-gradient(145deg, rgba(11, 47, 103, 0.96), rgba(20, 60, 134, 0.92)),
    linear-gradient(145deg, #143c86, #0f2f66);
  border-color: rgba(11, 47, 103, 0.5);
}

.flp-links-heading {
  color: #f8fbff;
}

.flp-links-heading::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
}

.flp-links-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.flp-links-list a {
  color: #edf4ff;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
  transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.flp-links-list a::before {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.82rem;
}

.flp-links-list a:hover {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.16);
}

.family-page-main #flp-social-section {
  border-style: dashed;
  border-color: rgba(184, 138, 47, 0.44);
  background:
    radial-gradient(500px circle at 15% 20%, rgba(184, 138, 47, 0.14), transparent 62%),
    linear-gradient(180deg, #fffef9 0%, #fffaf0 100%);
}

.flp-social-text {
  max-width: 78ch;
  color: #5d4a24;
}

@media (min-width: 760px) {
  .flp-hero-container {
    grid-template-columns: 1.35fr 1fr;
    align-items: stretch;
  }

  .flp-process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .family-page-main #flp-intro-section .flp-intro-container,
  .family-page-main #flp-explained-section .flp-explained-container,
  .family-page-main #flp-location-section .flp-location-container {
    display: grid;
    gap: 14px;
  }
}

@media (min-width: 1024px) {
  .family-page-main {
    padding: clamp(20px, 2.8vw, 36px);
  }

  .family-page-main > section {
    border-radius: 24px;
  }

  .flp-process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flp-links-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .family-page-main #flp-intro-section .flp-intro-container,
  .family-page-main #flp-explained-section .flp-explained-container,
  .family-page-main #flp-location-section .flp-location-container {
    grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.3fr);
    column-gap: clamp(26px, 3vw, 40px);
    row-gap: 8px;
  }

  .family-page-main #flp-intro-section .flp-intro-heading,
  .family-page-main #flp-explained-section .flp-explained-heading,
  .family-page-main #flp-location-section .flp-location-heading {
    margin-bottom: 0;
  }

  .family-page-main #flp-intro-section .flp-intro-text,
  .family-page-main #flp-explained-section .flp-explained-text,
  .family-page-main #flp-location-section .flp-location-text {
    grid-column: 2;
  }
}

@media (max-width: 639px) {
  .family-page-main {
    padding: 10px;
  }

  .family-page-main > section {
    border-radius: 14px;
    margin-bottom: 10px;
  }


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

#privacy-policy{
    padding:40px 16px;
    background:#ffffff;
}

.privacy-container{
    max-width:900px;
    margin:0 auto;
}

#privacy-policy h1{
    font-size:26px;
    margin-bottom:16px;
    color:#111827;
}

#privacy-policy h2{
    font-size:18px;
    margin-top:20px;
    margin-bottom:8px;
    color:#1d4ed8;
}

#privacy-policy p{
    font-size:15px;
    line-height:1.7;
    color:#374151;
}
