.section-label,
body {
  font-family: var(--font-body);
}
.blog-title a:hover,
.footer-brand span,
.navbar-brand span,
.preloader-logo span,
.recent-post-content h4 a:hover,
.section-label {
  color: var(--gold);
}
.nav-link,
.section-label {
  text-transform: uppercase;
}
html, body {
    overflow-x: hidden;
    max-width: 100%;
}
#about,
#contact,
#team,
body {
  background: var(--white);
}
#about,
#contact,
#cta,
#team,
#whychoose {
  padding: 110px 0;
}
#preloader.hidden,
#scrollTop {
  opacity: 0;
  visibility: hidden;
}
#scrollTop.visible,
.practice-card:hover .practice-icon,
.practice-card:hover .practice-link,
.team-card:hover .team-social {
  transform: translateY(0);
  opacity: 1;
}
#footer,
#mainNav.scrolled,
#preloader,
#scrollTop:hover,
#whychoose {
  background: var(--navy);
}
.accordion-item,
.blog-card,
.blog-card-img,
.comment-avatar,
.practice-card,
.practice-desc,
.preloader-bar,
.recent-post-img,
.team-card,
section {
  overflow: hidden;
}
:root {
  --navy: #0d1b2a;
  --navy-light: #152638;
  --gold: #c9a227;
  --gold-light: #e0ba55;
  --gold-dark: #a07d15;
  --gray-bg: #f5f5f0;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --border: rgba(201, 162, 39, 0.25);
  --shadow-sm: 0 4px 20px rgba(13, 27, 42, 0.08);
  --shadow-md: 0 8px 40px rgba(13, 27, 42, 0.14);
  --shadow-gold: 0 0 30px rgba(201, 162, 39, 0.35);
  --transition: all 0.35s ease;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Poppins", sans-serif;
}
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  color: var(--text-dark);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.7;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}
a {
  text-decoration: none;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.navbar-brand,
.preloader-logo {
  font-family: var(--font-heading);
}
.section-title {
  font-size: clamp(2rem, 4vw, 2rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.cta-title em,
.section-title span {
  color: var(--gold);
  font-style: italic;
}
.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
.section-label-gold-light {
  color: var(--gold-light);
}
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s, visibility 0.7s;
}
#mainNav,
.nav-link::after {
  transition: var(--transition);
}
.preloader-logo {
  font-size: 2.8rem;
  color: var(--white);
  letter-spacing: 4px;
  margin-bottom: 30px;
}
.preloader-scales {
  position: relative;
  width: 60px;
  height: 60px;
}
.preloader-scales svg {
  width: 60px;
  height: 60px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  animation: 1.6s ease-in-out infinite scaleSway;
}
@keyframes scaleSway {
  0%,
  100% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-6deg);
  }
  75% {
    transform: rotate(6deg);
  }
}
.preloader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 24px;
}
.preloader-bar::after {
  content: "";
  display: block;
  width: 0%;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: 1.8s forwards loadBar;
}
@keyframes loadBar {
  to {
    width: 100%;
  }
}
#mainNav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: 0 0;
}
#hero,
.hero-content,
.nav-link {
  position: relative;
}
#mainNav.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.navbar-brand {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 2px;
}
.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.85) !important;
  margin: 0 10px;
  padding: 6px 0 !important;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
}
.nav-link.active,
.nav-link:hover {
  color: var(--gold) !important;
}
.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 22px !important;
  border-radius: 60px 40px !important;
  font-weight: 600;
  margin-left: 10px;
  letter-spacing: 1px;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}
