#stats {
  width: 100%;
  background-color: var(--color-black);
  padding: 72px 0;
}
/* Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
  padding: 0 64px;
  box-sizing: border-box;
}

/* Item */
.stat-item {
  position: relative;
}

/* Gold Bar */
.stat-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 128px;
  background-color: var(--color-brown);
}

/* Content */
.stat-content {
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Number */
.stat-number {
  font-family: var(--font-family-eb-garamond);
  font-weight: 600;
  font-size: 80px;
  line-height: 80px;
  color: var(--color-brown);
  margin: 0;
}
span.counter {
  min-width: 74px;
  display: inline-block;
}
/* Label */
.stat-label {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Section */
#practice-areas {
  width: 100%;
  background: #ffffff;
}

/* Wrapper */

.section-container {
  padding: 0 64px;
  box-sizing: border-box;
}

/* Header */
.section-header {
  /* max-width: 900px; */
  margin-bottom: 80px;
}

.page-heading-top-text {
  font-family: var(--font-family-montserrat);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-brown);
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--font-family-eb-garamond);
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 0;
  line-height: 1.25;
}

.heading-line {
  width: 120px;
  height: 2px;
  background-color: var(--color-brown);
  margin-top: 24px;
  margin-bottom: 34px;
}
.heading-desc {
  font-family: var(--font-family-montserrat);
  font-size: 18.4px;
  line-height: 33.12px;
  color: #666666;
  max-width: 743px;
}
.heading-desc-full {
  max-width: 100%;
}
.has-dark .page-heading-top-text,
.has-dark .section-title,
.has-dark .heading-desc {
  color: #fff;
}
.has-dark .heading-line {
  background-color: #fff;
}

/* Grid */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

/* Card */
.practice-card {
  background: #ffffff;
  transition: all 0.3s ease;
}

/* Card Inner */
.practice-card-inner {
  border: 2px solid #f1f1f1;
  padding: 42px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  height: 100%;
}
.practice-card-inner:hover {
  border-color: var(--color-brown);
}

/* Icon */
.practice-icon {
  height: 40px;
  margin-bottom: 24px;
  display: flex;
  font-size: 2.5rem;
}

/* Card Title */
.practice-card-title {
  font-family: var(--font-family-eb-garamond);
  font-weight: var(--font-semibold);
  font-size: 28px;
  color: var(--color-black);
  margin-bottom: 16px;
}

/* Card Description */
.practice-card-desc {
  font-size: 16px;
  line-height: 26px;
  color: #666666;
  margin-bottom: 24px;
}

/* Bullet List */
.practice-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.practice-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-brown);
}

.practice-list li::before {
  content: "•";
  font-size: 14px;
  color: var(--color-brown);
}

/* Section */
.office-section {
  width: 100%;
  overflow: hidden;
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
}
.office-container {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
/* Wrapper */
.office-wrapper {
  position: relative;
  width: 100%;
  max-width: max-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

/* Gradient Overlay */
.office-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(139, 111, 71, 0.83) 0%,
      rgba(139, 111, 71, 0.83) 100%
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(
      0deg,
      rgba(26, 26, 26, 0.85) 0%,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0) 70%,
      rgba(26, 26, 26, 0.5) 100%
    );
  z-index: 1;
}
/* Background Image */
.office-bg {
  position: absolute;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.office-bg img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 50% 50%;

  pointer-events: none;
  max-width: none;
}
/* Content */
.office-content {
  color: #ffffff;
}

/* Title */
.office-title {
  font-family: var(--font-family-eb-garamond);
  font-weight: var(--font-regular);
  font-size: 72px;
  line-height: 90px;
  margin-bottom: 24px;
}

/* Description */
.office-desc {
  font-family: var(--font-family-montserrat);
  font-size: 18.4px;
  line-height: 33.12px;
  color: rgba(255, 255, 255, 0.95);
}
.office-section .section-header {
  margin-bottom: 30px;
}
/* Section */
#results {
  background: #f8f8f8;
  width: 100%;
}

/* Wrapper */
.results-wrapper {
  box-sizing: border-box;
}

/* Header */
.results-header {
  margin-bottom: 96px;
  max-width: 820px;
}

.results-icon {
  margin-bottom: 24px;
  font-size: 48px;
}

/* Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-bottom: 70px;
}

/* Card */
.result-card {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

/* Gold Bar */
.result-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--color-brown);
}

