body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.bg-success {
    background-color: #092409 !important; /* Forest Green */
}

.text-yellow {
    color: #FFD700 !important; /* Yellow-Gold */
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    position: relative;
  z-index: 2;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #FFD700; /* Yellow-Gold */
}

h1 {
    color: #fff;
}

h2 {
    color: #092409; /* Forest Green */
}

.btn-outline-success {
    border-color: #092409;
    color: #092409;
}

.btn-outline-success:hover {
    background-color: #092409;
    color: #fff;
}

.card-title {
    color: #092409; /* Forest Green */
}

.card-text {
    color: #000; /* Black */
}

.jumbotron {
    margin-bottom: 0;
    padding: 4rem 2rem;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh; /* Full screen height */
    position: relative;
    color: white;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
}

.jumbotron::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.jumbotron::after {
    position: fixed;
}

.jumbotron .container {
    position: relative;
    z-index: 2;
}

.jumbotron .display-4 {
    font-size: 3rem;
    font-weight: bold;
}

.jumbotron .lead {
    font-size: 1.5rem;
    font-weight: 300;
}

.animated-text {
    animation: fadeIn 2s ease-in-out;
}

.parallax {
    background-attachment: fixed;
}

.hero-content {
    max-width: 860px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.35rem;
}

.hero-actions .btn {
    border-radius: 8px;
    font-weight: 800;
    min-width: 170px;
}

.hero-actions .btn-primary {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #092409;
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-primary:focus {
    background-color: #fff1a3;
    border-color: #fff1a3;
    color: #092409;
}

.hero-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.86);
    color: #fff;
}

.hero-actions .btn-outline-light:hover,
.hero-actions .btn-outline-light:focus {
    background-color: #fff;
    color: #092409;
}

.home-trust-strip {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 1.5rem auto 0;
    max-width: 820px;
    text-align: left;
}

.home-trust-strip div {
    background: #fff;
    border: 1px solid rgba(9, 36, 9, 0.12);
    border-left: 5px solid #4d7c3a;
    border-radius: 8px;
    padding: 0.85rem 1rem;
}

.home-trust-strip strong,
.home-trust-strip span {
    display: block;
}

.home-trust-strip strong {
    color: #092409;
    font-size: 1.02rem;
}

.home-trust-strip span {
    color: #253225;
    line-height: 1.35;
    margin-top: 0.15rem;
}

.photo-gallery-section {
    --photo-gallery-section-height: 48vh;
    --photo-gallery-y-padding: 0.75rem;
    background: #092409;
    box-sizing: border-box;
    height: var(--photo-gallery-section-height);
    overflow: hidden;
    padding: var(--photo-gallery-y-padding) 0;
}

.photo-gallery {
    --gallery-gap: 0.65rem;
    --gallery-tile-size: calc((var(--photo-gallery-section-height) - var(--photo-gallery-y-padding) - var(--photo-gallery-y-padding) - var(--gallery-gap) - var(--gallery-gap)) / 3);
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: relative;
    width: 100%;
}

.photo-gallery-track {
    backface-visibility: hidden;
    display: flex;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    width: max-content;
}

.photo-gallery.is-animated .photo-gallery-track {
    animation: photo-gallery-scroll 96s linear infinite;
}

.photo-gallery.is-static {
    overflow: hidden;
}

.photo-gallery-loop {
    display: flex;
    flex: 0 0 auto;
    gap: var(--gallery-gap);
    padding-right: var(--gallery-gap);
}

.photo-gallery-panel {
    display: grid;
    flex: 0 0 auto;
    gap: var(--gallery-gap);
    grid-template-areas:
        "feature feature portrait wide wide square-a"
        "feature feature portrait portrait-b square-b square-b"
        "wide-b wide-b square-c portrait-b wide-c wide-c";
    grid-template-columns: repeat(6, var(--gallery-tile-size));
    grid-template-rows: repeat(3, var(--gallery-tile-size));
}

.photo-gallery-item {
    background: #092409;
    border-radius: 0;
    margin: 0;
    min-width: 0;
    overflow: hidden;
    position: relative;
}

