/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&display=swap');

/* Reset and base styles */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7f9fb;
  color: #22304a;
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(44,58,74,0.06);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: none !important;
}

.navbar {
  background: #fff;
  box-shadow: 0 2px 16px rgba(44,58,74,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: none !important;
  border-top: 0;
  border-radius: 0 0 18px 18px;
  min-height: 64px;
  padding: 0.5rem 2.2rem 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 16px rgba(44,58,74,0.07), 0 4px 0 0 var(--accent);
}
.navbar .logo svg {
  width: 44px;
  height: 44px;
  margin-right: 0.5rem;
}
.navbar .cta-btn {
  margin-left: 1.5rem;
  font-size: 1.08rem;
  padding: 0.7rem 2.1rem;
  border-radius: 999px;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(95,111,255,0.13);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.navbar .cta-btn:hover, .navbar .cta-btn:focus-visible {
  background: linear-gradient(90deg, #7f53ff 0%, #5f6fff 100%);
  box-shadow: 0 4px 24px rgba(95,111,255,0.18);
  transform: translateY(-2px) scale(1.03);
}
.logo img, .logo svg {
  vertical-align: middle;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.7rem;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  text-decoration: none;
  color: #22304a;
  font-weight: 600;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 1.08rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
}
.nav-links li a.active, .nav-links li a:hover, .nav-links li a:focus-visible {
  background: #fffbe6;
  color: #b38a00;
  box-shadow: 0 2px 8px rgba(230,184,0,0.08);
}

main {
  max-width: 950px;
  margin: 2.5rem auto 0 auto;
  padding: 0 1.2rem 2.5rem 1.2rem;
}
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.2rem;
  background: #e0e7ef;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 24px rgba(44,58,74,0.10);
}
.hero-content {
  flex: 1 1 300px;
}
.hero-img {
  max-width: 350px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(44,58,74,0.10);
}
.page-title {
  margin-bottom: 2rem;
}
.page-title h1 {
  margin: 0 0 0.7rem 0;
  font-size: 2.2rem;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  color: #22304a;
  letter-spacing: 0.01em;
}

/* Cards/Blocks */
.rates-table, .info-blocks, .cross-links, .staff-list, .reviews-list, .feedback-form-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(44,58,74,0.07);
  padding: 1.7rem 1.3rem;
  margin-bottom: 2.2rem;
}
.rates-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0.5rem;
}
.rates-table th, .rates-table td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid #e0e7ef;
  text-align: left;
  font-size: 1.08rem;
}
.rates-table th {
  background: #fffbe6;
  font-weight: 700;
  color: #b38a00;
}
.rates-table .note {
  font-size: 1rem;
  color: #6a7a8c;
}

.info-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  margin-bottom: 2.2rem;
}
.info-blocks article {
  flex: 1 1 320px;
  min-width: 260px;
  background: #f7f9fb;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(44,58,74,0.06);
  padding: 1.2rem 1rem 1.2rem 1.2rem;
  margin-bottom: 0;
}

.cross-links {
  font-size: 1.08rem;
  color: #22304a;
  background: #fffbe6;
  border-left: 4px solid #e6b800;
  margin-top: 1.5rem;
  margin-bottom: 2.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(230,184,0,0.06);
}
.cross-links a {
  color: #b38a00;
  text-decoration: underline dotted;
  transition: color 0.2s;
}
.cross-links a:hover, .cross-links a:focus-visible {
  color: #22304a;
  text-decoration: underline solid;
}

/* Staff List */
.staff-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.staff-member {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44,58,74,0.06);
  flex: 1 1 250px;
  padding: 1.2rem 1rem;
  text-align: center;
}
.staff-member svg {
  margin-bottom: 0.5rem;
}
.staff-member h2 {
  margin: 0.5rem 0 0.2rem 0;
  font-size: 1.1rem;
}

/* Reviews List */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.review {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44,58,74,0.06);
  padding: 1rem 1.2rem;
}
.review svg {
  flex-shrink: 0;
}
.review strong {
  font-size: 1.05rem;
}

/* Feedback Form */
.feedback-form-section {
  max-width: 500px;
  margin: 0 auto 2rem auto;
}
.feedback-form label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #bfc9d9;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  background: #f5f7fa;
  transition: border 0.2s;
}
.feedback-form input:focus,
.feedback-form textarea:focus {
  border: 1.5px solid #2d3a4a;
  outline: none;
}
.feedback-form button {
  margin-top: 1rem;
  padding: 0.7rem 2.2rem;
  background: #2d3a4a;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.feedback-form button:hover {
  background: #1a2533;
}
#formMessage {
  margin-top: 1rem;
  font-weight: 500;
  color: #2d3a4a;
}