/* Content */
.result-content {
  padding: 48px 48px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Top */
.result-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.result-amount {
  font-weight: 600;
  font-size: 56px;
  line-height: 56px;
  color: var(--color-brown);
  font-family: var(--font-family-eb-garamond);
  margin-bottom: 0;
}

.result-year {
  border: 2px solid var(--color-black);
  padding: 10px 18px;
  font-weight: var(--font-medium);
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-black);
}

/* Card Title */
.result-title {
  font-family: var(--font-family-eb-garamond);
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--color-black);
}

/* Card Description */
.result-desc-text {
  font-family: var(--font-family-montserrat);
  font-size: 16px;
  line-height: 27.2px;
  color: #666666;
}

/* Disclaimer */
.results-disclaimer {
  background: #ffffff;
  border-left: 4px solid var(--color-brown);
  padding: 32px 36px;
}

.results-disclaimer p {
  font-family: var(--font-family-montserrat);
  font-style: italic;
  font-size: 14.4px;
  line-height: 24.48px;
  color: #666666;
}

/* Section */
#testimonials {
  background: #ffffff;
  width: 100%;
}
/* Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

/* Card */
.testimonial-card {
  position: relative;
  background: #ffffff;
  border: 2px solid #f1f1f1;
  overflow: hidden;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--color-brown);
}

/* Left bar */
.testimonial-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--color-brown);
}

/* Quote icon */
.quote-icon {
  position: absolute;
  top: 26px;
  right: 40px;
  width: 64px;
  height: 64px;
  opacity: 0.1;
}

/* Content */
.testimonial-content {
  padding: 50px;
}

.testimonial-text {
  font-family: var(--font-family-montserrat);
  font-size: 17.6px;
  line-height: 31.68px;
  color: var(--color-black);
  margin-bottom: 40px;
}

.testimonial-tag {
  font-family: var(--font-family-montserrat);
  font-weight: 600;

  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-brown);
}

/* Philosophy Section */
.philosophy {
  background: var(--color-black);
  width: 100%;
}
.philosophy .page-heading-top-text,
.color-brown {
  color: var(--color-brown) !important;
}
/* Grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

/* Item */
.philosophy-item {
  position: relative;
}

/* Left accent line */
.philosophy-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--color-brown);
}

/* Content */
.philosophy-content {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Number */
.philosophy-number {
  font-family: var(--font-family-eb-garamond);
  font-size: 64px;
  line-height: 64px;
  color: var(--color-brown);
  font-weight: 600;
}

/* Subtitle */
.philosophy-subtitle {
  font-family: var(--font-family-eb-garamond);
  font-size: 32px;
  line-height: 48px;
  color: #ffffff;
  font-weight: 500;
}

/* Text */
.philosophy-text {
  font-family: var(--font-family-montserrat);
  font-size: 16.8px;
  line-height: 30.24px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

/* Section */
#team,
.bg-light {
  background: #f8f8f8;
  width: 100%;
}
.team-sec-header {
  max-width: 900px;
}
/* Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.team-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

/* Card */
.team-card {
  position: relative;
}

/* Image placeholder */
.team-image {
  position: relative;
  overflow: hidden;
}

.team-image-bg {
}

/* Accent bar */
.team-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: var(--color-brown);
  z-index: 1;
}

/* Content */
.team-content {
  margin-top: 32px;
}

.heading-style-2 {
  font-family: var(--font-family-eb-garamond);
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--color-black);
  margin-bottom: 12px;
}

.team-role {
  font-family: var(--font-family-montserrat);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-brown);
  margin-bottom: 16px;
}

.team-bio {
  font-family: var(--font-family-montserrat);
  font-size: 15.2px;
  line-height: 25.84px;
  color: #666666;
}

/* ===== Resources Section ===== */
.resources {
  background: #ffffff;
  width: 100%;
}

/* Grid */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

/* Card */
.resource-card {
  background: #ffffff;
  border: 2px solid #f1f1f1;
  transition: all 0.3s ease;
}

.resource-card:hover {
  border-color: var(--color-brown);
}

/* Image */
.resource-image {
  height: 410px;
  background: linear-gradient(135deg, #e5e5e5, #d4d4d4);
  position: relative;
  overflow: hidden;
}
.resource-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-brown);
}

/* Content */
.resource-content {
  padding: 40px;
}

.resource-tag {
  font-family: var(--font-family-montserrat);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-brown);
  margin-bottom: 20px;
}

