:root {
  --navy-dark: #0a1628;
  --navy: #1a2332;
  --navy-light: #2d3e50;
  --gold: #c9a961;
  --gold-dark: #a88a4d;
  --gold-light: #ddc389;
  --accent-blue: #4a90e2;
  --text-gray: #5a6c7d;
  --text-light: #8b98a8;
  --bg-light: #f7f9fc;
  --bg-white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 12px 32px rgba(10, 22, 40, 0.12);
  --shadow-xl: 0 20px 48px rgba(10, 22, 40, 0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy-dark);
  line-height: 1.7;
  font-size: 16px;
  background-color: var(--bg-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--navy-dark);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.navbar {
  background-color: var(--navy-dark);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--gold);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-dark) !important;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: var(--gold) !important;
  transform: translateY(-1px);
}

.navbar-brand i {
  color: var(--gold);
  font-size: 1.6rem;
}

.navbar-brand img {
  max-width: 100%;
  height: auto;
}

.navbar-brand span {
  font-size: 1.5rem;
  white-space: nowrap;
}

.navbar-toggler {
  border-color: rgba(201, 169, 97, 0.5);
  align-self: flex-start;
  margin-top: 8px;
}

.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(201, 169, 97, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding: 0.6rem 1.2rem !important;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold-light);
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 0.75rem 0;
  margin-top: 0.5rem;
}

.dropdown-item {
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
  color: var(--navy-dark);
  transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
  background: linear-gradient(90deg, rgba(201, 169, 97, 0.08), rgba(201, 169, 97, 0.12));
  color: var(--gold-dark);
  padding-left: 1.75rem;
}

.hero-section {
  background: linear-gradient(135deg, #0a1628 0%, #1a2332 50%, #0f1a2a 100%);
  color: white;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(201, 169, 97, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(74, 144, 226, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.05) 0%, transparent 60%);
  opacity: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(201, 169, 97, 0.03) 2px,
      rgba(201, 169, 97, 0.03) 4px
    );
  opacity: 0.3;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  margin-bottom: 1.75rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  opacity: 0.92;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 700px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border: none;
  color: var(--navy-dark);
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(201, 169, 97, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary-custom:hover::before {
  left: 100%;
}

.btn-primary-custom:hover {
  color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(201, 169, 97, 0.35);
}

.btn-primary-custom:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
}

.btn-secondary-custom {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: white;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-secondary-custom::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: white;
  border-radius: 8px;
  transition: width 0.4s ease, height 0.4s ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.btn-secondary-custom:hover::before {
  width: calc(100% + 5px);
  height: calc(100% + 5px);
}

.btn-secondary-custom:hover {
  color: var(--navy-dark);
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-gray);
  margin-bottom: 3.5rem;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.practice-area-card {
  border: none;
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  background: white;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.practice-area-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.practice-area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.practice-area-card:hover::before {
  transform: scaleX(1);
}

.practice-area-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.practice-area-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: white;
  font-size: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.practice-area-card:hover .practice-area-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.practice-area-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--navy-dark);
  transition: color 0.3s ease;
}

.practice-area-card:hover h3 {
  color: var(--gold-dark);
}

.practice-area-card p {
  color: var(--text-gray);
  margin-bottom: 1.75rem;
  line-height: 1.7;
  font-size: 0.975rem;
}

.practice-area-card a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.practice-area-card a i {
  transition: transform 0.3s ease;
}

.practice-area-card a:hover {
  color: var(--gold-dark);
  gap: 0.75rem;
}

.practice-area-card a:hover i {
  transform: translateX(4px);
}

.stats-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: white;
  padding: 60px 0;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.about-section {
  background: linear-gradient(180deg, var(--bg-light) 0%, rgba(247, 249, 252, 0.5) 100%);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.2), transparent);
}