footer {
  background: #232946;
  color: #f4f6fa;
  text-align: center;
  padding: 3.2rem 1rem 2.2rem 1rem;
  font-size: 1.13rem;
  letter-spacing: 0.01em;
  margin-top: 3.5rem;
  border-top: none;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 16px rgba(44,58,74,0.07);
  position: relative;
}
footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
}
footer .footer-brand svg {
  width: 36px;
  height: 36px;
}
footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
footer .footer-links a {
  color: #bfc9d9;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.2s;
  border-radius: 6px;
  padding: 0.2rem 0.7rem;
}
footer .footer-links a:hover, footer .footer-links a:focus-visible {
  color: #5f6fff;
  background: #fffbe6;
  text-decoration: underline;
}
footer .footer-meta {
  margin-top: 2.2rem;
  font-size: 0.98rem;
  color: #bfc9d9;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .navbar, footer .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  footer .footer-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .navbar {
    padding: 0.5rem 0.7rem 0.5rem 0.7rem;
    min-height: 54px;
  }
  footer {
    padding: 2.2rem 0.5rem 1.2rem 0.5rem;
    font-size: 1.01rem;
    border-radius: 12px 12px 0 0;
  }
  footer .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid #e6b800;
  outline-offset: 2px;
  background: #fffbe6;
}