.resource-title {
  font-family: var(--font-family-eb-garamond);
  font-size: 2rem;
  line-height: 35px;
  margin-bottom: 16px;
  transition: color 0.3s ease;
  font-weight: 600;
}

.resource-card:hover .resource-title {
  color: var(--color-brown);
}

.resource-text,
.about-content p {
  font-family: var(--font-family-montserrat);
  font-size: 16px;
  line-height: 26px;
  color: #666;
  margin-bottom: 32px;
  font-weight: 500;
}

/* Read More */
.readmoreBlk {
  margin-top: 24px;
}
.resource-link,
.readmore {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-family-montserrat);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  font-weight: 700;
}

.resource-card:hover .resource-link,
.readmore:hover {
  color: var(--color-brown);
}

.resource-link svg,
.readmore svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.3;
}

/* ===== Contact Section ===== */
.contact {
  background: var(--color-black);
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 128px;
}

/* Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.detail-item {
  position: relative;
}

.detail-line {
  position: absolute;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--color-brown);
}

.detail-content {
  padding-left: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.detail-content svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-brown);
  fill: none;
  margin-bottom: 14px;
}

.detail-label {
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-brown);
  margin-bottom: 12px;
}
.contact .detail-label {
  color: var(--color-brown);
  font-weight: 600;
}
.detail-content a,
.detail-content p {
  color: #fff;
  font-size: 16.8px;
  line-height: 25px;
}

.detail-content a:hover {
  color: var(--color-brown);
}

/* Form */
.contact-form-wrapper {
  background: #fff;
  position: relative;
}

.form-accent {
  position: absolute;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-brown);
}

.contact-form {
  padding: 56px;
}

.form-group {
  margin-bottom: 32px;
}
.form-group label {
  font-size: 16px;
  margin-bottom: 12px;
  display: block;
  font-weight: 600;
}

.contact-form input,
.form-group .form-control,
.form-group textarea {
  width: 100%;
  height: 42px;
  background: #f3f3f5;
  border: 1px solid #ebe6e7;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
}

textarea {
  height: 64px;
  resize: none;
  padding: 8px 12px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(139, 111, 71, 0.15);
  border-color: var(--color-brown);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.submit-btn,
.link-btn {
  height: 60px;
  padding: 0 16px;
  background: var(--color-brown);
  border: 2px solid var(--color-brown);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.submit-btn:hover,
.link-btn:hover {
  background: #6d5738;
  border-color: #6d5738;
}
.link-btn {
  display: inline-flex;
  text-transform: inherit;
  height: 40px;
  border-radius: 8px;
  font-weight: 400;
}
.link-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.3;
}
.form-note {
  margin-top: 32px;
  font-size: 14px;
  color: #666;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* Desktop layout */
.box-left {
  grid-column: 1 / 3; /* span 2 columns */
}

.box-right {
  grid-column: 3 / 4; /* last column */
}
.about-content p {
  margin-bottom: 24px;
}

/* Form Validation */
input[type="text"].field-error,
input[type="email"].field-error,
input[type="tel"].field-error,
input[type="number"].field-error,
select.field-error,
textarea.field-error {
  border-color: var(--error);
}
.error-block {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  margin-top: 3px;
  font-size: 12px;
  color: var(--error);
}
.error-captcha {
  color: var(--error);
}
/* Thank you page */
.success-message {
  width: 100%;
  max-width: 900px;
  text-align: center;
  margin-top: 24px;
  margin: 0 auto;
  padding: 40px 0;
}
.success-text {
  color: #3c763d;
  line-height: 26px;
  font-weight: 500;
}
.success-animation {
  margin: 0 auto 60px auto;
}
.checkmark {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: var(--success);
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px var(--success);
  animation:
    fill 0.4s ease-in-out 0.4s forwards,
    scale 0.3s ease-in-out 0.9s both;
  position: relative;
  top: 5px;
  right: 5px;
  margin: 0 auto;
}
.checkmarkCircle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: var(--success);
  fill: #fff;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmarkCheck {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.5s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {
  0%,
  100% {
    transform: none;
  }

  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px var(--success);
  }
}



