:root {
  --nav-height: 68px;
}

/* General Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #333333;
  scroll-behavior: smooth;
  padding-top: var(--nav-height);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  min-height: var(--nav-height);
  background: linear-gradient(135deg, #0a1628 0%, #1a2b4a 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
  border-bottom: 2px solid #d4af37;
}

.navbar-inner {
  width: min(100% - 32px, 1180px);
  min-height: var(--nav-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.6), 0 0 14px rgba(255, 255, 255, 0.25);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.08));
  will-change: text-shadow, filter;
  animation: logo-glow 2.6s ease-in-out infinite;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(212, 175, 55, 0.75);
  color: #f4d03f;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-text {
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

@keyframes logo-glow {
  0%, 100% {
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.4), 0 0 10px rgba(255, 255, 255, 0.12);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.06));
  }
  50% {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.85), 0 0 20px rgba(255, 255, 255, 0.25);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.12));
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo {
    animation: none;
  }

  .nav-links,
  .nav-toggle-line {
    transition: none;
  }
}

/* Nav Links */
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(8px, 1.6vw, 22px);
  align-items: center;
  justify-content: flex-end;
}
.nav-links li {
  display: inline-block;
  margin: 0;
}
.nav-links a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 10px 4px 8px;
  border-bottom: 2px solid transparent;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  border-bottom-color: #d4af37;
  color: #d4af37;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(212, 175, 55, 0.7);
  border-radius: 4px;
  background: transparent;
  color: white;
  cursor: pointer;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  color: #f4d03f;
  border-color: #f4d03f;
  outline: none;
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 820px) {
  .navbar-inner {
    position: relative;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px;
    background: #101f38;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-top: 0;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
  }

  .nav-links li:last-child a {
    border-bottom: 0;
  }
}

@media (max-width: 420px) {
  .navbar-inner {
    width: min(100% - 20px, 1180px);
  }

  .logo-text {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
  }
}

/* Anchor offset for fixed navbar */
section {
  scroll-margin-top: calc(var(--nav-height) + 12px);
}

/* Hero */
.hero {
  height: 70vh;
  /* Make hero image a background image with correct path from the CSS file */
  background: url('../images/hero.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  /* space for fixed navbar and some breathing room */
  padding: 24px 16px;
  position: relative;
  overflow: hidden;
}

/* subtle dark overlay so content is readable on top of the image */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-content {
  position: relative; /* stack above the background and overlay */
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 24px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero .tagline {
  font-size: 24px;
  margin-bottom: 12px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 18px;
  margin-bottom: 32px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-highlight {
  font-size: 16px;
  font-weight: 700;
  color: #f4d03f;
  margin-bottom: 4px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
  letter-spacing: 0.5px;
}

.hero-divider-icon {
  margin: 4px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-btn {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #0a1628;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* Practice Areas */
.practice {
  padding: 80px 48px;
  background: white;
  text-align: center;
}
.practice h2 {
  margin-bottom: 32px;
  font-size: 36px;
  color: #1a2b4a;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
  overflow-x: visible;
  padding-bottom: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: #f8f9fa;
  border-left: 6px solid #d4af37;
  padding: 24px;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  position: relative;
}
.card:hover {
  border-left: 8px solid #d4af37;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.12);
  transform: translateY(-6px);
}

.card-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a2b4a;
  line-height: 1.4;
}

.card-info {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

.card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #d4af37;
  stroke: #d4af37;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.15);
}

/* Highlights */
.highlights {
  background: linear-gradient(135deg, #0a1628 0%, #1a2b4a 100%);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 24px;
  padding: 64px 48px;
  border-top: 3px solid #d4af37;
  border-bottom: 3px solid #d4af37;
  align-items: start;
}

.highlights .vision {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  max-width: 700px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  padding-right: 32px;
}

.highlights .highlight {
  grid-column: 2 / 3;
  background: rgba(255,255,255,0.03);
  padding: 24px;
  border-radius: 8px;
}

.highlight h3 {
  color: #f4d03f;
  margin-top: 0;
}



@media (max-width: 900px) {
  .highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 16px;
  }
  .highlights .vision {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    padding-right: 0;
    font-size: 20px;
  }
  .highlights .highlight {
    grid-column: 1 / 2;
    padding: 20px;
  }
}

/* Why Choose Us */
.why-choose-us {
  background: #f8f9fa;
  padding: 80px 48px;
  text-align: center;
}

.why-choose-us h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #1a2b4a;
  margin-bottom: 48px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.reason {
  background: white;
  border: 1px solid #e8d5b7;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.reason:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.reason .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 16px auto;
}

.reason .icon svg {
  width: 48px;
  height: 48px;
  stroke: #d4af37;
  color: #d4af37;
}

.reason h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: #1a2b4a;
  margin-bottom: 16px;
}

.reason p {
  font-size: 16px;
  color: #333333;
}

/* Recognized By Section */
.recognized-by {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 48px;
  text-align: center;
}

.recognized-by h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #1a2b4a;
  margin-bottom: 16px;
}

.recognition-subtitle {
  font-size: 18px;
  color: #555555;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.recognition-item {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-top: 3px solid #d4af37;
}

.recognition-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.recognition-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recognition-logo svg {
  width: 100%;
  height: 100%;
}

.recognition-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a2b4a;
  margin: 16px 0 12px 0;
}

.recognition-item p {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

/* Team Slideshow */
.team-slideshow {
  padding: 80px 48px;
  background: white;
  text-align: center;
}

.team-slideshow h2 {
  font-size: 42px;
  color: #1a2b4a;
  margin-bottom: 48px;
  font-family: 'Playfair Display', serif;
}

.slideshow-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.65);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(10, 22, 40, 0.16);
  overflow: hidden;
}

