body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  line-height: 1.18;
}
h1 {
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}
h2 {
  font-size: clamp(1.85rem, 3.6vw, 3rem);
}
h3 {
  font-size: 1.2rem;
}
p + p {
  margin-top: 1rem;
}
.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}
.narrow {
  max-width: 850px;
}
.centered {
  text-align: center;
  margin-inline: auto;
}
.section {
  padding: 6rem 0;
}
.section-soft {
  background: var(--gray-50);
}
.section-navy {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}
.section-navy h2,
.section-navy p {
  color: var(--white);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}
.section-heading.centered {
  margin-inline: auto;
}
.section-heading p {
  margin-top: 1rem;
}
.section-copy p {
  margin-top: 1.25rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  color: var(--blue-700);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow.light {
  color: var(--gold-400);
}
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}
.centered-buttons {
  justify-content: center;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 10000;
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 0.75rem 1rem;
  border-radius: 0.4rem;
  font-weight: 700;
}
.skip-link:focus {
  top: 1rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(51, 51, 51, 0.08);
  backdrop-filter: blur(12px);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand img {
  width: 250px;
  height: auto;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-link {
  display: block;
  padding: 0.75rem 0.85rem;
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.94rem;
  border-radius: 0.45rem;
}
.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--blue-700);
  background: var(--blue-100);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 0.5rem;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy-900);
  margin: 5px 0;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  position: relative;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(36, 36, 36, 0.96), rgba(51, 51, 51, 0.82)),
    url("../images/hero-background.svg") center/cover;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 4rem;
  align-items: center;
  padding-block: 6rem;
}
.hero h1,
.hero h2,
.hero p {
  color: var(--white);
}
.hero-content > p {
  max-width: 760px;
  margin-top: 1.5rem;
  font-size: 1.12rem;
  color: #f1f1f1;
}
.hero-trust-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}
.hero-trust-card h2 {
  font-size: 1.45rem;
  margin-bottom: 1.3rem;
}
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.align-center {
  align-items: center;
}
.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.image-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.feature-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}
.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.feature-list i {
  color: var(--success);
  margin-top: 0.25rem;
}
.value-panel {
  display: grid;
  place-items: center;
  text-align: center;
  align-content: center;
  min-height: 420px;
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--navy-900), var(--blue-700));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.value-panel i {
  font-size: 4rem;
  color: var(--gold-400);
  margin-bottom: 1.5rem;
}
.value-panel h3 {
  font-size: 1.8rem;
  color: var(--white);
}
.value-panel p {
  color: #f4f4f4;
  margin-top: 1rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  text-align: center;
}
.stat-item strong {
  display: block;
  color: var(--gold-400);
  font-family: var(--font-heading);
  font-size: 2.8rem;
}
.stat-item span {
  display: block;
  color: #f7f7f7;
  margin-top: 0.5rem;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.industry-grid span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.industry-grid i {
  color: var(--blue-700);
}
.page-banner {
  padding: 6rem 0;
  background: linear-gradient(125deg, var(--navy-950), var(--blue-700));
  color: var(--white);
}
.page-banner h1,
.page-banner p {
  color: var(--white);
}
.page-banner h1 {
  max-width: 900px;
}
.page-banner p {
  max-width: 780px;
  margin-top: 1.25rem;
  color: #eeeeee;
  font-size: 1.08rem;
}
.two-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.five-columns {
  grid-template-columns: repeat(5, 1fr) !important;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}
.service-detail-heading p {
  margin: 1.2rem 0;
}
.service-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 2rem;
  margin-bottom: 1.25rem;
}
.service-anchor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-anchor-grid a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--navy-900);
  background: var(--white);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.service-anchor-grid a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.service-anchor-grid i {
  color: var(--blue-700);
}
.featured-event {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.featured-event img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.featured-event > div {
  padding: 3rem;
  align-self: center;
}
.featured-event h2 {
  margin: 0.8rem 0;
}
.event-badge {
  display: inline-block;
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.event-meta {
  color: var(--blue-700);
  font-weight: 600;
}
.video-placeholder-grid {
    display: grid;
    grid-template-columns: minmax(0, 600px);
    justify-content: center;
    gap: 2rem;
}
.video-placeholder {
  padding: 3rem;
  text-align: center;
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--gray-50);
}
.video-placeholder i {
  font-size: 3.5rem;
  color: var(--blue-700);
  margin-bottom: 1rem;
}
.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.contact-card {
  padding: 2rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.contact-card > i {
  font-size: 2rem;
  color: var(--blue-700);
  margin-bottom: 1rem;
}
.contact-card h2 {
  font-size: 1.08rem;
}
.contact-card p {
  margin-top: 0.65rem;
}
.contact-card a {
  color: var(--blue-700);
  font-weight: 700;
}
.inquiry-cta {
  padding: 4rem 0;
}
.inquiry-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.inquiry-cta-inner > div:first-child {
  max-width: 720px;
}
.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.65fr);
  gap: 3rem;
  align-items: start;
}
.inquiry-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}
.direct-email-card,
.mobile-contact-card,
.office-map,
.map-placeholder {
  width: 100%;
  min-width: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.direct-email-card,
.mobile-contact-card {
  padding: 1.25rem;
}

.direct-email-card h2,
.mobile-contact-card h2 {
  font-size: 1.18rem;
  line-height: 1.22;
}

.direct-email-card p,
.mobile-contact-card p {
  font-size: 0.8rem;
  line-height: 1.5;
}

.direct-email-card > i,
.map-placeholder > i {
  font-size: 1.45rem;
  color: var(--blue-700);
  margin-bottom: 0.55rem;
}
.direct-email-card .btn {
  width: 100%;
  min-height: 38px;
  margin-top: 0.8rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.76rem;
}
.email-display {
  font-size: 0.74rem;
  margin-top: 0.65rem;
}
.email-display a,
.mobile-contact-card a {
  color: var(--blue-700);
  font-weight: 700;
}
.mobile-contact-card p {
  margin-top: 0.5rem;
}
.map-placeholder {
  text-align: center;
  background: var(--gray-50);
  border-style: dashed;
}
.privacy-notice {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: #fff8d8;
  border: 1px solid #e5c74e;
}
.privacy-notice > i {
  font-size: 2rem;
  color: #665000;
  margin-top: 0.2rem;
}
.privacy-notice h3 {
  margin-bottom: 0.4rem;
}
.privacy-notice p {
  font-size: 0.9rem;
}
.faq-list {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  gap: 1rem;
}
.faq-list details {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 1.2rem 1.4rem;
}
.faq-list summary {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy-900);
  cursor: pointer;
}
.faq-list p {
  margin-top: 0.9rem;
}
.thank-you-main {
  min-height: 70vh;
  background: var(--gray-50);
}
.thank-you-section {
  padding: 7rem 0;
}
.thank-you-card {
  max-width: 850px;
  margin: auto;
  text-align: center;
  padding: 4rem 3rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.success-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  background: #e7f8ef;
  color: var(--success);
  font-size: 2.5rem;
}
.thank-you-card > p {
  margin-top: 1.3rem;
}
.small-note {
  font-size: 0.82rem;
  color: var(--gray-600);
}
.site-footer {
  background: var(--navy-950);
  color: #d8e3ed;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.95fr 1fr;
  gap: 3rem;
  padding: 4.5rem 0;
}
.footer-about img {
  background: #fff;
  border-radius: 0.7rem;
  margin-bottom: 1.2rem;
}
.footer-tagline {
  color: var(--gold-400);
  font-weight: 700;
  margin-top: 1rem;
}
.footer-title {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer-links,
.footer-contact {
  display: grid;
  gap: 0.65rem;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-400);
}
.footer-contact li {
  display: flex;
  gap: 0.65rem;
}
.footer-contact i {
  color: var(--gold-400);
  margin-top: 0.35rem;
}