.nav-cta::after {
  display: none;
}
.navbar-toggler {
  border: 1px solid rgba(201, 162, 39, 0.5);
  padding: 6px 10px;
}
.btn-gold,
.btn-outline-gold {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  padding: 14px 36px;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201,162,39,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 60px 40px !important;
}
.btn-gold:hover {
  transform: scale(1.04);
}
.btn-outline-gold {
  background: 0 0;
  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: 60px 40px !important;
}
.about-experience-badge .num,
.about-feature-title,
.counter-num,
.feature-box h4,
.practice-name,
.team-name {
  font-family: var(--font-heading);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.04);
}
#contactForm .btn-gold,
.comment-form .btn-gold {
  border: none;
  cursor: pointer;
  text-align: center;
}
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("https://images.unsplash.com/photo-1589994965851-a8f479c573a9?w=1800&q=80")
    center/cover no-repeat;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.92) 0,
    rgba(13, 27, 42, 0.75) 50%,
    rgba(13, 27, 42, 0.6) 100%
  );
}
.hero-content {
  z-index: 2;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-label::after,
.hero-label::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-size: clamp(3rem, 6vw, 2.5rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.9;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
}
.hero-badge i {
  color: var(--gold);
  font-size: 16px;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: 2s ease-in-out infinite scrollPulse;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}
.about-img-wrap {
  position: relative;
  display: inline-block;
}
.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 40px 60px;
}
.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 40px 60px;
}
.about-experience-badge .num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about-experience-badge .txt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 4px;
}
.about-gold-line {
  width: 4px;
  height: 60px;
  background: var(--gold);
  margin-bottom: 30px;
}
.about-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.about-feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  transition: var(--transition);
  border-radius: 40px 60px;
}
.about-feature:hover .about-feature-icon,
.carousel-btn:hover,
.post-share a:hover,
.post-tags a:hover,
.tag-cloud a:hover,
.team-social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.about-feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.about-feature-text {
  font-size: 13px;
  color: var(--text-muted);
}
#practice,
#testimonials {
  padding: 110px 0;
  background: var(--gray-bg);
}
.practice-card {
  position: relative;
  cursor: pointer;
  margin-bottom: 24px;
  border-radius: 40px 60px;
}
.practice-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.practice-card:hover img {
  transform: scale(1.08);
}
.practice-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.95) 0,
    rgba(13, 27, 42, 0.3) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
  border-radius: 40px 60px;
}
.practice-card:hover .practice-overlay {
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.98) 0,
    rgba(13, 27, 42, 0.7) 60%,
    rgba(13, 27, 42, 0.3) 100%
  );
}
.practice-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
  border-radius: 40px 60px;
}
.practice-name {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
}
.practice-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  max-height: 0;
  transition: max-height 0.4s, opacity 0.4s;
  opacity: 0;
}
.carousel-btn,
.carousel-dot,
.feature-box,
.feature-box-icon,
.practice-link,
.team-social {
  transition: var(--transition);
}
.practice-card:hover .practice-desc {
  max-height: 80px;
  opacity: 1;
}
.practice-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
  opacity: 0;
  transform: translateY(5px);
}
.counter-label,
.team-role {
  letter-spacing: 2px;
  text-transform: uppercase;
}
.feature-box h4,
.whychoose-title {
  color: var(--white);
}
.whychoose-sub {
  color: rgba(255, 255, 255, 0.6);
}
.feature-box {
  padding: 40px 32px;
  border: 1px solid rgba(201, 162, 39, 0.15);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  height: 100%;
  border-radius: 40px 60px;
}
.feature-box:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.feature-box-icon {
  width: 70px;
  height: 70px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 26px;
  margin: 0 auto 22px;
  border-radius: 40px 60px;
}
.counter-num,
.team-card img,
.testimonial-slide.active {
  display: block;
}
.feature-box:hover .feature-box-icon,
.page-item .page-link:hover,
.page-item.active .page-link {
  background: var(--gold);
  color: var(--navy);
}
.feature-box h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.feature-box p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.counter-section {
  padding: 70px 0 20px;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  margin-top: 70px;
}
.counter-item {
  text-align: center;
}
.counter-num {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.counter-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  display: block;
}
.team-card {
  position: relative;
  border-radius: 40px 60px;
}
.team-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top;
  filter: grayscale(20%);
  transition: transform 0.5s, filter 0.5s;
}
.team-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.95) 0,
    transparent 90%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 40px 60px;
}
#cta,
.cta-content,
.testimonial-card,
.testimonial-text {
  position: relative;
}
.team-social {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  transform: translateY(15px);
  opacity: 0;
}
.team-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 162, 39, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 13px;
  border-radius: 40px 60px;
}
.team-name {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 4px;
}
.team-role {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
}
.testimonial-name,
.testimonial-text {
  color: var(--navy);
  font-family: var(--font-heading);
}
.testimonials-carousel {
  position: relative;
  overflow: hidden;
}
.testimonial-slide {
  display: none;
  animation: 0.5s forwards fadeSlide;
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.testimonial-card {
  background: var(--white);
  padding: 50px 48px;
  box-shadow: var(--shadow-sm);
  max-width: 780px;
  margin: 0 auto;
  border-radius: 40px 60px;
}
.testimonial-card::before {
  content: "\201C";
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -10px;
  left: 40px;
  line-height: 1;
}
.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 30px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.testimonial-role {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 18px;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.carousel-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: 0 0;
  color: var(--gold);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px 60px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.3);
  border: none;
  cursor: pointer;
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}
.blog-card:hover .blog-card-img img,
.btn-glow:hover {
  transform: scale(1.05);
}
#cta {
  background: url("https://images.unsplash.com/photo-1521791055366-0d553872952f?w=1800&q=80")
    center/cover no-repeat;
}
#cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.88);
}
.cta-content {
  z-index: 1;
  text-align: center;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}