.slideshow-container img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.team-director-label {
  position: absolute;
  right: 26px;
  bottom: 24px;
  margin: 0;
  padding: 12px 18px;
  color: #ffffff;
  background: rgba(10, 22, 40, 0.88);
  border-right: 4px solid #d4af37;
  border-radius: 4px 0 0 4px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.25);
  animation: team-label-slide-in 0.8s ease-out 0.2s both;
}

@keyframes team-label-slide-in {
  from {
    opacity: 0;
    transform: translateX(36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-director-label {
    animation: none;
  }

  .appointment-btn {
    transition: none;
  }
}



@media (max-width: 900px) {
  .team-slideshow {
    padding: 60px 24px;
  }
  
  .team-slideshow h2 {
    font-size: 32px;
    margin-bottom: 32px;
  }
  
}

@media (max-width: 600px) {
  .team-slideshow {
    padding: 40px 16px;
  }
  
  .team-slideshow h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  
  .slideshow-container {
    padding: 6px;
  }

  .team-director-label {
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 40px);
    padding: 9px 12px;
    font-size: 14px;
  }
}

/* Contact */
.contact {
  display: flex;
  flex-direction: column;
  padding: 64px 48px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  gap: 48px;
  align-items: center;
  justify-content: center;
}

.contact h2 {
  font-size: 42px;
  color: #1a2b4a;
  margin: 0 0 24px 0;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.appointment-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  width: 100%;
  max-width: 1000px;
  padding: 42px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #0a1628 0%, #1a2b4a 100%);
  border: 2px solid #d4af37;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(10, 22, 40, 0.18);
}

.appointment-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -65px;
  top: -95px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(212, 175, 55, 0.06), 0 0 0 56px rgba(212, 175, 55, 0.04);
  pointer-events: none;
}

.appointment-intro,
.appointment-form {
  position: relative;
  z-index: 1;
}

.appointment-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.appointment-eyebrow {
  color: #d4af37;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.appointment-intro h3 {
  margin: 10px 0 14px;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  line-height: 1.15;
}

.appointment-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