.contact-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-address i {
  margin-top: 5px;
  flex-shrink: 0;
}

.contact-address span {
  line-height: 1.6;
  white-space: nowrap;
}


.social-links {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}
.footer-bottom-inner > div {
  display: flex;
  gap: 1rem;
}
.floating-inquiry {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-weight: 800;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.floating-inquiry:hover {
  transform: translateY(-3px);
}
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 5.5rem;
  z-index: 850;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
code {
  padding: 0.15rem 0.35rem;
  border-radius: 0.3rem;
  background: var(--gray-100);
  color: var(--navy-900);
}
:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

.image-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.website-video-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
}

.website-video-wrapper video {
  display: block;
  width: 100%;
  height: 450px;
}

/* Office Map */
.office-map {
  overflow: hidden;
}

.office-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.office-map-details {
  padding: 1.2rem;
  text-align: left;
}

.office-map-details h2 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.55rem;
  color: #1f2937;
  font-size: 1.05rem;
  line-height: 1.25;
}

.office-map-details h2 i {
  flex-shrink: 0;
  color: #c1121f;
}

.office-map-details p {
  margin: 0 0 0.8rem;
  color: #4b5563;
  font-size: 0.78rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.office-map-details .office-name {
  margin-bottom: 0.25rem;
  color: #1f2937;
  font-size: 0.82rem;
  font-weight: 800;
}

.map-direction-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 38px;
  padding: 0.55rem 0.85rem;
  color: #ffffff;
  background: #c1121f;
  border-radius: 7px;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.map-direction-btn:hover {
  background: #991b1b;
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .direct-email-card,
  .mobile-contact-card,
  .office-map-details {
    padding: 1rem;
  }

  .direct-email-card h2,
  .mobile-contact-card h2 {
    font-size: 1.08rem;
  }

  .office-map iframe {
    height: 185px;
  }

  .map-direction-btn {
    width: 100%;
  }
}