.photo-gallery-item::after {
    box-shadow: inset 0 0 0 1px #092409;
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.photo-gallery-slot-0 {
    grid-area: feature;
}

.photo-gallery-slot-1 {
    grid-area: portrait;
}

.photo-gallery-slot-2 {
    grid-area: wide;
}

.photo-gallery-slot-3 {
    grid-area: square-a;
}

.photo-gallery-slot-4 {
    grid-area: portrait-b;
}

.photo-gallery-slot-5 {
    grid-area: square-b;
}

.photo-gallery-slot-6 {
    grid-area: wide-b;
}

.photo-gallery-slot-7 {
    grid-area: square-c;
}

.photo-gallery-slot-8 {
    grid-area: wide-c;
}

.photo-gallery-item img {
    display: block;
    height: calc(100% + 4px);
    left: -2px;
    max-width: none;
    object-fit: cover;
    position: absolute;
    top: -2px;
    width: calc(100% + 4px);
}

@keyframes photo-gallery-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background-color: #0e300e; /* Background color */
    border-radius: 25%; /* Rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px; /* Padding outside the SVG */
    margin-right: 10px; /* Space between icon and text */
}

.logo-circle {
    display: block;
    width: 54px;
    height: 54px;
    box-sizing: border-box;
    border-radius: 50%;
    border: 1.5px solid #FFD700;
    background-color: #092409;
    object-fit: cover;
}

.footer-logo {
    display: block;
    filter: invert(77%) sepia(65%) saturate(744%) hue-rotate(357deg) brightness(101%) contrast(105%);
}