.appointment-intro .virtual-appointment-note {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 7px;
  margin-top: 16px;
  padding: 7px 10px;
  color: #f7e5a5;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.virtual-appointment-note svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.appointment-form {
  display: flex;
  flex-direction: column;
}

.appointment-form label {
  margin-bottom: 10px;
  color: #f7e5a5;
  font-size: 14px;
  font-weight: 600;
}

.appointment-form textarea {
  width: 100%;
  min-height: 128px;
  padding: 15px 16px;
  resize: vertical;
  color: #17233a;
  background: #fffdf7;
  border: 2px solid transparent;
  border-radius: 8px;
  font: inherit;
  line-height: 1.55;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.appointment-form textarea::placeholder {
  color: #78808d;
}

.appointment-form textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}

.appointment-form textarea[aria-invalid="true"] {
  border-color: #d96c6c;
}

.appointment-error {
  min-height: 20px;
  margin: 7px 0 5px;
  color: #ffd3d3;
  font-size: 13px;
}

.appointment-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  color: #0a1628;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  border: 2px solid #d4af37;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.appointment-btn svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.appointment-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f4d03f 0%, #ffd75e 100%);
  box-shadow: 0 9px 24px rgba(212, 175, 55, 0.38);
}

.appointment-btn:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.appointment-btn:active {
  transform: translateY(0);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 24px;
}

.contact-card {
  background: white;
  border: 2px solid #d4af37;
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
  border-color: #f4d03f;
}

.contact-card:hover::before {
  left: 100%;
}

.card-icon-contact {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
  color: #d4af37;
}

.card-icon-contact svg {
  width: 48px;
  height: 48px;
  stroke: #d4af37;
  color: #d4af37;
}

.contact-card:hover .card-icon-contact {
  transform: scale(1.2) rotate(5deg);
}

.contact-card h3 {
  font-size: 22px;
  color: #1a2b4a;
  margin: 0 0 16px 0;
  font-weight: 600;
}

.contact-card p {
  font-size: 16px;
  color: #555555;
  margin: 8px 0;
  line-height: 1.6;
}

.contact-link {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #d4af37;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #f4d03f;
  border-bottom-color: #f4d03f;
}

.map {
  flex: 1;
  min-width: 0;
  order: 2;
  width: 100%;
  max-width: 600px;
  min-height: 300px;
}
.map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 8px;
  border: 0;
}

.emergency-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #0a1628;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  border: 2px solid #d4af37;
}
.emergency-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #f4d03f 0%, #ffd700 100%);
  color: #0a1628;
}