.btn-glow,
.contact-form .form-control {
  font-family: var(--font-body);
  transition: var(--transition);
}
.cta-sub {
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto 40px;
}
.btn-glow {
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 44px;
  border: 2px solid var(--gold);
  display: inline-block;
  border-radius: 40px 60px;
}
.contact-form .form-label,
.contact-info-label {
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.btn-glow:hover {
  box-shadow: var(--shadow-gold);
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  border-radius: 40px 60px;
}
.contact-info-label {
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info-text {
  font-size: 14px;
  color: var(--text-dark);
}
.contact-form .form-control {
  border: 1px solid #e0ddd5;
  border-radius: 40px 60px;
  padding: 14px 18px;
  font-size: 13px;
  background: var(--gray-bg);
  color: var(--text-dark);
}
.contact-form .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
  background: var(--white);
}
.comment-form textarea.form-control,
.contact-form textarea.form-control {
  resize: none;
}
.contact-form .form-label {
  font-size: 11px;
  color: var(--navy);
  margin-bottom: 8px;
}
.map-wrapper {
  width: 100%;
  height: 320px;
  margin-top: 30px;
  border: 1px solid var(--border);
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
#formSuccess {
  display: none;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
}
#footer {
  padding: 80px 0 0;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  display: block;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  transition: var(--transition);
  border-radius: 40px 60px;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}
.category-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 60px;
  padding: 22px 0;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}
