:root {
    --bs-primary: #124160;
    --bs-primary-rgb: 18, 65, 96;
    --bs-secondary: #cc7f24;
    --bs-secondary-rgb: 204, 127, 36;
    --brand-navy: #124160;
    --brand-navy-2: #0b2235;
    --brand-orange: #cc7f24;
    --brand-orange-soft: #e7ae67;
    --ink: #163046;
    --ink-soft: #4f6577;
    --surface: #f5f7fa;
    --surface-2: #edf2f6;
    --white: #ffffff;
    --border: rgba(18, 65, 96, 0.12);
    --shadow-soft: 0 22px 50px rgba(11, 34, 53, 0.10);
    --shadow-card: 0 16px 40px rgba(18, 65, 96, 0.10);
    --radius-lg: 1.5rem;
    --radius-md: 1rem;
    --radius-sm: 0.75rem;
}

html {
    scroll-behavior: smooth;
}

body.site-body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
}

a {
    color: var(--brand-navy);
    text-decoration: none;
}

a:hover {
    color: var(--brand-orange);
}

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--brand-navy);
    color: #fff;
    padding: 0.75rem 1rem;
    z-index: 10000;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

h1, h2, h3, h4, h5 {
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--ink);
}

.lead,
.hero-lead,
.section-lead {
    color: var(--ink-soft);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(204, 127, 36, 0.12);
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.75rem;
}

.section-padding {
    padding: 4.75rem 0;
}

.section-padding-sm {
    padding: 3rem 0;
}

.section-alt {
    background: var(--surface);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
}

.section-lead {
    max-width: 52rem;
    font-size: 1.06rem;
}

.btn {
    border-radius: 999px;
    font-weight: 600;
    padding: 0.8rem 1.15rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-navy), #1b5d89);
    border-color: var(--brand-navy);
    box-shadow: 0 12px 24px rgba(18, 65, 96, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #103753, #164b70);
    border-color: #103753;
}

.btn-outline-primary {
    color: var(--brand-navy);
    border-color: rgba(18, 65, 96, 0.25);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: rgba(18, 65, 96, 0.06);
    color: var(--brand-navy);
    border-color: rgba(18, 65, 96, 0.35);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    color: var(--brand-navy);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.topbar {
    background: linear-gradient(90deg, #0b2235 0%, #124160 100%);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.7rem 0;
}

.topbar-inner p {
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.topbar-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.25rem;
}

.topbar a {
    color: rgba(255, 255, 255, 0.96);
    text-decoration: none;
    transition: color 0.18s ease, opacity 0.18s ease;
}

.topbar a:hover,
.topbar a:focus {
    color: #fff;
    opacity: 0.82;
}

.topbar-links a + a {
    position: relative;
    padding-left: 1rem;
}

.topbar-links a + a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 0.9rem;
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-50%);
}

.navbar-custom {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(18, 65, 96, 0.08);
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header.scrolled .navbar-custom {
    box-shadow: 0 16px 35px rgba(11, 34, 53, 0.10);
    background: rgba(255, 255, 255, 0.98);
}

.site-logo {
    height: 62px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--ink);
    font-weight: 600;
    padding: 0.9rem 0.95rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--brand-navy);
}

.navbar-toggler {
    border: 1px solid rgba(18, 65, 96, 0.14);
    border-radius: 0.75rem;
    padding: 0.6rem 0.7rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(18, 65, 96, 0.12);
}

.navbar-toggler-icon-custom,
.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
    display: block;
    width: 1.35rem;
    height: 2px;
    background: var(--brand-navy);
    border-radius: 999px;
    position: relative;
    transition: transform 0.2s ease;
}

.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
    content: "";
    position: absolute;
    left: 0;
}

.navbar-toggler-icon-custom::before {
    top: -0.42rem;
}

.navbar-toggler-icon-custom::after {
    top: 0.42rem;
}

.dropdown-menu {
    border: 1px solid rgba(18, 65, 96, 0.08);
    border-radius: 1rem;
    padding: 0.65rem;
}