/* ===== Footer ===== */
.footer {
  background: var(--color-black);
  border-top: 1px solid #333333;
  padding-top: 65px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Top section */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* Brand */
.footer-brand h3 {
  font-family: var(--font-family-eb-garamond);
  font-size: 2rem;
  line-height: 36px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 24px;
}

.brand-divider {
  width: 80px;
  height: 2px;
  background: var(--color-brown);
  margin-bottom: 24px;
}

.footer-brand p {
  font-family: var(--font-family-montserrat);
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
}

/* Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  text-align: right;
}

.footer-label {
  font-family: var(--font-family-montserrat);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-brown);
}

.contact-info p {
  font-family: var(--font-family-montserrat);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #333333;
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer-bottom p {
  font-family: var(--font-family-montserrat);
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.6);
}

/* Modal */
.modal .heading-style-2 {
  margin-bottom: 0;
}
.modal p {
  line-height: 24px;
}
.modalCloseBtn {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: #fff;
  border-radius: 60px;
  padding: 8px;
  z-index: 1;
}
/* Initial state */

/* Backdrop smooth fade */
.modal-backdrop {
  transition: opacity 0.3s ease;
}
.modalContentWrapper {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 1.5rem;
}
.cursorPointer {
  cursor: pointer;
}

/* ===== Back To Top ===== */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: var(--color-brown);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 40;
}

/* Icon */
#backToTop svg {
  width: 24px;
  height: 24px;
}

/* Hover */
#backToTop:hover {
  background: #6d5738;
  transform: translateY(0) scale(1.05);
}

/* Show state */
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Focus accessibility */
#backToTop:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

/* Inner pages */
.bg-black {
  background: var(--color-black);
}
.bg-brown {
  background: var(--color-brown);
}
.bg-black .section-title,
.bg-brown .section-title,
.bg-black .heading-desc,
.bg-brown .heading-desc {
  color: #fff;
  margin: 0 auto;
  max-width: 90%;
}
.bg-black .heading-line,
.bg-brown .heading-line {
  background-color: #fff;
}
.center-heading {
  text-align: center;
}
.center-heading .heading-line {
  margin-left: auto;
  margin-right: auto;
}
.innerPageTitle {
  font-family: var(--font-family-eb-garamond);
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 34px;
  line-height: 1.25;
}
.innerContentSec h2 {
  font-size: 2rem;
  font-family: var(--font-family-montserrat);
  font-weight: 600;
}
.section-header h3 {
  font-size: 1.25rem;
}
.innerContentSec h3,
.innerContentSec h4 {
  font-size: 1.25rem;
  line-height: 36px;
  color: var(--color-black);
  font-weight: 600;
}
.innerContentSec h3 {
  margin-bottom: 8px;
}

.contentBlk h3:has(+ h4) {
  margin-bottom: 0;
}
.innerContentSec h4 {
  font-size: 1rem;
  margin-bottom: 16px;
}
.contentBlk {
  margin-bottom: 24px;
}
.contentBlk,.container ul {
  list-style-type: disc;
  margin-left: 0;
  margin-bottom: 16px;
}
.contentBlk,.container ol {
  margin-left: 0;
  margin-bottom: 16px;
}
.contentBlk,.container ul li,
.contentBlk,.container ol li {
  margin-bottom: 10px;
  line-height: 1.75;
}
/* .contentBlk,.container a {
  color: var(--color-brown);
  transition: all 0.3s ease;
}
.contentBlk,.container a:hover {
  color: var(--color-black);
} */

.contentBlk a {
  color: var(--color-brown);
  transition: all 0.3s ease;
  font-weight: 500;
}
.contentBlk a:hover {
  color: var(--color-brown);
  text-decoration: underline;
}

/* Contact pages */
.officeBlock h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 36px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.officeBlock {
  margin-bottom: 24px;
}
.officeRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.officeRow h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.officeRow p {
  font-size: 14px;
  color: var(--color-brown);
  margin-bottom: 6px;
}

.officeRow i {
  color: var(--color-brown);
  font-size: 1.25rem;
  margin-top: 2px;
}