.feature-box {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(201, 169, 97, 0.1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-box:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(201, 169, 97, 0.2);
}

.feature-icon {
  font-size: 2.75rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.feature-box:hover .feature-icon {
  transform: scale(1.1);
  color: var(--gold-dark);
}

.feature-box h4 {
  color: var(--navy-dark);
  font-weight: 700;
  margin-bottom: 0.875rem;
  font-size: 1.25rem;
}

.feature-box h5 {
  color: var(--navy-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-box p {
  color: var(--text-gray);
  margin: 0;
  line-height: 1.7;
}

.attorney-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(201, 169, 97, 0.1);
}

.attorney-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(201, 169, 97, 0.2);
}

.attorney-image {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, #0a1628 0%, #1a2332 50%, #2d3e50 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.attorney-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.attorney-image i {
  color: rgba(201, 169, 97, 0.3);
  font-size: 5.5rem;
  position: relative;
  z-index: 1;
}

.attorney-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.attorney-info {
  padding: 2.5rem;
}

.attorney-info hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
  margin: 1.5rem 0;
}

.attorney-name {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.attorney-title {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cta-section {
  background: linear-gradient(135deg, #c9a961 0%, #ddc389 50%, #c9a961 100%);
  color: var(--navy-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(10, 22, 40, 0.08) 0%, transparent 50%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.92;
  color: var(--navy);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.office-card {
  background: white;
  padding: 2rem 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(201, 169, 97, 0.15);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.office-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at center, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
  transition: all 0.4s ease;
}

.office-card:hover::before {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at center, rgba(201, 169, 97, 0.12) 0%, transparent 70%);
}

.office-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: rgba(201, 169, 97, 0.25);
}

.office-card h4 {
  color: var(--navy-dark);
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.office-card p {
  color: var(--text-gray);
  margin-bottom: 0.75rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.office-card a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.office-card a:not([href^="tel"]) {
  color: var(--text-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.office-card a:not([href^="tel"]):hover {
  color: var(--gold);
  text-decoration: underline;
}

footer {
  background: linear-gradient(180deg, var(--navy-dark) 0%, #050b14 100%);
  color: white;
  padding: 4rem 0 1.5rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
}

footer h5 {
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 1.75rem;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.75rem;
}

footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  padding-left: 0;
}

footer a:hover {
  color: var(--gold-light);
  padding-left: 8px;
}

footer p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.8;
}

.page-header {
  background: linear-gradient(135deg, #0a1628 0%, #1a2332 50%, #0f1a2a 100%);
  color: white;
  padding: 120px 0 70px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(74, 144, 226, 0.06) 0%, transparent 50%);
  opacity: 1;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: 3.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.content-section {
  padding: 80px 0;
}

.content-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 1.75rem;
  margin-top: 3rem;
  letter-spacing: -0.02em;
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section p {
  color: var(--text-gray);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  line-height: 1.85;
}

.content-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2.5rem;
}

.content-section ul li {
  padding-left: 2.5rem;
  margin-bottom: 1.25rem;
  position: relative;
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

.content-section ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.3rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 97, 0.1);
  border-radius: 6px;
}

.content-section ul li strong {
  color: var(--navy-dark);
  font-weight: 600;
}

.contact-form {
  background: white;
  padding: 3.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(201, 169, 97, 0.1);
}

.form-control {
  border: 2px solid rgba(201, 169, 97, 0.2);
  border-radius: 10px;
  padding: 0.875rem 1.25rem;
  transition: all 0.3s ease;
  font-size: 1rem;
  background-color: var(--bg-light);
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.12);
  outline: none;
  background-color: white;
}

.form-label {
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.625rem;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Utility classes */
.text-gold {
  color: var(--gold) !important;
}

.bg-gradient-dark {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

/* Responsive Design */
@media (max-width: 992px) {
  .navbar-brand img {
    height: 70px !important;
  }
  
  .navbar-brand span {
    font-size: 1.3rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .page-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 60px !important;
  }
  
  .navbar-brand span {
    font-size: 1.1rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .navbar {
    padding: 0.875rem 0;
  }
  
  .navbar-brand {
    font-size: 1.35rem;
  }
  
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .hero-title {
    font-size: 2.25rem;
    line-height: 1.25;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.05rem;
  }
  
  .page-header {
    padding: 80px 0 50px;
  }
  
  .page-title {
    font-size: 2rem;
    line-height: 1.25;
  }
  
  .page-subtitle {
    font-size: 1.1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .practice-area-card {
    margin-bottom: 1.5rem;
  }
  
  .practice-area-icon {
    width: 64px;
    height: 64px;
    font-size: 1.85rem;
  }
  
  .content-section {
    padding: 50px 0;
  }
  
  .content-section h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
  }
  
  .content-section p {
    font-size: 1rem;
  }
  
  .content-section ul li {
    padding-left: 2.25rem;
    font-size: 1rem;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .cta-section p {
    font-size: 1.1rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .office-card {
    padding: 2rem;
  }
  
  .office-card h4 {
    font-size: 1.25rem;
  }
  
  .feature-box {
    padding: 2rem;
    margin-bottom: 1.25rem;
  }
  
  .attorney-image {
    height: 280px;
    font-size: 4.5rem;
  }
  
  .attorney-info {
    padding: 2rem;
  }
  
  .attorney-name {
    font-size: 1.6rem;
  }
  
  .btn-primary-custom,
  .btn-secondary-custom {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  
  /* Ensure buttons stack nicely on mobile */
  .d-flex.gap-3 {
    flex-direction: column;
    gap: 1rem !important;
  }
  
  .d-flex.gap-3 a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 50px !important;
  }
  
  .navbar-brand span {
    font-size: 0.95rem;
  }
  
  body {
    font-size: 15px;
  }
  
  .hero-section {
    padding: 60px 0 50px;
  }
  
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .section-title {
    font-size: 1.65rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
  }
  
  .page-header {
    padding: 60px 0 40px;
  }
  
  .page-title {
    font-size: 1.65rem;
    line-height: 1.3;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .cta-section {
    padding: 50px 0;
  }
  
  .cta-section h2 {
    font-size: 1.65rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .navbar-brand i {
    font-size: 1.3rem;
  }
  
  .practice-area-icon {
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
  }
  
  .practice-area-card h3 {
    font-size: 1.3rem;
  }
  
  .practice-area-card p {
    font-size: 0.92rem;
  }
  
  .feature-box {
    padding: 1.75rem;
  }
  
  .feature-icon {
    font-size: 2.25rem;
  }
  
  .contact-form {
    padding: 1.75rem;
  }
  
  .office-card {
    padding: 1.75rem;
  }
  
  .office-card h4 {
    font-size: 1.15rem;
  }
  
  .office-card a {
    font-size: 1.15rem;
  }
  
  .content-section {
    padding: 40px 0;
  }
  
  .content-section h2 {
    font-size: 1.5rem;
    margin-top: 1.75rem;
  }
  
  .content-section p,
  .content-section ul li {
    font-size: 0.95rem;
  }
  
  .content-section ul li::before {
    width: 24px;
    height: 24px;
    font-size: 1.1rem;
  }
  
  .btn-primary-custom,
  .btn-secondary-custom {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .attorney-image {
    height: 240px;
    font-size: 4rem;
  }
  
  .attorney-info {
    padding: 1.75rem;
  }
  
  .attorney-name {
    font-size: 1.4rem;
  }
  
  .attorney-title {
    font-size: 0.95rem;
  }
  
  footer {
    padding: 3rem 0 1.5rem;
  }
  
  footer h5 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
  }
  
  footer a {
    font-size: 0.9rem;
  }
}