.dropdown-item {
    border-radius: 0.7rem;
    font-weight: 500;
    padding: 0.65rem 0.8rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(18, 65, 96, 0.06);
}

.header-actions .btn {
    min-width: 170px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 2.5rem;
    background:
        radial-gradient(circle at top right, rgba(204, 127, 36, 0.15), transparent 32%),
        linear-gradient(180deg, #f9fbfd 0%, #ffffff 65%);
}

.hero-section::before {
    content: "";
    position: absolute;
    right: -8rem;
    top: -4rem;
    width: 22rem;
    height: 22rem;
    background: radial-gradient(circle, rgba(18, 65, 96, 0.14), transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    gap: 1.5rem;
}

.hero-title {
    font-size: clamp(2.3rem, 5vw, 4.25rem);
    line-height: 1.02;
    max-width: 14ch;
    margin: 1rem 0;
}

.hero-lead {
    font-size: 1.08rem;
    max-width: 42rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.85rem;
}

.hero-checklist li,
.check-list li {
    position: relative;
    padding-left: 1.8rem;
    color: var(--ink-soft);
}

.hero-checklist li::before,
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.05rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    color: var(--brand-orange);
    font-weight: 800;
}

.hero-card {
    position: relative;
    background: linear-gradient(180deg, #fff 0%, #f5f8fb 100%);
    border: 1px solid rgba(18, 65, 96, 0.10);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: auto 1.25rem 1.25rem auto;
    width: 6rem;
    height: 6rem;
    background: radial-gradient(circle, rgba(204, 127, 36, 0.14), transparent 70%);
}

.hero-card-badge {
    display: inline-flex;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(18, 65, 96, 0.08);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 1rem;
}

.hero-stats,
.card-grid,
.feature-grid,
.area-grid,
.review-grid,
.post-grid,
.info-grid {
    display: grid;
    gap: 1rem;
}

.stat-card,
.trust-card,
.service-card,
.why-card,
.process-card,
.testimonial-card,
.contact-card,
.blog-card,
.area-card,
.info-card,
.page-panel,
.faq-card,
.metric-card {
    background: #fff;
    border: 1px solid rgba(18, 65, 96, 0.10);
    border-radius: var(--radius-md);
    padding: 1.35rem;
    box-shadow: var(--shadow-card);
}

.stat-card strong,
.metric-card strong {
    display: block;
    font-size: 1.05rem;
    color: var(--brand-navy);
}

.stat-card span,
.metric-card span {
    display: block;
    margin-top: 0.35rem;
    color: var(--ink-soft);
    font-size: 0.96rem;
}

.trust-strip {
    margin-top: 1.5rem;
}

.trust-card,
.service-card,
.why-card,
.process-card,
.area-card,
.info-card {
    height: 100%;
}

.card-icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(18, 65, 96, 0.08), rgba(204, 127, 36, 0.10));
    color: var(--brand-navy);
    font-weight: 800;
    margin-bottom: 1rem;
}

.card-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.service-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(18, 65, 96, 0.14);
}

.service-link,
.text-link {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
    font-weight: 700;
}

.service-link::after,
.text-link::after {
    content: "→";
    transition: transform 0.15s ease;
}

.service-link:hover::after,
.text-link:hover::after {
    transform: translateX(3px);
}