.contactForm h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.contactForm h4 + h4 {
  margin-bottom: 24px;
}
.contactFormTopPoints ul {
  list-style-type: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlightText {
  color: var(--color-brown);
}
.form-check-input:checked {
  background-color: var(--color-brown);
  border-color: var(--color-brown);
}
.form-check-input:focus {
  border-color: rgba(139, 111, 71, 0.35);
  box-shadow: 0 0 0 0.25rem rgba(139, 111, 71, 0.25);
}
.form-check-input,
.form-check-label {
  cursor: pointer;
}
.form-group .form-check-label,
.form-check-label {
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 0;
  display: inline-block;
}
.contactForm textarea {
  height: 120px;
}
.submitBtn {
  justify-content: center;
  min-width: 200px;
}
.guaranteeMsg {
  text-align: center;
}
.guaranteeMsg h4 {
  color: var(--color-brown);
}
.captchaText {
  min-width: 100px;
  font-size: 1.5rem;
}
.captchaInput {
  max-width: 120px;
}
.refreshBtn {
  border: 0;
  background-color: transparent;
}

/* Blog Page */
.blog .resource-card {
  display: flex;
  flex-direction: column;
}
.blog .resource-title {
  font-size: 1.75rem;
}
.blog .resource-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog .resource-text {
  display: -webkit-box;
  -webkit-line-clamp: 4; /* 👈 number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
  max-height: calc(1.6em * 4); /* fallback safety */
  margin-top: auto;
}
.blogSingleSec h2 {
  font-size: 4rem;
}
.blogContentWrap h3 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
/* Pagination */

.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.pagination {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.pagination li {
  cursor: pointer;
  padding: 10px 16px;
  border: 1px solid #ddd;
  font-family: Montserrat, sans-serif;
  transition: all 0.3s ease;
}

.pagination li.active,
.pagination li:hover {
  background: var(--color-brown);
  color: #fff;
}
.pagination li.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.pagination li.prev,
.pagination li.next {
  font-weight: 600;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 1200px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 56px;
    line-height: 70px;
  }

  .office-content {
    left: 40px;
    max-width: 640px;
  }

  .office-title {
    font-size: 56px;
    line-height: 70px;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }

  .results-title {
    font-size: 56px;
    line-height: 70px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-title {
    font-size: 56px;
    line-height: 70px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .philosophy-title {
    font-size: 56px;
    line-height: 70px;
  }

  .team-grid,
  .team-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-title {
    font-size: 56px;
    line-height: 70px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}
@media (max-width: 767px) {
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .resource-card {
    height: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-brand h3 {
    font-size: 26px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  #backToTop {
    width: 48px;
    height: 48px;
    bottom: 24px;
    right: 24px;
  }

  #backToTop svg {
    width: 20px;
    height: 20px;
  }
}
/* Mobile */
@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 40px;
  }

  .stat-number {
    font-size: 64px;
  }
  .section-container {
    padding: 48px 24px;
  }

  .practice-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 40px;
    line-height: 52px;
  }

  .practice-card {
    height: auto;
  }

  .office-hero-wrapper {
    height: 480px;
  }

  .office-content {
    left: 24px;
    right: 24px;
    max-width: none;
  }

  .office-title {
    font-size: 40px;
    line-height: 52px;
  }

  .office-desc {
    font-size: 16px;
    line-height: 28px;
  }

  .office-line {
    width: 96px;
  }

  .section-container {
    padding: 0 24px;
  }

  .results-title {
    font-size: 40px;
    line-height: 52px;
  }

  .result-card {
    height: auto;
  }

  .result-content {
    padding: 24px 24px 24px 36px;
  }

  .result-amount {
    font-size: 44px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-title {
    font-size: 40px;
    line-height: 52px;
  }

  .testimonial-card {
    height: auto;
  }

  .testimonial-content {
    padding: 32px;
  }

  .philosophy-title {
    font-size: 40px;
    line-height: 52px;
  }

  .philosophy-number {
    font-size: 48px;
    line-height: 48px;
  }

  .philosophy-subtitle {
    font-size: 26px;
    line-height: 38px;
  }
  .team-grid,
  .team-grid-4 {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .team-title {
    font-size: 40px;
    line-height: 52px;
  }
  .resource-content {
    padding: 24px;
  }
  .detail-content {
    padding-left: 0px;
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
  .detail-content a,
  .detail-content p {
    word-break: break-word;
  }
  .detail-item:first-child .detail-line {
    display: none;
  }
  .detail-line {
    top: -20px;
    width: 40%;
    height: 1px;
    background: var(--color-brown);
    left: 50%;
    transform: translateX(-50%);
  }
  .contact-form,
  .practice-card-inner {
    padding: 24px;
  }
  .hero-title {
    font-size: 50px;
    line-height: 60px;
  }
  .hero-content {
    padding-left: 30px;
    padding-right: 30px;
  }
  .hero-btn {
    margin-top: 32px;
  }
  #backToTop {
    bottom: 20px;
    right: 20px;
  }
}
