/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #111111; border-radius: 3px; }

::selection { background: rgba(0,0,0,0.15); }

/* =============================================
   CONTAINER
   ============================================= */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   SECTION HELPERS
   ============================================= */
.section { padding: 90px 0; }
.section--gray { background: #f5f5f5; }
.section--dark {
  background: #1a1e2d;
  color: #fff;
}

.text-center { text-align: center; }

.section-head { margin-bottom: 55px; }

.section-tag {
  display: inline-block;
  color: #111111;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-tag--light { color: #ccc; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: #1a1e2d;
  line-height: 1.25;
  margin-bottom: 18px;
}
.section-title--white { color: #fff; }

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.section-divider--left { justify-content: flex-start; }
.section-divider span,
.section-divider::before,
.section-divider::after {
  content: '';
  display: block;
  height: 3px;
  background: #111111;
  border-radius: 2px;
}
.section-divider span { width: 50px; }
.section-divider::before { width: 8px; }
.section-divider::after { width: 8px; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn--orange {
  background: #111111;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}
.btn--orange:hover {
  background: #000000;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transform: translateY(-2px);
  color: #fff;
}
.btn--outline-white {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
.btn--full { width: 100%; justify-content: center; }

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: #1a1e2d;
  padding: 9px 0;
  font-size: 13px;
  color: #aaa;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar__left {
  display: flex;
  gap: 24px;
}
.topbar__left span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.topbar__left i { color: #ccc; font-size: 12px; }
.topbar__right {
  display: flex;
  gap: 12px;
}
.topbar__right a {
  color: #888;
  font-size: 13px;
  transition: color 0.2s;
}
.topbar__right a:hover { color: #111111; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.14);
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 75px;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.navbar__brand-icon {
  width: 44px;
  height: 44px;
  background: #111111;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}
.navbar__brand-icon sup { font-size: 10px; }
.navbar__brand-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1a1e2d;
  line-height: 1.2;
}
.navbar__brand-sub {
  display: block;
  font-size: 11px;
  color: #555555;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}
.navbar__links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  transition: color 0.2s;
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: #111111;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.navbar__links a:hover,
.navbar__links a.active { color: #111111; }
.navbar__links a:hover::after,
.navbar__links a.active::after { transform: scaleX(1); }

.navbar__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  color: #1a1e2d;
  flex-shrink: 0;
  transition: color 0.2s;
}
.navbar__phone i { color: #111111; }
.navbar__phone:hover { color: #111111; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #1a1e2d;
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: calc(100vh - 75px);
  min-height: 580px;
  overflow: hidden;
}
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease, transform 6s ease;
  transform: scale(1.05);
}
.hero__slide--active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(20,24,40,0.88) 0%,
    rgba(20,24,40,0.72) 60%,
    rgba(20,24,40,0.35) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111111;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 16px;
  margin-bottom: 24px;
}
.hero__tag::before {
  content: '';
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease forwards;
}
.hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.15s ease forwards;
  opacity: 0;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease forwards;
  opacity: 0;
}

/* Arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  background: rgba(255,255,255,0.07);
}
.hero__arrow:hover {
  background: #111111;
  border-color: #111111;
}
.hero__arrow--prev { left: 24px; }
.hero__arrow--next { right: 24px; }

/* Dots */
.hero__dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all 0.3s;
}
.hero__dot--active {
  background: #111111;
  width: 28px;
  border-radius: 5px;
}

/* Strip */
.hero__strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(10px);
  z-index: 10;
  padding: 14px 0;
}
.hero__strip-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.hero__strip-inner i { font-size: 18px; }
.hero__strip-btn {
  margin-left: auto;
  padding: 7px 22px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s;
  white-space: nowrap;
}
.hero__strip-btn:hover {
  background: #fff;
  color: #111111;
}

/* =============================================
   PRACTICE AREAS
   ============================================= */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.practice-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 2px;
  box-shadow: 0 3px 25px rgba(0,0,0,0.07);
  transition: all 0.35s ease;
  border-bottom: 3px solid transparent;
}
.practice-card:hover,
.practice-card--featured {
  border-bottom-color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.practice-card--featured {
  background: #1a1e2d;
  color: #fff;
}
.practice-card__icon {
  width: 64px;
  height: 64px;
  background: #111111;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 26px;
  color: #fff;
  transition: transform 0.3s;
}
.practice-card:hover .practice-card__icon { transform: scale(1.08) rotate(-5deg); }

.practice-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1e2d;
  margin-bottom: 12px;
}
.practice-card--featured h3 { color: #fff; }
.practice-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.practice-card--featured p { color: #bbb; }

.practice-card__price {
  display: inline-block;
  background: rgba(232,104,42,0.1);
  border: 1px solid rgba(0,0,0,0.25);
  color: #111111;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  margin-bottom: 18px;
  border-radius: 2px;
}
.practice-card--featured .practice-card__price {
  background: rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.3);
}

.practice-card__list {
  margin-bottom: 18px;
}
.practice-card__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #bbb;
  padding: 4px 0;
}
.practice-card__list li i { color: #111111; font-size: 11px; }

.practice-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.practice-card__tags span {
  padding: 3px 11px;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(232,104,42,0.2);
  color: #111111;
  font-size: 12px;
  font-weight: 500;
  border-radius: 2px;
}

.practice-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #111111;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap 0.25s ease, color 0.2s;
}
.practice-card__link:hover { gap: 12px; }
.practice-card--featured .practice-card__link { color: #888888; }

/* =============================================
   ABOUT
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about__images {
  position: relative;
}
.about__img-main {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about__img-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about__images:hover .about__img-main img { transform: scale(1.03); }

.about__img-badge {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: #111111;
  color: #fff;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.about__img-badge i { font-size: 28px; }
.about__img-badge span { font-size: 13px; font-weight: 600; line-height: 1.4; }

.about__img-secondary {
  position: absolute;
  top: 30px;
  right: -25px;
  width: 160px;
  height: 160px;
  border-radius: 2px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.about__img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content .section-title { margin-top: 8px; }
.about__lead {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.75;
}
.about__body {
  color: #666;
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.85;
}
.about__quote {
  border-left: 4px solid #111111;
  padding: 14px 20px;
  background: #f5f5f5;
  color: #555;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 30px;
  position: relative;
}
.about__quote i {
  color: #111111;
  margin-right: 8px;
  font-size: 14px;
}

.about__stats {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  padding: 24px 28px;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 2px;
}
.about__stat { text-align: center; }
.about__stat-num {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: #111111;
  line-height: 1;
}
.about__stat-plus { font-size: 24px; font-weight: 700; color: #111111; }
.about__stat-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}
.about__stat-divider {
  width: 1px;
  height: 50px;
  background: #ddd;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: #111111;
  padding: 50px 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner__text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
}
.cta-banner__text p { color: rgba(255,255,255,0.8); font-size: 14px; }
.cta-banner .btn--orange {
  background: #fff;
  color: #111111;
  box-shadow: none;
}
.cta-banner .btn--orange:hover {
  background: #1a1e2d;
  color: #fff;
  transform: translateY(-2px);
}

/* =============================================
   CONSULTATION
   ============================================= */
.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.consult__left .section-title { margin-top: 8px; }
.consult__desc {
  color: #aaa;
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 30px;
}

.consult__tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.consult__tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #aaa;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  transition: all 0.25s;
  border-radius: 2px;
  cursor: pointer;
}
.consult__tab i { color: #ccc; font-size: 15px; width: 18px; }
.consult__tab:hover { border-color: rgba(0,0,0,0.3); color: #fff; }
.consult__tab--active {
  background: rgba(0,0,0,0.08);
  border-color: #111111;
  color: #fff;
}

.consult__contact { display: flex; flex-direction: column; gap: 14px; }
.consult__contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
}
.consult__contact-item i {
  width: 36px;
  height: 36px;
  background: #111111;
  color: #fff;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.consult__contact-item strong {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.consult__contact-item span { color: #888; font-size: 13px; }

/* Form */
.consult__form-wrap {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.consult__form-header {
  background: #111111;
  color: #fff;
  padding: 18px 28px;
  font-size: 15px;
  font-weight: 600;
}
.consult__form { padding: 30px 28px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.form-group label span { color: #111111; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  background: #fafafa;
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #111111;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
  background: #fff;
}
.form-group textarea { resize: none; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  margin-top: 10px;
}
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 28px;
  text-align: center;
}
.form-success i { font-size: 52px; color: #111111; margin-bottom: 16px; }
.form-success h4 { font-size: 22px; font-weight: 700; color: #1a1e2d; margin-bottom: 8px; }
.form-success p { color: #666; font-size: 14px; }
.form-success.show { display: flex; }

/* =============================================
   CASE STUDIES / WORK
   ============================================= */
.cases-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}
.cases-filter__btn {
  padding: 8px 22px;
  border: 2px solid #ddd;
  color: #666;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  background: #fff;
}
.cases-filter__btn:hover,
.cases-filter__btn--active {
  background: #111111;
  border-color: #111111;
  color: #fff;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.case-card {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.35s ease;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.14);
}
.case-card.hidden { display: none; }
.case-card__img {
  position: relative;
  overflow: hidden;
}
.case-card__img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.case-card:hover .case-card__img img { transform: scale(1.06); }
.case-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #111111;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}
.case-card__body { padding: 22px 24px; }
.case-card__body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a1e2d;
  margin-bottom: 9px;
  line-height: 1.4;
}
.case-card__body p {
  color: #777;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.case-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #111111;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.case-card__link:hover { gap: 10px; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: #fff; }
.testimonials__slider { overflow: hidden; }
.testimonials__track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 100%;
  padding: 0 80px;
  text-align: center;
}
.testimonial-card__stars {
  color: #333333;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testimonial-card__quote {
  font-size: 40px;
  color: #111111;
  opacity: 0.3;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.85;
  font-style: italic;
  max-width: 680px;
  margin: 0 auto 28px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #111111;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-card__author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a1e2d;
}
.testimonial-card__author span {
  font-size: 12px;
  color: #888;
  font-weight: 500;
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
}
.testimonials__btn {
  width: 42px;
  height: 42px;
  border: 2px solid #111111;
  color: #111111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  font-size: 14px;
}
.testimonials__btn:hover {
  background: #111111;
  color: #fff;
}
.testimonials__dots { display: flex; gap: 8px; }
.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s;
}
.testimonials__dot--active {
  background: #111111;
  width: 28px;
  border-radius: 5px;
}

/* =============================================
   TEAM
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.team-card {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}
.team-card__img-wrap {
  position: relative;
  overflow: hidden;
}
.team-card__img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.team-card:hover .team-card__img-wrap img { transform: scale(1.05); }
.team-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.team-card:hover .team-card__overlay { opacity: 1; }
.team-card__socials {
  display: flex;
  gap: 12px;
}
.team-card__socials a {
  width: 38px;
  height: 38px;
  background: #fff;
  color: #111111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transform: translateY(15px);
  opacity: 0;
  transition: all 0.3s ease;
}
.team-card:hover .team-card__socials a {
  transform: translateY(0);
  opacity: 1;
}
.team-card:hover .team-card__socials a:nth-child(1) { transition-delay: 0s; }
.team-card:hover .team-card__socials a:nth-child(2) { transition-delay: 0.06s; }
.team-card:hover .team-card__socials a:nth-child(3) { transition-delay: 0.12s; }
.team-card__socials a:hover { background: #1a1e2d; color: #fff; }
.team-card__body {
  padding: 20px 22px;
  text-align: center;
  border-top: 3px solid #111111;
}
.team-card__body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1e2d;
  margin-bottom: 4px;
}
.team-card__body span {
  font-size: 12px;
  font-weight: 600;
  color: #111111;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-sub {
  color: #aaa;
  max-width: 500px;
  margin: 0 auto 36px;
  font-size: 15px;
  line-height: 1.7;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.contact-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  transition: border-color 0.3s, transform 0.3s;
}
.contact-card:hover {
  border-color: rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
.contact-card i {
  font-size: 32px;
  color: #111111;
  margin-bottom: 16px;
}
.contact-card h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-card p {
  color: #888;
  font-size: 13px;
  line-height: 1.6;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #141824;
  color: #aaa;
  padding-top: 70px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__col--brand p {
  color: #777;
  font-size: 13px;
  line-height: 1.8;
  margin: 16px 0 20px;
  max-width: 280px;
}
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  color: #888;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.25s;
}
.footer__socials a:hover {
  background: #111111;
  border-color: #111111;
  color: #fff;
}
.footer__col h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,0.25);
  display: inline-block;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  color: #777;
  font-size: 13px;
  transition: color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer__col ul a::before {
  content: '›';
  color: #111111;
  font-size: 16px;
  line-height: 1;
}
.footer__col ul a:hover { color: #111111; padding-left: 4px; }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer__contact div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #777;
  font-size: 13px;
  line-height: 1.5;
}
.footer__contact i { color: #111111; margin-top: 2px; flex-shrink: 0; }

.footer__bottom {
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom p { font-size: 13px; color: #555; }

/* =============================================
   BACK TO TOP
   ============================================= */
/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 30px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
  color: #fff;
}
.whatsapp-float__tooltip {
  position: absolute;
  right: 62px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #111;
  border-right: none;
}
.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Pulse ring animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}

.back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: #111111;
  color: #fff;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: all 0.35s ease;
  z-index: 999;
}
.back-top.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-top:hover {
  background: #1a1e2d;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

[data-aos] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-aos].aos-in {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .practice-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about__img-secondary { display: none; }
  .about__img-main img { height: 350px; }
  .consult-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar__left { display: none; }
  .navbar__links, .navbar__phone { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__inner { gap: 0; }
  .navbar__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    padding: 16px 0;
    z-index: 999;
    gap: 0;
  }
  .navbar__links.open li a { padding: 12px 24px; border-bottom: 1px solid #f5f5f5; display: block; }
  .navbar__links.open a::after { display: none; }

  .hero__content { padding-top: 80px; }
  .hero__title { font-size: 32px; }
  .hero__sub { display: none; }
  .hero__arrow { display: none; }
  .hero { min-height: 520px; }

  .section { padding: 60px 0; }
  .section-title { font-size: 28px; }
  .practice-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 0 20px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .about__stats { flex-direction: column; gap: 20px; }
  .about__stat-divider { width: 60px; height: 1px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .team-grid { grid-template-columns: 1fr; }
}