.highlight-band,
.cta-band {
    border-radius: var(--radius-lg);
    padding: 2rem;
    background: linear-gradient(135deg, var(--brand-navy-2), var(--brand-navy));
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.highlight-band h2,
.cta-band h2,
.highlight-band h3,
.cta-band h3 {
    color: #fff;
}

.highlight-band p,
.cta-band p {
    color: rgba(255, 255, 255, 0.86);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
    padding: 3rem 0 2rem;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: auto -4rem -8rem auto;
    width: 20rem;
    height: 20rem;
    background: radial-gradient(circle, rgba(204, 127, 36, 0.16), transparent 68%);
}

.breadcrumb-nav {
    margin-bottom: 1rem;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.breadcrumb-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "/";
    color: rgba(18, 65, 96, 0.4);
}

.page-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.sticky-panel {
    position: sticky;
    top: 8rem;
}

.panel-list,
.footer-list,
.footer-contact-list,
.plain-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-list,
.footer-list,
.footer-contact-list,
.plain-list {
    display: grid;
    gap: 0.75rem;
}

.panel-list li {
    color: var(--ink-soft);
}
.footer-contact-list li {
    color: var(--surface);
}
.footer-contact-list span {
    color: var(--surface);
}

.accordion-item {
    border: 1px solid rgba(18, 65, 96, 0.10);
    border-radius: 1rem !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 700;
    color: var(--ink);
    padding: 1.2rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    color: var(--brand-navy);
    background: rgba(18, 65, 96, 0.05);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(18, 65, 96, 0.10);
}

.testimonial-card {
    position: relative;
}

.testimonial-stars {
    color: var(--brand-orange);
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.quote-mark {
    font-size: 3rem;
    line-height: 1;
    color: rgba(204, 127, 36, 0.22);
}

.form-shell {
    background: linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
    border: 1px solid rgba(18, 65, 96, 0.10);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.form-control,
.form-select {
    border-radius: 0.85rem;
    border: 1px solid rgba(18, 65, 96, 0.16);
    padding: 0.85rem 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(18, 65, 96, 0.35);
    box-shadow: 0 0 0 0.25rem rgba(18, 65, 96, 0.10);
}

.form-label {
    font-weight: 600;
    color: var(--ink);
}

.site-footer {
    background: linear-gradient(180deg, #0e2740 0%, #081a2a 100%);
    color: rgba(255, 255, 255, 0.84);
    margin-top: 4rem;
}

.footer-main {
    padding: 4rem 0 2.5rem;
}

.footer-brand-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background-color: #fcfcfd !important;
    border: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-brand-card p {color: #333333 !important;}
.footer-logo {
    width: 260px;
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-list a,
.footer-contact-list a,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.84);
}

.footer-list a:hover,
.footer-contact-list a:hover,
.footer-bottom a:hover {
    color: #fff;
}

.footer-area-copy {
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 1rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.muted-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    border: 1px solid rgba(18, 65, 96, 0.08);
}

.inline-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.3rem 0.65rem;
    background: rgba(18, 65, 96, 0.08);
    color: var(--brand-navy);
    font-size: 0.9rem;
    font-weight: 700;
}

.empty-state {
    text-align: center;
    padding: 2rem;
    background: var(--surface);
    border-radius: var(--radius-md);
}

@media (min-width: 576px) {
    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .topbar-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-bottom-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .card-grid,
    .feature-grid,
    .area-grid,
    .review-grid,
    .post-grid,
    .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .hero-section {
        padding: 5rem 0 3rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
        align-items: center;
        gap: 2rem;
    }

    .hero-stats,
    .card-grid.three-up,
    .feature-grid.three-up,
    .review-grid.three-up,
    .post-grid.three-up,
    .info-grid.three-up {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .card-grid.four-up,
    .feature-grid.four-up,
    .info-grid.four-up {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .area-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
         .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }

    .hero-stats .stat-card {
        height: 100%;
    }
}


@media (max-width: 767.98px) {
    .section-padding {
        padding: 4rem 0;
    }

    .page-hero,
    .hero-section {
        padding-top: 2.5rem;
    }

    .site-logo {
        height: 54px;
    }

    .highlight-band,
    .cta-band {
        padding: 1.5rem;
    }
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
  height: auto;
}

.container,
.container-fluid {
  overflow-x: clip;
}

.page-hero,
.section-padding,
.section-alt,
.highlight-band,
.page-panel,
.muted-card,
.service-card,
.info-card {
  max-width: 100%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions .btn {
  max-width: 100%;
  white-space: normal;
}

.highlight-band .btn,
.page-panel .btn,
.muted-card .btn {
  max-width: 100%;
  white-space: normal;
}

.feature-grid,
.card-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 100%;
}

@media (max-width: 767.98px) {
  .feature-grid.three-up,
  .card-grid.two-up {
    grid-template-columns: 1fr;
  }

  .page-hero .row,
  .section-padding .row {
    --bs-gutter-x: 1.25rem;
  }

  .highlight-band {
    padding: 1.25rem;
  }

  .sticky-panel {
    position: static !important;
    top: auto !important;
  }
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar-custom {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(18, 65, 96, 0.08);
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header.scrolled .navbar-custom {
    box-shadow: 0 16px 35px rgba(11, 34, 53, 0.10);
    background: rgba(255, 255, 255, 0.98);
}

.site-logo {
    height: 62px;
    width: auto;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0;
    margin-right: 0;
}

.navbar-nav .nav-link {
    color: var(--ink);
    font-weight: 600;
    padding: 0.9rem 0.95rem;
    position: relative;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--brand-navy);
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0.95rem;
    right: 0.95rem;
    bottom: 0.45rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-navy));
}

.navbar-toggler.offcanvas-toggle {
    border: none;
    border-radius: 0;
    padding: 0.75rem 0.8rem;
    background: transparent;
    box-shadow: none;
}

.navbar-toggler.offcanvas-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(18, 65, 96, 0.12);
}

.navbar-toggler-icon-custom,
.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
    display: block;
    width: 1.35rem;
    height: 2px;
    background: var(--brand-navy);
    border-radius: 999px;
    position: relative;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
    content: "";
    position: absolute;
    left: 0;
}

.navbar-toggler-icon-custom::before {
    top: -0.42rem;
}

.navbar-toggler-icon-custom::after {
    top: 0.42rem;
}

.header-desktop-actions .btn {
    min-width: 170px;
}

.dropdown-menu {
    border: 1px solid rgba(18, 65, 96, 0.08);
    border-radius: 1rem;
    padding: 0.65rem;
    box-shadow: var(--shadow-soft);
}

.dropdown-item {
    border-radius: 0.7rem;
    font-weight: 500;
    padding: 0.65rem 0.8rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(18, 65, 96, 0.06);
}

.offcanvas-nav {
    --bs-offcanvas-width: min(90vw, 390px);
    border-left: 1px solid rgba(18, 65, 96, 0.08);
    background:
        radial-gradient(circle at top right, rgba(204, 127, 36, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.offcanvas-nav .offcanvas-header {
    padding: 1.1rem 1.1rem 0.75rem;
    align-items: center;
}

.offcanvas-brand {
    display: inline-flex;
    align-items: center;
}

.offcanvas-logo {
    height: 54px;
    width: auto;
}

.offcanvas-close {
    border-radius: 999px;
    padding: 0.7rem;
    opacity: 1;
    box-shadow: none;
}

.offcanvas-nav .offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1.1rem 1.25rem;
}

.offcanvas-contact-card {
    border: 1px solid rgba(18, 65, 96, 0.08);
    background: rgba(255, 255, 255, 0.88);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 12px 24px rgba(18, 65, 96, 0.06);
    margin-bottom: 1rem;
}

.offcanvas-service-area {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.45;
}

.offcanvas-contact-links {
    display: grid;
    gap: 0.55rem;
}

.offcanvas-contact-links a {
    color: var(--brand-navy);
    font-weight: 600;
    word-break: break-word;
}

.offcanvas-menu {
    display: grid;
    gap: 0.55rem;
}

.offcanvas-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    color: var(--ink);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 65, 96, 0.06);
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.offcanvas-link:hover,
.offcanvas-link:focus {
    color: var(--brand-navy);
    background: #fff;
    border-color: rgba(18, 65, 96, 0.12);
    transform: translateX(-2px);
}

.offcanvas-link.active,
.offcanvas-link[aria-current="page"] {
    color: var(--brand-navy);
    background: linear-gradient(135deg, rgba(18, 65, 96, 0.08), rgba(204, 127, 36, 0.08));
    border-color: rgba(18, 65, 96, 0.12);
}

.offcanvas-services-toggle {
    appearance: none;
    text-align: left;
}

.offcanvas-chevron {
    width: 0.7rem;
    height: 0.7rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex: 0 0 auto;
    margin-right: 0.15rem;
}

.offcanvas-services-toggle[aria-expanded="true"] .offcanvas-chevron {
    transform: rotate(225deg);
}

.offcanvas-submenu {
    padding: 0.55rem 0 0.15rem 0.65rem;
    display: grid;
    gap: 0.45rem;
}

.offcanvas-submenu a {
    display: block;
    padding: 0.8rem 0.95rem;
    border-radius: 0.85rem;
    color: var(--ink);
    background: rgba(18, 65, 96, 0.04);
    font-weight: 600;
}

.offcanvas-submenu a:hover,
.offcanvas-submenu a:focus {
    color: var(--brand-navy);
    background: rgba(18, 65, 96, 0.08);
}

.offcanvas-actions {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(18, 65, 96, 0.08);
}

.offcanvas-actions .btn {
    width: 100%;
}

@media (min-width: 1200px) {
    .offcanvas-nav,
    .offcanvas-toggle {
        display: none !important;
    }
}

@media (max-width: 1199.98px) {
    .navbar-custom .navbar-collapse {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .site-logo {
        height: 54px;
    }

    .offcanvas-nav {
        --bs-offcanvas-width: min(92vw, 360px);
    }
}
.contact-card .card-icon {
    width: 3.9rem;
    height: 3.9rem;
    font-size: 1.65rem;
    border-radius: 1.1rem;
}

.hero-section-home {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 2.5rem;
    background:
        linear-gradient(115deg, rgba(11, 34, 53, 0.82), rgba(18, 65, 96, 0.68)),
        linear-gradient(180deg, rgba(11, 34, 53, 0.52), rgba(11, 34, 53, 0.30)),
        url('/assets/images/hero-home.jpg') center center / cover no-repeat;
}

.hero-section-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(204, 127, 36, 0.18), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.10), transparent 24%);
    pointer-events: none;
    z-index: 0;
}

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

