*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #fab80d;
  --gold-light: #d4af5a;
  --navy: #09135a;
  --navy-dark: #111827;
  --navy-mid: #1e2b4a;
  --white: #ffffff;
  --light-bg: #fff8e7;
  --text-dark: #000526;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e0d5;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Lato", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7%;
  height: 80px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.nav-logo img {
  width: 100%;
  max-width: 130px;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: #1e2b4a;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  font-weight: 400;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-cta {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: "Lato", sans-serif;
}
.nav-cta:hover {
  background: var(--gold-light);
}
.nav-social {
  display: flex;
  gap: 12px;
}
.nav-social a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-social a:hover {
  color: var(--gold);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  background:
    linear-gradient(
      135deg,
      rgba(17, 24, 39, 0.88) 0%,
      rgba(26, 35, 64, 0.82) 60%,
      rgba(17, 24, 39, 0.7) 100%
    ),
    url("/img/homepage_images/photo-1589829545856-d10d557cf95f.jpg")
      center/cover no-repeat;
  display: flex;
  align-items: center;
}
.hero-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 5%;
  animation: fadeUp 0.9s ease both;
}
.hero-pre {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 8vw, 60px);
  line-height: 76px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
}
.hero-sub {
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-gold {
  background: var(--gold);
  color: #000;
  padding: 13px 32px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 2px;
  font-family: "Lato", sans-serif;
  text-decoration: none;
  display: inline-block;
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: #fff;
  padding: 13px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 2px;
  font-family: "Lato", sans-serif;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* -- ABOUT US HERO -- */
.about-us-hero {
  position: relative;
  min-height: 60vh;
  background:
    linear-gradient(
      135deg,
      rgba(17, 24, 39, 0.88) 0%,
      rgba(26, 35, 64, 0.82) 50%,
      rgba(17, 24, 39, 0.7) 100%
    ),
    url("/img/homepage_images/about-us-hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}
.about-us-hero-title {
  font-size: 46px;
  line-height: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
}

/* -- PRACTICE AREAS HERO -- */
.practice-areas-hero {
  position: relative;
  min-height: 60vh;
  background:
    linear-gradient(
      135deg,
      rgba(6, 6, 6, 0.88) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(17, 24, 39, 0.7) 100%
    ),
    url("/img/homepage_images/photo-1589829545856-d10d557cf43.jpg") center/cover
      no-repeat;
  display: flex;
  align-items: center;
}
.practice-areas-hero-title {
  font-size: 46px;
  line-height: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
}

/* -- TEAM HERO -- */
.team-text {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
  width: 100%;
  padding: 60px 8% 0 8%;
  justify-content: center;
  margin: auto;
}
.team-hero {
  position: relative;
  min-height: 60vh;
  background:
    linear-gradient(
      135deg,
      rgba(6, 6, 6, 0.88) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(17, 24, 39, 0.7) 100%
    ),
    url("/img/homepage_images/photo-1521791136064-7986c2920332.jpg")
      center/cover no-repeat;
  display: flex;
  align-items: center;
}
.team-hero-title {
  font-size: 46px;
  line-height: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
}

/* -- TESTIMONIALS HERO -- */
.testimonials-text {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
  width: 100%;
  padding: 60px 8% 0 8%;
  justify-content: center;
  margin: auto;
}
.testimonials-hero {
  position: relative;
  min-height: 60vh;
  background:
    linear-gradient(
      135deg,
      rgba(6, 6, 6, 0.88) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(17, 24, 39, 0.7) 100%
    ),
    url("/img/homepage_images/photo-15567611754b46a572b750.jpg") center/cover
      no-repeat;
  display: flex;
  align-items: center;
}
.testimonials-hero-title {
  font-size: 46px;
  line-height: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
}

/* -- CONTACT HERO -- */
.contact-hero {
  position: relative;
  min-height: 60vh;
  background:
    linear-gradient(
      135deg,
      rgba(17, 24, 39, 0.88) 0%,
      rgba(26, 35, 64, 0.82) 50%,
      rgba(17, 24, 39, 0.7) 100%
    ),
    url("/img/homepage_images/about-us-hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}
.contact-hero-title {
  font-size: 46px;
  line-height: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
}

/* -- LOCATION -- */
.location {
  width: 90%;
  margin: auto;
  padding: 80px 0 0 0;
}
.location iframe {
  width: 100%;
}
.contact-page {
  display: flex;
  padding: 80px 5%;
}
.row {
  width: 100%;
  max-width: 100%;
}
.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item span {
  color: #000;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
}
.contact-form {
  width: 100%;
  max-width: 50%;
}
.contact-form h4 {
  font-size: 32px;
  line-height: 40px;
  color: var(--navy);
  text-transform: uppercase;
  padding-bottom: 15px;
}
.contact-form p {
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 20px;
}
.contact-form form {
  background-color: var(--light-bg);
  padding: 30px;
}
.contact-form input,
textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  outline: none;
  font-family: "lato";
  font-size: 16px;
  line-height: 24px;
}
.contact-form textarea {
  resize: none;
  height: 200px;
}
.contact-form button {
  margin-top: 30px;
}

/* ── HERO STATS BAR ── */
.stats-bar {
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 3px solid var(--gold);
}
.stat-item {
  padding: 32px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-item:last-child {
  border-right: none;
}
.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}
.stat-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.stat-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.6;
}

/* ── ABOUT / VOTE SECTION ── */
.about {
  background: #fff;
  padding: 90px 5%;
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  background: url(/img/homepage_images/1698084059560-9a53de7b816b.jpg)
    center/cover no-repeat;
  height: 500px;
  border-radius: 60px 0px 60px 60px;
}
.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 110px;
  height: 110px;
  background: var(--gold);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.about-badge-num {
  font-size: 32px;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  line-height: 1;
}
.about-badge-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-align: center;
}
.about-pre {
  color: var(--gold);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.about-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-text {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 25px;
  text-align: justify;
  margin-bottom: 16px;
}
.about-divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 22px 0;
}

/* -- ABOUT US MAIN -- */
.about-us {
  background: #fff;
  padding: 100px 5%;
}
.about-us-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-us-img-wrap {
  position: relative;
}
.about-us-img {
  background: url(/img/homepage_images/giammarco-boscaro-zeH-ljawHtg.jpg)
    center/cover no-repeat;
  width: 100%;
  height: 500px;
  border-radius: 40px 0px 40px 40px;
}
.about-us-pre {
  color: var(--gold);
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.about-us-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-us-text {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 25px;
  text-align: justify;
  margin-bottom: 16px;
}

/* -- TESTIMONIALS MAIN -- */
.testimonials-container {
  background-color: var(--light-bg);
  padding: 80px 7%;
}
.testimonials-content {
  display: flex;
  gap: 60px;
}
.testimonials-left {
  width: 100%;
  max-width: 75%;
  flex: 1;
}
.stars-icon {
  color: var(--gold);
  padding-bottom: 15px;
}
.text-left p {
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
  padding-bottom: 50px;
}
.testimonials-right {
  margin: auto;
  flex: 1;
  width: 100%;
  max-width: 25%;
  justify-content: center;
  text-align: center;
  border: 5px solid var(--navy);
}
.right-content {
  padding: 60px 20px 0 20px;
}
.right-content h4 {
  font-size: 22px;
  line-height: 30px;
  text-align: center;
  width: 100%;
  max-width: 80%;
  margin: auto;
  color: var(--navy);
  padding-bottom: 50px;
  font-weight: 700;
}
.right-content p {
  font-size: 16px;
  line-height: 24px;
  margin: auto;
  padding-bottom: 50px;
}
/* -- WHY CHOOSE US-- */
.about-us-why {
  padding: 90px 5%;
  background: var(--light-bg);
}
.why-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.why-text {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 28px;
  position: relative;
}
.why-header {
  text-align: center;
  margin-bottom: 30px;
}

/* ── PRACTICE AREAS ── */
.practice {
  background: var(--light-bg);
  padding: 90px 5%;
}
.section-header {
  text-align: center;
  margin-bottom: 54px;
}
.section-pre {
  color: var(--gold);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
}
.practice-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.practice-card {
  background: #fff;
  border-radius: 4px;
  padding: 32px 26px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.practice-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.practice-card:hover::before,
.practice-card.active::before {
  transform: scaleX(1);
}
.practice-card:hover,
.practice-card.active {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 12px 40px rgba(26, 35, 64, 0.18);
  transform: translateY(-4px);
}
.practice-card:hover .pc-title,
.practice-card.active .pc-title {
  color: #fff;
}
.practice-card:hover .pc-desc,
.practice-card.active .pc-desc {
  color: rgba(255, 255, 255, 0.6);
}
.practice-card:hover .pc-icon svg,
.practice-card.active .pc-icon svg {
  stroke: var(--gold);
}
.practice-card:hover .pc-link,
.practice-card.active .pc-link {
  color: var(--gold);
}
.pc-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pc-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.6;
  transition: stroke 0.3s;
}
.pc-title {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.pc-desc {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 18px;
  transition: color 0.3s;
}
.pc-link {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

/* ── CASE GALLERY ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-height: 320px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 320px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 24, 39, 0.85) 0%,
    rgba(17, 24, 39, 0.1) 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 22px;
}
.gallery-label {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.gallery-label::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 8px;
}

/* ── ATTORNEYS ── */
.attorneys {
  padding: 90px 5%;
  background: #fff;
}
.attorneys-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.attorney-card {
  text-align: center;
  cursor: pointer;
}
.attorney-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 18px;
}
.attorney-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
  border-radius: 4px;
}
.attorney-card:hover .attorney-img {
  transform: scale(1.05);
}
.attorney-card:hover .attorney-overlay {
  opacity: 1;
}
.soc-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s;
}
.soc-btn:hover {
  background: #fff;
  color: var(--navy);
}
.attorney-name {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.attorney-role {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.attorney-card.featured .attorney-name {
  color: var(--navy);
}
.attorney-card.featured .attorney-img-wrap {
  border: 3px solid var(--gold);
}

/* ── COUNTERS ── */
.counters {
  background: var(--navy);
  padding: 60px 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  border-top: 3px solid var(--gold);
}
.counter-icon {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 12px;
}
.counter-num {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.counter-label {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── TESTIMONIAL ── */
.testimonial {
  padding: 90px 5%;
  background: var(--light-bg);
}
.testimonial-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.test-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.test-avatars img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  margin: 0 -8px;
}
.test-text {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
}
.test-text::before {
  content: "\201C";
  font-family: "Playfair Display", serif;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.test-author {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  padding-bottom: 40px;
}
.test-role {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── NEWS ── */
/* .news {
  padding: 90px 5%;
  background: #fff;
}
.news-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.news-card:hover {
  box-shadow: 0 10px 40px rgba(26, 35, 64, 0.12);
}
.news-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.news-card:hover .news-img {
  transform: scale(1.04);
}
.news-img-wrap {
  overflow: hidden;
}
.news-body {
  padding: 22px 20px;
}
.news-cat {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.news-title {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-meta {
  color: var(--text-light);
  font-size: 12px;
} */

/* ── CTA BANNER ── */
.cta-banner {
  background:
    linear-gradient(
      135deg,
      rgba(17, 24, 39, 0.92) 0%,
      rgba(26, 35, 64, 0.6) 0%
    ),
    url("/img/homepage_images/photo-137682609173902hg.jpg") center/cover
      no-repeat;
  padding: 80px 5%;
  text-align: center;
  border-top: 3px solid var(--gold);
}
.cta-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.cta-sub {
  color: var(--white);
  font-size: 15px;
  line-height: 1.7;
  max-width: 590px;
  margin: 0 auto 36px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  padding: 60px 5% 0;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 3fr;
  gap: 45px;
  padding-bottom: 48px;
  border-bottom: 1.3px solid var(--gold);
}
.footer-logo img {
  width: 100%;
  max-width: 80px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.footer-about {
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 22px;
  font-weight: 200;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item span {
  color: var(--white);
  font-size: 15px;
  line-height: 22px;
  font-weight: 200;
}
.footer-col-title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  margin-bottom: 22px;
}
.working-sub {
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 200;
}
.working-hours1 {
  display: flex;
  gap: 70px;
  padding-top: 22px;
}
.working-hours2 {
  display: flex;
  gap: 120px;
  padding-top: 12px;
}
.working-hours3 {
  display: flex;
  gap: 45px;
  padding-top: 12px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--white);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 200;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 200;
}
.footer-btm-links {
  display: flex;
  gap: 20px;
}
.footer-btm-links a {
  color: var(--white);
  font-size: 16px;
  font-weight: 200;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-btm-links a:hover {
  color: var(--gold);
}
.privacy-policy {
  padding: 80px 7%;
}
.privacy-content h3 {
  font-size: 46px;
  line-height: 52px;
  color: var(--navy);
}
.privacy-content h4 {
  font-size: 22px;
  line-height: 26px;
  color: var(--navy);
  padding: 20px 0;
}
.privacy-content p {
  font-size: 16px;
  line-height: 30px;
  text-align: justify;
}
.privacy-content li {
  padding: 6px 0;
  margin-left: 30px;
}
.gap {
  padding-top: 20px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .counters {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta,
  .nav-social {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px 5%;
    gap: 18px;
  }
  .nav-links a {
    color: #fff;
  }
  nav.open .nav-cta {
    display: block;
    margin: 0 5% 16px;
    text-align: center;
  }
  .hero-title {
    line-height: 75px;
  }
  .stats-bar {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-us-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img {
    height: 500px;
  }
  .about-badge {
    right: 0;
  }
  .practice-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery {
    grid-template-columns: 1fr;
    max-height: none;
  }
  .gallery-item {
    height: 220px;
  }
  .attorneys-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .testimonials-left {
    width: 100%;
    max-width: 100%;
    flex: 1;
  }
  .testimonials-right {
    max-width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .contact-page {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .contact-form {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    line-height: 55px;
  }
  .hero-sub {
    font-size: 15px;
  }
  .about-img {
    height: 500px;
  }
  .about-title {
    font-size: 32px;
    line-height: 40px;
  }
  .about-us-title {
    font-size: 30px;
    line-height: 40px;
  }
  .practice-grid {
    grid-template-columns: 1fr;
  }
  .attorneys-grid {
    grid-template-columns: 1fr;
  }
  .counters {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .testimonials-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .testimonials-left {
    width: 100%;
    max-width: 100%;
    flex: 1;
  }
  .testimonials-right {
    max-width: 100%;
  }
  .contact-page {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .contact-form {
    width: 100%;
    max-width: 100%;
  }
}

/* ── COUNTER ANIMATION ── */
.counter-num {
  transition: all 0.3s;
}