.footer-bottom a {
  color: var(--gold);
  color: rgba(255, 255, 255, 0.3);
}
.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-right: none;
  padding: 12px 16px;
  color: #fff;
  font-size: 13px;
  font-family: var(--font-body);
  outline: 0;
}
#scrollTop,
.gold-divider {
  display: flex;
  align-items: center;
}
#scrollTop,
.newsletter-btn {
  color: var(--navy);
  border: none;
  background: var(--gold);
  transition: var(--transition);
  cursor: pointer;
}
.accordion-button,
.blog-title,
.comment-form h3,
.faq-category h2,
.post-body blockquote,
.recent-post-content h4,
.widget-title {
  font-family: var(--font-heading);
}
.newsletter-btn {
  padding: 12px 18px;
  font-size: 14px;
}
.footer-insight-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
}
.footer-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 12px;
}
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  justify-content: center;
  font-size: 16px;
  z-index: 900;
  transform: translateY(12px);
  border-radius: 40px 60px;
}
#scrollTop.visible {
  visibility: visible;
}
#scrollTop:hover {
  color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.gold-divider {
  gap: 12px;
  margin-bottom: 16px;
}
.gold-divider span {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.gold-divider em {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
@media (max-width: 991.98px) {
  #mainNav .navbar-collapse {
    background: var(--navy);
    padding: 20px 24px;
    margin-top: 10px;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
  }
  .about-experience-badge {
    right: 0;
    bottom: 0;
  }
  .about-img-wrap img {
    height: 380px;
  }
  .team-card img {
    height: 320px;
  }
  .testimonial-card {
    padding: 36px 28px;
  }
}
#blog-header::before,
#faq-header::before {
  background: url("https://images.unsplash.com/photo-1456324504439-367cee3b3c32?w=1800&q=80")
    center/cover no-repeat;
  content: "";
  position: absolute;
  inset: 0;
}
@media (max-width: 767.98px) {
  #hero {
    min-height: 85vh;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-badges {
    gap: 16px;
  }
  .practice-card img {
    height: 240px;
  }
  .counter-num {
    font-size: 2.8rem;
  }
  .feature-box {
    margin-bottom: 16px;
  }
  .contact-form {
    margin-top: 48px;
  }
  .map-wrapper {
    height: 250px;
  }
  .testimonial-card {
    padding: 28px 22px;
  }
  .footer-section {
    margin-bottom: 40px;
  }
}
.nav-link.active,
.nav-link:hover {
  color: "#000";
}
#blog-header,
#faq-header,
#post-header,
#privacy-header,
#terms-header {
  padding: 180px 0 80px;
  background: var(--navy);
  position: relative;
  margin-top: 0;
}
#faq-header::before {
  opacity: 0.1;
}
.blog-header-content,
.faq-header-content,
.post-header-content,
.privacy-header-content,
.terms-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.blog-header-content h1,
.faq-header-content h1,
.privacy-header-content h1,
.terms-header-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.blog-header-content p,
.faq-header-content p,
.privacy-header-content p,
.terms-header-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.accordion-body a:hover,
.accordion-button,
.comment-reply:hover,
.faq-category h2,
.recent-post-content h4 a {
  color: var(--navy);
}
#blog-main,
#faq-content,
#post-content,
#privacy-content,
#terms-content {
  padding: 80px 0;
  background: var(--white);
}
.faq-category {
  margin-bottom: 50px;
}
.faq-category h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.accordion-item {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 40px 60px !important;
  margin-bottom: 20px;
}
.accordion-button {
  background-color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px 30px;
  border: none;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background-color: var(--gray-bg);
  color: var(--navy);
}
.accordion-button:focus {
  box-shadow: none;
  border-color: var(--gold);
}
.accordion-button::after,
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c9a227'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
  padding: 20px 30px 30px;
  background-color: var(--gray-bg);
  color: var(--text-dark);
  font-size: 15px;
  border-top: 1px solid var(--border);
}
.accordion-body a,
.blog-meta,
.category-list span {
  font-weight: 500;
  color: var(--gold);
}
#herocorporate {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1800&q=80")
    center/cover no-repeat;
}
#herocorporate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.92) 0,
    rgba(13, 27, 42, 0.8) 50%,
    rgba(13, 27, 42, 0.7) 100%
  );
}
#blog-header::before {
  opacity: 0.15;
}
.blog-card {
  background: var(--white);
  border-radius: 40px 60px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.blog-card-img {
  height: 220px;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card-content {
  padding: 25px 25px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-meta i {
  font-size: 12px;
}
.blog-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-title a {
  color: inherit;
}
.blog-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex: 1;
}
.blog-readmore {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
}
.blog-readmore:hover {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.sidebar-widget {
  background: var(--gray-bg);
  border-radius: 40px 60px;
  padding: 30px;
  margin-bottom: 40px;
}
.widget-title {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.search-form {
  display: flex;
  gap: 0;
}
.search-input {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-right: none;
  padding: 12px 16px;
  font-size: 13px;
  font-family: var(--font-body);
  outline: 0;
  border-radius: 40px 0 0 40px;
}
.category-list a,
.search-btn {
  font-size: 14px;
  transition: var(--transition);
}
.search-btn {
  background: var(--gold);
  border: none;
  padding: 12px 18px;
  color: var(--navy);
  cursor: pointer;
  border-radius: 0 40px 40px 0;
}
.search-btn:hover {
  background: var(--gold-light);
}
.category-list li {
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(201, 162, 39, 0.2);
  padding-bottom: 8px;
}
.category-list a {
  display: flex;
  justify-content: space-between;
  color: var(--text-dark);
}
.category-list a:hover {
  color: var(--gold);
  padding-left: 5px;
}
.recent-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}
.recent-post-img {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 40px 60px;
}
.comment-avatar img,
.recent-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recent-post-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}
.recent-post-date,
.tag-cloud a {
  font-size: 11px;
  text-transform: uppercase;
}
.page-item .page-link,
.tag-cloud a {
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
}
.recent-post-date {
  color: var(--gold);
  letter-spacing: 1px;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-cloud a {
  display: inline-block;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 40px 60px;
}
.comment,
.comment-form,
.page-item .page-link,
.post-body blockquote,
.post-tags a {
  background: var(--gray-bg);
}
.pagination {
  margin-top: 40px;
  justify-content: center;
}
.page-item .page-link {
  border: none;
  margin: 0 4px;
  border-radius: 40px 60px !important;
  padding: 10px 18px;
}
.post-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-dark);
}
.post-body h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--navy);
}
.post-body h3 {
  font-size: 1.4rem;
  margin: 30px 0 15px;
  color: var(--navy);
}
.post-body p,
.privacy-body p,
.terms-body p {
  margin-bottom: 25px;
}
.post-body blockquote {
  margin: 30px 0;
  padding: 20px 30px;
  border-left: 4px solid var(--gold);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  border-radius: 0 40px 40px 0;
}
.post-body figure {
  margin: 40px 0;
}
.post-body figcaption {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}
.comment-date,
.post-tags a {
  font-size: 11px;
}
.post-body img {
  border-radius: 40px 60px;
  width: 100%;
}
.post-tags {
  margin: 40px 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.post-tags span {
  font-weight: 600;
  color: var(--navy);
  margin-right: 5px;
}
.post-tags a {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 40px 60px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--border);
}
.post-share {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.post-share span {
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}
.post-share a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  border-radius: 50%;
  transition: var(--transition);
}
.comments-section {
  margin-top: 60px;
}
.comment {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  border-radius: 40px 60px;
}
.comment-avatar {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.comment-content {
  flex: 1;
}
.comment-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.comment-author {
  font-weight: 600;
  color: var(--navy);
}
.comment-date,
.comment-reply {
  color: var(--gold);
  text-transform: uppercase;
}
.comment-text {
  font-size: 14px;
  margin-bottom: 10px;
}
.comment-reply {
  font-size: 12px;
  font-weight: 600;
}
.comment-form {
  margin-top: 50px;
  padding: 40px;
  border-radius: 40px 60px;
}
.comment-form h3 {
  font-size: 1.6rem;
  margin-bottom: 25px;
}
.comment-form .form-control {
  border: 1px solid #e0ddd5;
  border-radius: 40px 60px;
  padding: 14px 18px;
  font-size: 13px;
  font-family: var(--font-body);
  transition: var(--transition);
  background: var(--white);
  color: var(--text-dark);
}
.comment-form .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}
#post-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1800&q=80")
    center/cover no-repeat;
  opacity: 0.15;
}
.post-header-content .post-meta {
  display: flex;
  justify-content: center;
  gap: 25px;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}