.hero-section-home .hero-title,

.hero-section-home .hero-card h3 {
    color: #fff;
}
.hero-card h2 {color: #000;}
.hero-section-home .hero-lead,
.hero-section-home .hero-checklist li {
    color: rgba(255, 255, 255, 0.88);
}

.hero-section-home .hero-checklist li::before {
    color: #ffd08d;
}

.hero-section-home .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.hero-section-home .btn-outline-primary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.42);
}

.hero-section-home .btn-outline-primary:hover,
.hero-section-home .btn-outline-primary:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.58);
}

.hero-section-home .hero-card {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.20);
}

.hero-section-home .trust-strip {
    position: relative;
    z-index: 1;
}

.hero-section-home .trust-card {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.34);
}

@media (min-width: 992px) {
    .hero-section-home {
        padding: 5.5rem 0 3rem;
        min-height: 720px;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 767.98px) {
    .hero-section-home {
        background-position: center center;
        padding: 3rem 0 2.25rem;
    }

    .hero-section-home .hero-card,
    .hero-section-home .trust-card {
        background: rgba(255, 255, 255, 0.96);
    }
}
.page-hero-about {
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0 2.5rem;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-hero-about::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(204, 127, 36, 0.18), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.10), transparent 24%);
    pointer-events: none;
    z-index: 0;
}

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

.page-hero-about .breadcrumb-list,
.page-hero-about .breadcrumb-list a {
    color: rgba(255, 255, 255, 0.82);
}

.page-hero-about .breadcrumb-list li:not(:last-child)::after {
    color: rgba(255, 255, 255, 0.45);
}

.page-hero-about .hero-title {
    color: #fff;
}

.page-hero-about .hero-lead {
    color: rgba(255, 255, 255, 0.88);
}

.page-hero-about .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.hero-glass-panel {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.20);
}

@media (min-width: 992px) {
    .page-hero-about {
        padding: 5rem 0 3rem;
        min-height: 520px;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 767.98px) {
    .page-hero-about {
        padding: 3rem 0 2rem;
        background-position: center center;
    }
}