.emergency-card {
  background: linear-gradient(135deg, #0a1628 0%, #1a2b4a 100%);
  border: 2px solid #d4af37;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  max-width: 600px;
  margin-top: 24px;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.emergency-card h3 {
  font-size: 28px;
  color: #f4d03f;
  margin: 0 0 16px 0;
  font-weight: 700;
}

.emergency-card p {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.emergency-card .emergency-btn {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .contact {
    flex-direction: column;
    padding: 32px 16px;
  }

  .appointment-card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 32px;
  }

  .map iframe {
    min-height: 260px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-card {
    padding: 32px 20px;
  }
  
  .card-icon-contact {
    font-size: 40px;
    margin-bottom: 16px;
  }
  
  .contact-card h3 {
    font-size: 20px;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0a1628 0%, #1a2b4a 100%);
  color: white;
  text-align: center;
  padding: 48px;
}
.footer hr {
  border: 2px solid #d4af37;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #0a1628;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  font-size: 20px;
  font-weight: bold;
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.7);
}
/* Divider between hero and are of practise  */
.divider {
  height: 6px;
  background: linear-gradient(90deg, #1a2b4a 0%, #d4af37 50%, #1a2b4a 100%);
  border-top: 1px solid #1a2b4a;
  border-bottom: 1px solid #1a2b4a;
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3);
}

/* Responsive adjustments for the hero area */
@media (max-width: 900px) {
  .hero { height: 55vh; padding: 16px 12px; }
  .hero h1 { font-size: 32px; }
  .hero .tagline { font-size: 18px; }
  .hero p { font-size: 14px; margin-bottom: 18px; }
  .hero-highlight { font-size: 14px; margin-bottom: 10px; }
  .hero-divider-icon { margin: 6px 0; }
  .hero-divider-icon svg { width: 24px; height: 24px; }
  
  .practice {
    padding: 60px 24px;
  }
  
  .practice h2 {
    font-size: 28px;
  }
  
  .practice-grid {
    gap: 24px;
    padding: 0 8px;
  }
  
  .card {
    padding: 20px;
    gap: 14px;
  }
  
  .card-content {
    gap: 16px;
  }
  
  .card-icon {
    width: 40px;
    height: 40px;
  }
  
  .card-title {
    font-size: 16px;
  }
  
  .card-info {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .practice {
    padding: 40px 16px;
  }
  
  .practice h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  
  .practice-grid {
    gap: 16px;
    max-width: 100%;
  }
  
  .card {
    padding: 16px;
    gap: 12px;
  }
  
  .card-content {
    gap: 12px;
  }
  
  .card-icon {
    width: 36px;
    height: 36px;
  }
  
  .card-title {
    font-size: 15px;
  }
  
  .card-info {
    font-size: 12px;
  }
  
  .why-choose-us {
    padding: 40px 16px;
  }
  
  .why-choose-us h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }
  
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .reason {
    padding: 24px;
  }
  
  .recognized-by {
    padding: 60px 16px;
  }
  
  .recognized-by h2 {
    font-size: 32px;
    margin-bottom: 12px;
  }
  
  .recognition-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
  
  .recognition-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
  }
  
  .recognition-item {
    padding: 24px 16px;
  }
  
  .recognition-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }
  
  .recognition-item h3 {
    font-size: 16px;
    margin: 12px 0 8px 0;
  }
  
  .recognition-item p {
    font-size: 12px;
  }

  .contact {
    padding: 40px 16px;
    gap: 32px;
  }
  
  .contact h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .appointment-card {
    padding: 28px 22px;
  }

  .appointment-intro h3 {
    font-size: 27px;
  }
  
  .contact-container {
    gap: 16px;
  }
  
  .contact-card {
    padding: 24px 16px;
  }
  
  .card-icon-contact {
    font-size: 36px;
    margin-bottom: 12px;
  }
  
  .contact-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .contact-card p {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .hero { height: 50vh; }
  .hero h1 { font-size: 26px; }
  .hero .tagline { font-size: 16px; }
  .hero p { font-size: 12px; margin-bottom: 12px; }
  .hero-highlight { font-size: 12px; margin-bottom: 8px; }
  .hero-divider-icon { margin: 4px 0; }
  .hero-divider-icon svg { width: 20px; height: 20px; }
  .hero .cta-btn { padding: 10px 18px; }
  
  .practice h2 {
    font-size: 20px;
  }
  
  .card-title {
    font-size: 14px;
  }
  
  .card-info {
    font-size: 11px;
  }
  
  #backToTop {
    width: 48px;
    height: 48px;
    bottom: 24px;
    right: 24px;
    font-size: 18px;
  }
  
  .contact {
    padding: 24px 12px;
    gap: 24px;
  }
  
  .contact h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .appointment-card {
    gap: 22px;
    padding: 24px 18px;
    border-radius: 12px;
  }

  .appointment-intro h3 {
    font-size: 24px;
  }

  .appointment-intro p {
    font-size: 14px;
  }

  .appointment-form textarea {
    min-height: 118px;
  }

  .appointment-btn {
    padding: 13px 14px;
    font-size: 14px;
  }
  
  .contact-container {
    gap: 12px;
  }
  
  .contact-card {
    padding: 20px 12px;
    border-width: 1.5px;
  }
  
  .card-icon-contact {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .contact-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .contact-card p {
    font-size: 13px;
  }
  
  .emergency-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}