.site-footer {
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.footer-copyright {
    flex: 1 1 auto;
    min-width: 0;
}

.footer-social {
    align-items: center;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 0.65rem;
    margin-bottom: 0;
    min-width: max-content;
    padding-left: 0;
}

.footer-social li {
    flex: 0 0 auto;
}

.footer-social a {
    align-items: center;
    display: flex;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.about-carousel {
    max-width: min(max(50vh, 33vw), 90vw)
}
.carousel-image {
    height: min(50vh, 90vw);
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .photo-gallery {
        --gallery-gap: 0.55rem;
    }
}

@media (max-width: 767.98px) {
    .home-intro-title {
        font-size: 2.35rem;
        line-height: 1.12;
    }

    .hero-actions {
        align-items: center;
        flex-direction: column;
    }

    .hero-actions .btn {
        max-width: 290px;
        width: 100%;
    }

    .home-trust-strip {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .photo-gallery-section {
        --photo-gallery-section-height: 44vh;
        --photo-gallery-y-padding: 0.55rem;
    }

    .photo-gallery {
        --gallery-gap: 0.5rem;
    }
}

@media (hover: none) {
    .background-fixed {
        background-attachment: scroll;
    }
 }
 
 @media (pointer: coarse) {
    .background-fixed {
        background-attachment: scroll;
    }
 }
 
 @media only screen and (max-device-width: 1366px) {
    .jumbotron {
      background-attachment: scroll;
    }
  }
 
  .btn-primary {
    background-color: #092409; /* Forest green */
    border-color: #092409; /* Forest green */
    color: #fff; /* Yellow-gold text */
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open>.dropdown-toggle.btn-primary {
    background-color: #054d04; /* Darker green for hover/active states */
    border-color: #054d04; /* Darker green for hover/active states */
    color: #fff; /* Yellow-gold text */
}

.btn-primary:focus,
.btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(7, 28, 7, 0.5); /* Green shadow */
}

.btn-primary.disabled,
.btn-primary:disabled {
    background-color: #092409; /* Forest green */
    border-color: #092409; /* Forest green */
    color: #FFD700; /* Yellow-gold text */
}

.faq-search label {
    color: #092409;
    display: block;
    font-size: 0.86rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.faq-search input {
    border: 1px solid rgba(9, 36, 9, 0.22);
    border-radius: 8px;
    color: #1b281b;
    font-size: 1rem;
    min-height: 46px;
    padding: 0.7rem 0.85rem;
    width: 100%;
}

.faq-search input:focus {
    border-color: #4d7c3a;
    box-shadow: 0 0 0 0.18rem rgba(77, 124, 58, 0.18);
    outline: none;
}

.faq-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.9rem;
}

.faq-filter {
    background: #fff;
    border: 1px solid rgba(9, 36, 9, 0.2);
    border-radius: 8px;
    color: #253225;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
    padding: 0.48rem 0.7rem;
}

.faq-filter:hover,
.faq-filter:focus {
    border-color: #4d7c3a;
    box-shadow: 0 0 0 0.16rem rgba(77, 124, 58, 0.14);
    outline: none;
}

.faq-filter[aria-pressed="true"] {
    background: #092409;
    border-color: #092409;
    color: #fff;
}

.faq-results-bar {
    color: #596259;
    font-size: 0.92rem;
    font-weight: 700;
    margin-top: 0.85rem;
    min-height: 1.4rem;
}

.faq-question-section {
    padding-top: 1rem;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.2rem;
}

.faq-grid.is-empty {
    display: block;
}

.faq-card h3 {
    line-height: 1.35;
}

.faq-card p {
    color: #253225;
    line-height: 1.5;
    margin-bottom: 0;
}

.faq-empty {
    background: #fff;
    border: 1px solid rgba(9, 36, 9, 0.12);
    border-radius: 8px;
    color: #354235;
    font-weight: 700;
    margin: 0;
    padding: 1rem;
    text-align: center;
}

.routes-page {
    background: #f4f4f4;
    padding: 0 0 4rem;
}

.routes-content {
    max-width: 1060px;
}

.route-map-frame {
    background: #dfe9dc;
    border: 1px solid rgba(9, 36, 9, 0.18);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(9, 36, 9, 0.1);
    margin-bottom: 1rem;
    overflow: hidden;
}

.route-map {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0)),
        #dfe9dc;
    height: min(58vh, 560px);
    min-height: 390px;
    width: 100%;
}

.route-map-fallback {
    align-items: center;
    display: flex;
    justify-content: center;
}

.route-fallback-svg {
    height: 100%;
    width: 100%;
}

.routes-map-intro {
    align-items: flex-end;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin: 0 0 1.5rem;
}

.routes-map-intro h2 {
    color: #092409;
    font-weight: 800;
}

.routes-map-intro .lead {
    color: #253225;
    line-height: 1.55;
    margin-bottom: 0;
}

.map-toggle-button {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(9, 36, 9, 0.18);
    border-radius: 999px;
    color: #092409;
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.92rem;
    font-weight: 800;
    gap: 0.55rem;
    line-height: 1.2;
    padding: 0.45rem 0.75rem 0.45rem 0.48rem;
}

.map-toggle-button:hover,
.map-toggle-button:focus {
    border-color: rgba(9, 36, 9, 0.35);
    box-shadow: 0 0 0 0.15rem rgba(77, 124, 58, 0.16);
    outline: none;
}

.map-toggle-switch {
    align-items: center;
    background: #d5ddd1;
    border-radius: 999px;
    display: inline-flex;
    height: 20px;
    padding: 2px;
    width: 36px;
}

.map-toggle-switch span {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(9, 36, 9, 0.22);
    display: block;
    height: 16px;
    transform: translateX(0);
    transition: transform 0.18s ease;
    width: 16px;
}

.map-toggle-button[aria-pressed="true"] .map-toggle-switch {
    background: #4d7c3a;
}

.map-toggle-button[aria-pressed="true"] .map-toggle-switch span {
    transform: translateX(16px);
}

.routes-toolbar {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(9, 36, 9, 0.12);
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    padding: 0.75rem 0.9rem;
}

.routes-toolbar span {
    color: #092409;
    font-weight: 700;
}

.routes-toolbar div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.map-routes {
    display: grid;
    gap: 1rem 2.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.route-section-heading {
    background: transparent;
    border: 0;
    border-bottom: 2px solid rgba(9, 36, 9, 0.18);
    color: #092409;
    cursor: pointer;
    display: flex;
    font-size: 1.18rem;
    font-weight: 800;
    justify-content: space-between;
    line-height: 1.25;
    margin: 0 0 0.45rem;
    padding: 0 0 0.35rem;
    text-align: left;
    width: 100%;
}

.route-section-heading::after {
    color: #4d7c3a;
    content: "-";
    font-weight: 900;
    margin-left: 0.8rem;
}

.route-section-heading[aria-expanded="false"]::after {
    content: "+";
}

.route-entry {
    border-left: 4px solid transparent;
    color: #222;
    margin: 0.3rem 0;
    padding: 0.03rem 0 0.2rem 0.25rem;
}

.route-entry.selected {
    border-left-color: #4d7c3a;
}

.routename {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: #0b5f0b;
    cursor: pointer;
    display: flex;
    font-weight: 800;
    gap: 0.75rem;
    justify-content: space-between;
    line-height: 1.35;
    padding: 0.32rem 0.5rem;
    text-align: left;
    width: 100%;
}

.routename:hover,
.routename:focus {
    background: #fff;
    color: #092409;
    outline: none;
}

.route-entry.selected .routename {
    background: rgba(77, 124, 58, 0.1);
    color: #092409;
}

.route-title {
    min-width: 0;
}

.route-toggle-label {
    background: #fff;
    border: 1px solid rgba(9, 36, 9, 0.16);
    border-radius: 999px;
    color: #4d7c3a;
    flex: 0 0 auto;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    padding: 0.28rem 0.5rem;
    white-space: nowrap;
}

.route-entry.selected .route-toggle-label {
    background: #4d7c3a;
    border-color: #4d7c3a;
    color: #fff;
}

.route-description {
    color: #313a31;
    display: block;
    line-height: 1.45;
    margin: 0.15rem 0 0 0.5rem;
}

.route-meta {
    color: #596259;
    display: block;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.route-links {
    display: inline;
    margin-left: 0.3rem;
}

.route-links::before {
    content: "(";
}

.route-links::after {
    content: ")";
}

.route-links a {
    color: #0b5f0b;
    font-weight: 700;
}

.route-links a + a {
    margin-left: 0.3rem;
}

.route-links a:not(:last-child)::after {
    color: #596259;
    content: ",";
}

.leaflet-container {
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
    left: 0;
    position: absolute;
    top: 0;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
    max-height: none !important;
    max-width: none !important;
}

.leaflet-tile {
    filter: inherit;
    visibility: hidden;
}

.leaflet-tile-loaded {
    visibility: inherit;
}

.leaflet-pane > svg path,
.leaflet-tile-container {
    pointer-events: none;
}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
    pointer-events: auto;
}

.leaflet-pane {
    z-index: 400;
}

.leaflet-tile-pane {
    z-index: 200;
}

.leaflet-overlay-pane {
    z-index: 400;
}

.leaflet-route-pane {
    z-index: 450;
}

.route-map .leaflet-route-pane > svg,
.route-map .leaflet-route-pane > canvas {
    transform-origin: 0 0;
    will-change: transform;
}

.route-map.leaflet-zoom-anim .leaflet-route-pane > svg,
.route-map.leaflet-zoom-anim .leaflet-route-pane > canvas {
    transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

.leaflet-marker-pane {
    z-index: 600;
}

.leaflet-tooltip-pane {
    z-index: 650;
}

.leaflet-popup-pane {
    z-index: 700;
}

.leaflet-popup {
    margin-bottom: 20px;
    position: absolute;
    text-align: center;
}

.leaflet-popup-content-wrapper {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(9, 36, 9, 0.22);
    padding: 1px;
    text-align: left;
}

.leaflet-popup-content {
    line-height: 1.4;
    margin: 0.85rem 1rem;
}

.leaflet-popup-tip-container {
    height: 20px;
    left: 50%;
    margin-left: -20px;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    width: 40px;
}

.leaflet-popup-tip {
    background: #fff;
    box-shadow: 0 8px 24px rgba(9, 36, 9, 0.18);
    height: 16px;
    margin: -9px auto 0;
    transform: rotate(45deg);
    width: 16px;
}

.leaflet-popup-close-button {
    background: transparent;
    border: 0;
    color: #596259;
    font: 18px/1 Arial, sans-serif;
    padding: 0.35rem 0.45rem;
    position: absolute;
    right: 0;
    text-decoration: none;
    top: 0;
}

.leaflet-popup-close-button:hover,
.leaflet-popup-close-button:focus {
    color: #092409;
    text-decoration: none;
}

.leaflet-tooltip {
    background: #fff;
    border: 1px solid rgba(9, 36, 9, 0.22);
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(9, 36, 9, 0.12);
    color: #092409;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.18rem 0.42rem;
    pointer-events: none;
    position: absolute;
    white-space: nowrap;
}

.leaflet-tooltip-top {
    margin-top: -6px;
}

.route-poi-tooltip {
    border-color: rgba(9, 36, 9, 0.28);
}

.route-poi-marker {
    align-items: center;
    background: transparent;
    border: 0;
    display: flex;
    justify-content: center;
}

.route-poi-marker-dot {
    background: var(--poi-fill, #ffd700);
    border: 2px solid var(--poi-color, #092409);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(9, 36, 9, 0.28);
    display: block;
    height: 14px;
    width: 14px;
}

.route-poi-popup-content strong {
    color: #092409;
    display: block;
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 0.35rem;
}

.route-poi-popup-content p {
    color: #253225;
    line-height: 1.4;
    margin: 0;
}

.leaflet-control {
    clear: both;
    float: left;
    pointer-events: auto;
    position: relative;
    z-index: 800;
}

.route-map .leaflet-control-attribution {
    font-size: 10px;
    line-height: 1.2;
    padding: 1px 4px;
}

.route-map .leaflet-control-attribution a {
    font-size: inherit;
}

.route-map .leaflet-control-attribution svg {
    height: 6px;
    width: 9px;
}

.route-basemap-control {
    background: #fff;
    border: 1px solid rgba(9, 36, 9, 0.16);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(9, 36, 9, 0.16);
    color: #092409;
    max-width: calc(100vw - 24px);
    min-width: 110px;
    overflow: hidden;
}

.route-basemap-toggle {
    align-items: center;
    background: #fff;
    border: 0;
    color: #092409;
    cursor: pointer;
    display: flex;
    font-size: 0.82rem;
    font-weight: 800;
    gap: 0.42rem;
    justify-content: space-between;
    line-height: 1.2;
    padding: 0.44rem 0.52rem;
    text-align: left;
    width: 100%;
}

.route-basemap-toggle:hover,
.route-basemap-toggle:focus {
    background: #f4f8f2;
    outline: none;
}

.route-basemap-toggle-icon {
    background:
        linear-gradient(135deg, #dfe9dc 0 49%, transparent 50%),
        linear-gradient(135deg, transparent 0 49%, #4d7c3a 50%);
    border: 1px solid rgba(9, 36, 9, 0.25);
    border-radius: 4px;
    flex: 0 0 auto;
    height: 15px;
    width: 15px;
}

.route-basemap-toggle-text {
    flex: 1 1 auto;
}

.route-basemap-toggle-caret {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #4d7c3a;
    flex: 0 0 auto;
    height: 0;
    transition: transform 0.16s ease;
    width: 0;
}

.route-basemap-control.is-open .route-basemap-toggle-caret {
    transform: rotate(180deg);
}

.route-basemap-panel {
    background: #f7faf6;
    border-top: 1px solid rgba(9, 36, 9, 0.12);
    display: grid;
    gap: 0.12rem;
    padding: 0.25rem;
}

.route-basemap-panel[hidden] {
    display: none;
}

.route-basemap-option {
    align-items: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #253225;
    cursor: pointer;
    display: flex;
    font-size: 0.82rem;
    gap: 0.42rem;
    line-height: 1.25;
    padding: 0.34rem 0.42rem;
    text-align: left;
    width: 100%;
}

.route-basemap-option::before {
    background: #fff;
    border: 2px solid rgba(77, 124, 58, 0.7);
    border-radius: 50%;
    content: "";
    flex: 0 0 auto;
    height: 12px;
    width: 12px;
}

.route-basemap-option:hover,
.route-basemap-option:focus {
    background: #fff;
    border-color: rgba(77, 124, 58, 0.24);
    outline: none;
}

.route-basemap-option.is-selected {
    background: #fff;
    border-color: rgba(77, 124, 58, 0.35);
    box-shadow: inset 0 0 0 1px rgba(77, 124, 58, 0.08);
    color: #092409;
}

.route-basemap-option.is-selected::before {
    background: #4d7c3a;
    border-color: #4d7c3a;
    box-shadow: inset 0 0 0 3px #fff;
}

.route-basemap-option-text {
    min-width: 0;
}

.route-basemap-option-name {
    font-weight: 800;
}

.leaflet-top,
.leaflet-bottom {
    pointer-events: none;
    position: absolute;
    z-index: 1000;
}

.leaflet-top {
    top: 0;
}

.leaflet-right {
    right: 0;
}

.leaflet-bottom {
    bottom: 0;
}

.leaflet-left {
    left: 0;
}

.leaflet-left .leaflet-control {
    margin-left: 10px;
}

.leaflet-right .leaflet-control {
    margin-right: 10px;
}

.leaflet-top .leaflet-control {
    margin-top: 10px;
}

.leaflet-control-zoom a {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    color: #092409;
    display: block;
    font-size: 22px;
    font-weight: 700;
    height: 30px;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    width: 30px;
}

.leaflet-control-zoom a:hover,
.leaflet-control-zoom a:focus {
    background-color: #f4f4f4;
    color: #092409;
    text-decoration: none;
}

.leaflet-control-zoom-in {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.leaflet-control-zoom-out {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

@media (max-width: 767.98px) {
    .routes-page {
        padding-top: 0;
    }

    .route-map {
        height: 46vh;
        min-height: 300px;
    }

    .routes-map-intro {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 1.25rem;
    }

    .routes-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .routes-toolbar div {
        justify-content: flex-start;
    }

    .map-routes {
        grid-template-columns: 1fr;
    }
}

.new-runner-page {
    background: #f4f4f4;
    color: #253225;
    padding: 0 0 4rem;
}

.new-runner-intro {
    padding-bottom: 2.5rem;
}

.new-runner-kicker {
    color: #4d7c3a;
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.new-runner-intro h2,
.new-runner-section h2 {
    color: #092409;
    font-weight: 800;
}

.new-runner-intro .lead {
    color: #253225;
    line-height: 1.55;
}

.new-runner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.new-runner-intro .new-runner-actions {
    margin-bottom: 1rem;
}

.new-runner-callout {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(9, 36, 9, 0.14);
    border-left: 5px solid #4d7c3a;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin: 1.2rem 0 1.5rem;
    padding: 1rem 1.15rem;
}

.new-runner-callout strong,
.new-runner-callout span {
    display: block;
}

.new-runner-callout strong {
    color: #092409;
    font-size: 1.05rem;
}

.new-runner-callout span {
    color: #253225;
    line-height: 1.45;
}

.first-run-summary,
.trust-card,
.pace-note {
    background: #fff;
    border: 1px solid rgba(9, 36, 9, 0.12);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(9, 36, 9, 0.08);
}

.first-run-summary {
    padding: 1.35rem 1.45rem;
}

.first-run-summary h3,
.trust-card h3,
.pace-note h3 {
    color: #092409;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
}

.first-run-summary ul {
    margin: 0;
    padding-left: 1.2rem;
}

.first-run-summary li + li {
    margin-top: 0.45rem;
}

.first-run-summary.compact {
    box-shadow: none;
}

.new-runner-section {
    padding: 2rem 15px 0;
}

.run-expectation-grid {
    margin-top: 1.2rem;
}

.trust-card {
    height: 100%;
    padding: 1.2rem;
}

.trust-card p {
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.trust-card p:last-child {
    margin-bottom: 0;
}

.trust-card-label {
    color: #4d7c3a;
    display: block;
    font-size: 0.86rem;
    font-weight: 800;
    margin-bottom: 0.45rem;
    text-transform: uppercase;
}

.first-run-steps {
    background: #fff;
    border-left: 5px solid #4d7c3a;
    border-radius: 8px;
    margin: 1rem 0 0;
    padding: 1.25rem 1.25rem 1.25rem 2.35rem;
}

.first-run-steps li {
    line-height: 1.55;
}

.first-run-steps li + li {
    margin-top: 0.85rem;
}

.pace-note {
    box-shadow: none;
    margin-top: 1rem;
    padding: 1rem 1.1rem;
}

.pace-note p {
    line-height: 1.5;
    margin-bottom: 0;
}

.pace-note p + h3 {
    margin-top: 1rem;
}

.post-run-section {
    margin-top: 1.2rem;
}

.post-run-section p {
    font-size: 1.05rem;
    line-height: 1.58;
}

@media (max-width: 575.98px) {
    .new-runner-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .new-runner-actions .btn {
        width: 100%;
    }

    .new-runner-callout {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.skip-link {
    background: #ffd700;
    border-radius: 0 0 6px 0;
    color: #092409;
    font-weight: 800;
    left: 0;
    padding: 0.75rem 1rem;
    position: fixed;
    top: 0;
    transform: translateY(-120%);
    transition: transform 0.18s ease-in-out;
    z-index: 2000;
}

.skip-link:focus,
.skip-link:focus-visible {
    color: #092409;
    outline: 3px solid #fff;
    outline-offset: 2px;
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid #ffd700;
    outline-offset: 3px;
}

#main-content:focus {
    outline: none;
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .animated-text {
        animation: none !important;
        opacity: 1;
        transform: none;
    }

    .background-fixed,
    .parallax,
    .jumbotron {
        background-attachment: scroll !important;
    }

    .route-map .leaflet-route-pane > svg,
    .route-map .leaflet-route-pane > canvas,
    .route-map.leaflet-zoom-anim .leaflet-route-pane > svg,
    .route-map.leaflet-zoom-anim .leaflet-route-pane > canvas,
    .carousel,
    .photo-gallery.is-animated .photo-gallery-track,
    .photo-gallery-item,
    .photo-gallery-item img,
    .carousel-item {
        transition: none !important;
        will-change: auto;
    }

    .photo-gallery {
        overflow: hidden;
    }

    .photo-gallery-loop[aria-hidden="true"] {
        display: none;
    }

    .photo-gallery.is-animated .photo-gallery-track {
        animation: none !important;
    }
}
