:root {
  --white: #ffffff;
  --navy: #0f2f4a;
  --navy-dark: #09243a;
  --orange: #f19e3b;
  --gray: #a7a8a7;
  --text-body: #34495e;
  --text-muted: #64748b;
  --orange-hover: #d8872a;
  --bg-soft: rgba(167, 168, 167, 0.15);
  --bg-card: rgba(167, 168, 167, 0.1);
  --border-soft: rgba(20, 46, 73, 0.14);
  --shadow-soft: 0 10px 30px rgba(20, 46, 73, 0.08);
  --space-section-y: 4.25rem;
  --space-section-x: 1.25rem;
  --space-grid: 1.6rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--white);
  text-rendering: optimizeLegibility;
}

a {
  color: var(--navy);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.08em;
}

a:hover,
a:focus-visible {
  color: var(--orange);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.85rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3.8vw, 2.3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

p,
li,
dd {
  margin: 0 0 1rem;
  font-size: 1.05em;
}

p {
  text-align: left;
}

.section {
  padding: var(--space-section-y) var(--space-section-x);
}

.section:nth-of-type(even) {
  background: var(--bg-soft);
}

.section-inner {
  width: 100%;
  max-width: min(96vw, 1500px);
  margin: 0 auto;
}

.section-header {
  max-width: 900px;
  margin: 0 auto 2rem auto;
  text-align: center;
}

.section-header .section-intro {
  text-align: center;
}

.section-header h1,
.section-header h2 {
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  padding: 6rem 1.25rem 5rem;
  background: linear-gradient(180deg, rgba(20, 46, 73, 0.96), rgba(20, 46, 73, 0.9));
  color: var(--white);
}



.shared-static-hero {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(9, 36, 58, 0.38) 0%, rgba(9, 36, 58, 0.46) 100%),
    url("../images/hero/business-accounting-consultation.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Shared static hero system for Services, Articles, FAQ, and Contact. */
.page-hero.shared-static-hero,
.services-hero.shared-static-hero,
.blog-hero.shared-static-hero,
.faq-hero.shared-static-hero,
.contact-hero.shared-static-hero {
  min-height: clamp(500px, 38vw, 600px);
  padding: clamp(6rem, 8vw, 8.5rem) 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-hero.shared-static-hero .page-hero-inner,
.blog-hero.shared-static-hero .blog-hero-container,
.faq-hero.shared-static-hero .page-hero-inner,
.contact-hero.shared-static-hero .page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-hero.shared-static-hero h1,
.services-hero.shared-static-hero h1,
.blog-hero.shared-static-hero h1,
.faq-hero.shared-static-hero h1,
.contact-hero.shared-static-hero h1 {
  font-size: clamp(2.75rem, 4.5vw, 4.15rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 980px;
  margin: 0 auto 1.4rem;
  color: #ffffff;
}

.page-hero.shared-static-hero .section-intro,
.services-hero.shared-static-hero .section-intro,
.blog-hero.shared-static-hero .blog-hero-intro,
.faq-hero.shared-static-hero .section-intro,
.contact-hero.shared-static-hero .section-intro {
  font-size: clamp(1.08rem, 1.3vw, 1.25rem);
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
}

.page-hero.shared-static-hero .page-actions,
.page-hero.shared-static-hero .hero-actions,
.services-hero.shared-static-hero .hero-actions,
.blog-hero.shared-static-hero .blog-hero-actions,
.faq-hero.shared-static-hero .page-actions,
.contact-hero.shared-static-hero .page-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.page-hero h1,
.page-hero h2,
.page-hero h3,
.page-hero p,
.page-hero a {
  color: var(--white);
}

.content-grid,
.service-grid,
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-grid);
}

.content-grid article,
.service-card,
.trust-grid article,
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 0.5rem;
  padding: 1.8rem;
  box-shadow: 0 12px 30px rgba(20, 46, 73, 0.1);
}

.service-card {
  border-top: 4px solid var(--orange);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-list,
.faq-list {
  margin: 0;
  padding: 0;
}

.process-list {
  padding-left: 1.25rem;
}

.process-list li {
  padding-left: 0.25rem;
}

.faq-list dt {
  font-family: inherit;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  padding: 1rem 1rem 0;
  border: 1px solid var(--border-soft);
  border-bottom: 0;
  background: var(--white);
  border-radius: 0.75rem 0.75rem 0 0;
}

.faq-list dd {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem 1rem;
  border: 1px solid var(--border-soft);
  border-top: 0;
  border-radius: 0 0 0.75rem 0.75rem;
  background: var(--white);
}

/* ==========================================
   GLOBAL CTA & BUTTON STYLES (Gemini Style)
   ========================================== */

.credential-strip {
  background-color: #f4f6f9;
  border-top: 1px solid rgba(20, 46, 73, 0.08);
  padding: 4rem 1.25rem;
}

.credential-strip-inner {
  text-align: center;
}

.credential-strip h2 {
  color: var(--navy);
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.credential-strip p {
  margin: 0 auto 2rem;
  max-width: 68ch;
  color: var(--text-soft);
  line-height: 1.7;
}

.credential-badge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.credential-badge-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(20, 46, 73, 0.08);
  border-radius: 0.75rem;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: none;
  min-height: 208px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.credential-badge-media {
  height: 104px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.credential-badge-card img {
  width: auto;
  height: auto;
  max-width: 210px;
  max-height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.credential-badge-card h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.3;
  text-align: center;
}

.final-cta {
  padding: 80px 1.25rem; /* Mobile default */
  background-color: var(--navy);
  text-align: center;
}

.final-cta h2 {
  font-size: 2.4rem; /* Mobile default */
  margin-bottom: 1.25rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.final-cta p {
  font-size: 1.1rem; /* Mobile default */
  margin-bottom: 3.5rem;
  opacity: 0.9;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column; /* Stacked on mobile */
  width: 100%;
  gap: 1rem;
}

/* Global Reusable Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px; 
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  width: 100%; /* Full width on mobile */
  text-align: center;
}

.btn-primary {
  background-color: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(241, 158, 59, 0.2); 
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--orange-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(241, 158, 59, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: var(--navy);
  color: var(--white);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.15rem;
}

/* CTA Specific Button Override */
.final-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.final-cta .btn-secondary:hover,
.final-cta .btn-secondary:focus-visible {
  background-color: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  border-color: var(--white);
}

/* ==========================================
   UTILITIES
   ========================================== */

.image-placeholder {
  width: 100%;
  min-height: 12rem;
  border: 1px dashed rgba(20, 46, 73, 0.3);
  border-radius: 0.45rem;
  background: linear-gradient(180deg, rgba(167, 168, 167, 0.18), rgba(167, 168, 167, 0.08));
}

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

/* ==========================================
   TABLET & UP
   ========================================== */
@media (min-width: 48rem) {
  .section {
    padding: 4.75rem 1.75rem;
  }

  .content-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
  }

  /* Tablet CTA Adjustments */
  .final-cta {
    padding: 100px 1.75rem;
  }

  .final-cta h2 {
    font-size: 3.2rem;
  }

  .final-cta p {
    font-size: 1.35rem;
  }

  .credential-strip {
    padding: 4.75rem 1.75rem;
  }

  .credential-badge-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .credential-badge-card {
    padding: 1.75rem 1.5rem 1.5rem;
  }

  .cta-buttons {
    flex-direction: row; /* Inline on tablet/desktop */
    justify-content: center;
    width: auto;
    gap: 1.5rem;
  }

  .btn {
    width: auto; /* Fit content on tablet/desktop */
  }
}

/* ==========================================
   DESKTOP & UP
   ========================================== */
@media (min-width: 70rem) {
  .content-grid,
  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.9rem;
  }

  .content-grid article,
  .service-card,
  .trust-grid article {
    padding: 2rem;
  }

  /* Desktop CTA Adjustments */
  .final-cta {
    padding: 140px 0;
  }
}

/* ==========================================
   NAVIGATION
   ========================================== */
.site-nav {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(20, 46, 73, 0.1);
  box-shadow: 0 10px 22px rgba(20, 46, 73, 0.1);
}

.nav-inner {
  width: 100%;
  max-width: min(96vw, 1500px);
  margin: 0 auto;
  padding: 0.7rem 1.15rem;
  min-height: clamp(105px, 8vw, 145px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}

.brand-logo {
  display: block;
  width: clamp(320px, 22vw, 460px);
  max-width: 100%;
  max-height: 118px;
  height: auto;
}

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

.menu-toggle {
  border: 1px solid rgba(20, 46, 73, 0.22);
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  border-radius: 7px;
  font-weight: 600;
  padding: 0.62rem 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  content: "";
  display: block;
  width: 1rem;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.menu-toggle-bars::before {
  transform: translateY(-5px);
}

.menu-toggle-bars::after {
  transform: translateY(3px);
}

.nav-panel {
  display: none;
  width: 100%;
  padding: 0.4rem 0 0.3rem;
}

.nav-panel.is-open {
  display: block;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-links li {
  margin: 0;
}

.nav-links a,
.services-toggle {
  width: 100%;
  text-align: left;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.01rem;
  line-height: 1.25;
  padding: 0.68rem 0.65rem;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active,
.services-toggle:hover,
.services-toggle:focus-visible {
  background: rgba(241, 158, 59, 0.14);
  border-color: rgba(241, 158, 59, 0.32);
  color: var(--navy);
}

.services-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}

.services-caret {
  font-size: 1rem;
  transition: transform 140ms ease;
}

.nav-item-services.is-open .services-caret {
  transform: rotate(180deg);
}

.services-mega-menu {
  display: grid;
  margin-top: 0.35rem;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-top: 2px solid var(--orange);
  border-radius: 10px;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  max-height: 0;
  overflow: hidden auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.45rem);
  pointer-events: none;
  transition: opacity 150ms ease, transform 160ms ease, max-height 200ms ease;
}

.nav-item-services.is-open .services-mega-menu {
  max-height: 34rem;
  padding: 0.9rem;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.service-link {
  display: flex;
  align-items: flex-start;
  gap: 0.78rem;
  padding: 0.85rem 0.9rem;
  border-radius: 8px;
  color: var(--navy);
  border: 1px solid rgba(20, 46, 73, 0.08);
  background: rgba(255, 255, 255, 0.84);
  transition: background-color 170ms ease, box-shadow 170ms ease, border-color 170ms ease, transform 170ms ease;
}

.service-link:hover,
.service-link:focus-visible {
  background: linear-gradient(180deg, rgba(241, 158, 59, 0.1), rgba(59, 130, 246, 0.06));
  border-color: rgba(241, 158, 59, 0.45);
  box-shadow: 0 10px 18px rgba(20, 46, 73, 0.11);
  transform: translateY(-1px);
}

.service-link svg {
  width: 1.12rem;
  height: 1.12rem;
  flex: 0 0 auto;
  color: #f19e3b;
  margin-top: 0.12rem;
  filter: drop-shadow(0 0 2px rgba(241, 158, 59, 0.3));
}

.service-text {
  display: grid;
  gap: 0.24rem;
  line-height: 1.25;
}

.service-text strong {
  font-size: 0.93rem;
  color: #132c46;
}

.service-text small {
  color: #4f5d6d;
  font-size: 0.83rem;
  line-height: 1.35;
}

.nav-phone,
.footer-phone {
  justify-content: center;
  align-items: center;
  background: var(--orange);
  color: var(--white);
  border: 2px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 4px 10px rgba(241, 158, 59, 0.22);
  transition: all 0.3s ease;
  white-space: nowrap;
  opacity: 1;
  filter: none;
}

.nav-phone {
  display: none;
  margin-top: 0.7rem;
  font-size: 1rem;
  width: 100%;
  min-height: 2.9rem;
  padding: 0.72rem 1.05rem;
}

.nav-panel.is-open + .nav-phone {
  display: inline-flex;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  margin-top: 2rem;
  background: var(--navy);
  color: var(--white);
  border-top: 1px solid rgba(241, 158, 59, 0.5);
  box-shadow: inset 0 4px 0 rgba(241, 158, 59, 0.85);
}

.footer-inner {
  width: 100%;
  max-width: min(96vw, 1500px);
  margin: 0 auto;
  padding: 2.7rem 1rem 2.3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.9rem;
}

.footer-column h2,
.footer-column h3 {
  color: var(--white);
  margin-bottom: 0.8rem;
}

.footer-column h2 {
  font-size: 1.35rem;
}

.footer-column h3 {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.footer-column p {
  margin: 0.82rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
}

.footer-phone {
  display: inline-flex;
  min-height: 2.85rem;
  padding: 0.62rem 1rem;
  font-size: 1rem;
}

.nav-phone:hover,
.nav-phone:focus-visible,
.footer-phone:hover,
.footer-phone:focus-visible {
  background-color: #d8872a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(59, 130, 246, 0.22);
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.58rem;
}

.footer-column li {
  margin: 0;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 170ms ease, transform 170ms ease;
  display: inline-flex;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--orange);
  transform: translateX(2px);
}

.site-footer .footer-phone,
.site-footer .footer-phone:hover,
.site-footer .footer-phone:focus-visible {
  color: var(--white);
  opacity: 1;
}

.site-footer .footer-phone:hover,
.site-footer .footer-phone:focus-visible {
  transform: translateY(-2px);
}

.footer-legal {
  width: 100%;
  max-width: min(96vw, 1500px);
  margin: 0 auto;
  padding: 0 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  transition: color 170ms ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--orange);
}

/* ==========================================
   NAVIGATION MEDIA QUERIES
   ========================================== */
@media (min-width: 48rem) {
  .nav-inner {
    padding: 1.08rem 1.5rem;
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .brand-logo {
    width: clamp(320px, 22vw, 460px);
    max-height: 118px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-panel {
    display: flex;
    width: auto;
    padding: 0;
    margin-left: auto;
    align-items: center;
    gap: 0.62rem;
  }

  .nav-links {
    flex-direction: row;
    align-items: center;
    gap: 0.2rem;
  }

  .nav-links a,
  .services-toggle {
    width: auto;
    font-size: 1.06rem;
    padding: 0.74rem 0.62rem;
    min-height: 2.8rem;
    display: inline-flex;
    align-items: center;
  }

  .nav-item-services {
    position: relative;
    display: flex;
    align-items: center;
  }

  .nav-item-services > a {
    padding-right: 0.06rem;
  }

  .nav-item-services .services-toggle {
    padding-left: 0.02rem;
    padding-right: 0.3rem;
  }

  .services-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 29rem;
    max-width: 35rem;
    z-index: 1200;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-top: 3px solid var(--orange);
    box-shadow: 0 18px 30px rgba(20, 46, 73, 0.2);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    max-height: 0;
    overflow: hidden auto;
    margin-top: 0.2rem;
  }

  .nav-item-services::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 0.95rem;
  }

  .nav-item-services:hover .services-mega-menu,
  .nav-item-services:focus-within .services-mega-menu,
  .nav-item-services.is-open .services-mega-menu {
    max-height: min(70vh, 36rem);
    padding: 1rem;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .service-link {
    color: var(--navy);
    border-radius: 8px;
    padding: 0.95rem;
  }

  .service-link:hover,
  .service-link:focus-visible {
    background: linear-gradient(180deg, rgba(241, 158, 59, 0.1), rgba(59, 130, 246, 0.05));
  }

  .service-text strong {
    color: var(--navy);
  }

  .service-text small {
    color: #6f7a86;
  }

  .nav-phone {
    display: inline-flex;
    width: auto;
    margin-top: 0;
    min-height: 2.95rem;
    white-space: nowrap;
    padding: 0.76rem 1.14rem;
    border-radius: 6px;
    font-size: 1rem;
    letter-spacing: 0.01em;
  }

  .footer-inner {
    padding: 3rem 1.5rem 2.6rem;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 2.2rem;
  }
}

@media (min-width: 70rem) {
  .brand-logo {
    width: clamp(320px, 22vw, 460px);
    max-height: 118px;
  }

  .nav-inner {
    padding-top: 1.18rem;
    padding-bottom: 1.18rem;
  }

  .nav-links a,
  .services-toggle {
    font-size: 1.06rem;
    padding: 0.74rem 0.68rem;
  }

  .nav-phone {
    padding: 0.8rem 1.2rem;
    min-height: 3rem;
  }
}

/* ==========================================
   FLOATING GOOGLE REVIEW BUTTON
   Fixed to viewport, rendered site-wide from footer.html
   (outside the footer element). Sits below the sticky nav
   (z-index 1000) and its dropdown (1200) so it never covers them.
   ========================================== */
.google-review-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 12px 18px;
  background-color: #1a73e8;
  color: #ffffff;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(20, 46, 73, 0.22);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.google-review-fab:hover,
.google-review-fab:focus-visible {
  background-color: #1765cc;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(20, 46, 73, 0.28);
  transform: translateY(-1px);
}

.google-review-fab-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #1a73e8;
  font-weight: 700;
  font-size: 0.95rem;
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .google-review-fab {
    right: 16px;
    bottom: 16px;
    padding: 10px 15px;
    font-size: 0.85rem;
  }

  .google-review-fab-g {
    width: 20px;
    height: 20px;
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .google-review-fab {
    transition: none;
  }
  .google-review-fab:hover,
  .google-review-fab:focus-visible {
    transform: none;
  }
}