/* Responsive */
@media (max-width: 900px) {
  .navbar {
    padding: 0.7rem 0.7rem;
  }
  main {
    max-width: 100%;
    padding: 0 0.5rem 2rem 0.5rem;
  }
  .hero {
    padding: 1.2rem 0.5rem;
    gap: 1.2rem;
  }
  .info-blocks {
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .navbar {
    flex-direction: row;
    gap: 0.7rem;
    padding: 0.7rem 0.5rem;
    position: relative;
  }
  .menu-toggle {
    display: block;
    z-index: 30;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 4px 32px rgba(44,58,74,0.18);
    border-radius: 0;
    padding: 2.5rem 0 0 0;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  .navbar.nav-open .nav-links {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links li a {
    display: block;
    width: 100%;
    padding: 1.3rem 2rem;
    font-size: 1.18rem;
    border-radius: 0;
    border-bottom: 1px solid #e0e7ef;
  }
  .nav-links li:last-child a {
    border-bottom: none;
  }
  .nav-links .close-menu {
    display: block;
    position: absolute;
    top: 1.1rem;
    right: 1.3rem;
    font-size: 2.2rem;
    color: #b38a00;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 40;
  }
  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }
  .hero {
    padding: 0.7rem 0.2rem;
    flex-direction: column;
    gap: 1rem;
  }
  .page-title h1 {
    font-size: 1.3rem;
  }
  .office-icon {
    width: 40px !important;
    height: 40px !important;
  }
  .office-desc {
    font-size: 0.98rem;
  }
  .rates-table th, .rates-table td {
    padding: 0.5rem 0.4rem;
    font-size: 0.98rem;
    word-break: break-word;
  }
  .rates-table table, .rates-table thead, .rates-table tbody, .rates-table tr, .rates-table th, .rates-table td {
    display: block;
    width: 100%;
  }
  .rates-table tr {
    margin-bottom: 1rem;
    border-bottom: 1px solid #e0e7ef;
  }
  .rates-table th {
    background: #fffbe6;
    font-weight: 700;
    border-bottom: none;
  }
  .info-blocks article, .staff-member, .reviews-list .review {
    padding: 0.7rem 0.4rem;
  }
  .info-blocks, .staff-list, .reviews-list {
    gap: 0.7rem;
  }
  .feedback-form-section {
    padding: 1rem 0.5rem;
    max-width: 100%;
  }
  .feedback-form input, .feedback-form textarea {
    font-size: 1rem;
  }
}

.office-icon-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.office-icon {
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(44,58,74,0.10);
  border-radius: 8px;
  background: #fff;
}
.office-desc {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3a4a;
  letter-spacing: 0.01em;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.menu-toggle .bar {
  display: block;
  width: 28px;
  height: 3.5px;
  margin: 4px 0;
  background: #22304a;
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
    z-index: 1002;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 80vw;
    max-width: 340px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 4px 32px rgba(44,58,74,0.18);
    border-radius: 0;
    padding: 2.5rem 0 0 0;
    transition: right 0.35s cubic-bezier(.77,0,.18,1);
    overflow-y: auto;
    z-index: 1001;
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  .navbar.nav-open .nav-links {
    right: 0;
    display: flex;
    opacity: 1;
    visibility: visible;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links li a {
    display: block;
    width: 100%;
    padding: 1.3rem 2rem;
    font-size: 1.18rem;
    border-radius: 0;
    border-bottom: 1px solid #e0e7ef;
  }
  .nav-links li:last-child a {
    border-bottom: none;
  }
  .close-mobile-menu {
    width: 100%;
    text-align: right;
    margin-bottom: 1rem;
    padding-right: 1.5rem;
  }
  .close-menu {
    font-size: 2.2rem;
    color: #b38a00;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1003;
    margin-top: 0.5rem;
  }
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(44,58,74,0.18);
    z-index: 1000;
    transition: opacity 0.3s;
    opacity: 0;
  }
  .navbar.nav-open ~ .menu-overlay {
    display: block;
    opacity: 1;
  }
  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }
}
@media (min-width: 901px) {
  .nav-links {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.7rem;
    background: none;
    box-shadow: none;
    height: auto;
    width: auto;
    padding: 0;
    opacity: 1;
    visibility: visible;
    display: flex;
  }
  .close-mobile-menu {
    display: none;
  }
}

/* --- Dropdown for nav-more --- */
.nav-more {
  position: relative;
}
.more-toggle {
  background: none;
  border: none;
  color: #22304a;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  outline: none;
}
.more-toggle:focus, .more-toggle:hover {
  background: #fffbe6;
  color: #b38a00;
}
.more-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(44,58,74,0.10);
  border-radius: 10px;
  padding: 0.5rem 0;
  z-index: 2000;
}
.nav-more:focus-within .more-menu,
.nav-more:hover .more-menu {
  display: block;
}
.more-menu li a {
  display: block;
  width: 100%;
  padding: 0.9rem 1.3rem;
  font-size: 1.05rem;
  color: #22304a;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.more-menu li a:hover, .more-menu li a:focus-visible {
  background: #fffbe6;
  color: #b38a00;
}
@media (max-width: 900px) {
  .nav-more {
    width: 100%;
  }
  .more-toggle {
    width: 100%;
    text-align: left;
    font-size: 1.18rem;
    padding: 1.3rem 2rem;
    border-radius: 0;
    border-bottom: 1px solid #e0e7ef;
  }
  .more-menu {
    display: block;
    position: static;
    min-width: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background: none;
  }
  .more-menu li a {
    padding: 1.1rem 2.5rem;
    font-size: 1.08rem;
    border-radius: 0;
    border-bottom: 1px solid #e0e7ef;
  }
  .more-menu li:last-child a {
    border-bottom: none;
  }
}

/* --- Netlify-inspired redesign --- */
:root {
  --accent: #5f6fff;
  --accent-gradient: linear-gradient(90deg, #5f6fff 0%, #7f53ff 100%);
  --section-bg: #f7f9fb;
  --section-alt-bg: #f0f4fa;
  --card-bg: #fff;
  --card-shadow: 0 4px 24px rgba(44,58,74,0.10);
  --radius: 18px;
  --transition: 0.25s cubic-bezier(.77,0,.18,1);
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--section-bg);
  color: #22304a;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  color: #222b54;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 0.7rem;
}
h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
main {
  max-width: 1100px;
  margin: 2.5rem auto 0 auto;
  padding: 0 1.5rem 3rem 1.5rem;
}
.hero {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 3.5rem 2.5rem 3rem 2.5rem;
  margin-bottom: 2.7rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 180px; height: 180px;
  background: var(--accent-gradient);
  opacity: 0.13;
  border-radius: 50%;
  z-index: 0;
}
.hero-content {
  flex: 1 1 350px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 2.7rem;
  margin-bottom: 0.7rem;
  color: #222b54;
}
.hero .cta-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1.1rem 2.7rem;
  font-size: 1.18rem;
  font-weight: 700;
  border-radius: 999px;
  background: var(--accent-gradient);
  color: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(95,111,255,0.13);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.hero .cta-btn:hover, .hero .cta-btn:focus-visible {
  background: linear-gradient(90deg, #7f53ff 0%, #5f6fff 100%);
  box-shadow: 0 4px 24px rgba(95,111,255,0.18);
  transform: translateY(-2px) scale(1.03);
}
.card, .rates-table, .info-blocks, .cross-links, .staff-list, .reviews-list, .feedback-form-section {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 2.1rem 1.5rem;
  margin-bottom: 2.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .rates-table:hover, .info-blocks article:hover, .staff-member:hover, .review:hover {
  box-shadow: 0 8px 32px rgba(95,111,255,0.13);
  transform: translateY(-2px) scale(1.01);
}
.section-alt {
  background: var(--section-alt-bg);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  margin-bottom: 2.5rem;
}
.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(44,58,74,0.06);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.7rem 2rem 0.7rem 1.5rem;
}
.nav-links li a, .more-toggle {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.nav-links li a.active, .nav-links li a:hover, .nav-links li a:focus-visible, .more-toggle:focus, .more-toggle:hover {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 2px 8px rgba(95,111,255,0.10);
}
.more-menu li a {
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
}
.more-menu li a:hover, .more-menu li a:focus-visible {
  background: var(--accent-gradient);
  color: #fff;
}
button, .btn, .cta-btn {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  background: var(--accent-gradient);
  color: #fff;
  padding: 0.9rem 2.2rem;
  font-size: 1.08rem;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 2px 12px rgba(95,111,255,0.13);
}
button:hover, .btn:hover, .cta-btn:hover, button:focus-visible, .btn:focus-visible, .cta-btn:focus-visible {
  background: linear-gradient(90deg, #7f53ff 0%, #5f6fff 100%);
  box-shadow: 0 4px 24px rgba(95,111,255,0.18);
  transform: translateY(-2px) scale(1.03);
}
.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #222b54;
  letter-spacing: 0.01em;
}
.nav-links, .more-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 900px) {
  .nav-links, .more-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
}