#herobusiness,
#herofamily {
  align-items: center;
  min-height: 100vh;
  position: relative;
  display: flex;
}
.post-header-content h1 {
  color: var(--white);
  font-size: 3rem;
  max-width: 800px;
  margin: 0 auto 20px;
}
.post-header-content .post-author {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.post-header-content .post-author strong {
  color: var(--gold);
  font-weight: 600;
}
#herofamily {
  background: url("https://images.unsplash.com/photo-1511895426328-dc8714191300?w=1800&q=80")
    center/cover no-repeat;
}
#herofamily::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.88) 0,
    rgba(13, 27, 42, 0.75) 50%,
    rgba(13, 27, 42, 0.65) 100%
  );
}
#herobusiness {
  background: url("https://images.unsplash.com/photo-1556761175-4b46a572b786?w=1800&q=80")
    center/cover no-repeat;
}
#herobusiness::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.9) 0,
    rgba(13, 27, 42, 0.75) 50%,
    rgba(13, 27, 42, 0.6) 100%
  );
}
#privacy-header::before,
#terms-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1800&q=80")
    center/cover no-repeat;
  opacity: 0.1;
}
.privacy-body,
.terms-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-dark);
}
.privacy-body h2,
.terms-body h2 {
  font-size: 1.8rem;
  margin: 50px 0 20px;
  color: var(--navy);
}
.privacy-body h3,
.terms-body h3 {
  font-size: 1.4rem;
  margin: 40px 0 15px;
  color: var(--navy);
}
.privacy-body ol,
.privacy-body ul,
.terms-body ol,
.terms-body ul {
  margin-bottom: 25px;
  padding-left: 20px;
}
.privacy-body li,
.terms-body li {
  margin-bottom: 8px;
}
.privacy-body .last-updated,
.terms-body .last-updated {
  font-style: italic;
  color: var(--gold);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.privacy-body blockquote,
.terms-body blockquote {
  margin: 30px 0;
  padding: 20px 30px;
  background: var(--gray-bg);
  border-left: 4px solid var(--gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  border-radius: 0 40px 40px 0;
}
#herocriminal {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: url("../images/131078.jpg") center/cover no-repeat;
}
#herocriminal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.95) 0,
    rgba(13, 27, 42, 0.8) 50%,
    rgba(13, 27, 42, 0.7) 100%
  );
}