/*
 * Template-only styles. Legacy pages link /css/style.css (mirrored to public/
 * by scripts/generate-agent-assets.mjs). Use root-absolute paths for all assets.
 */
@import url("brand-logos.css");

/********** Template CSS **********/
:root {
    --primary: #16D5FF;
    --secondary: #999999;
    --light: #F2F8FE;
    --dark: #111111;
}



h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}


/*** Header ***/
.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

/* Compact hero — trims the doubled py-5 padding on inner pages */
.hero-header--compact {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
    margin-bottom: 1.5rem !important;
}

.hero-header--compact > .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Hide the decorative hero illustration on text-light pages */
.hero-header--compact .hero-header-art {
    display: none;
}

@media (min-width: 992px) {
    .hero-header--compact .hero-header-copy {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Compact first content section — replaces the leading py-5 */
.page-section--compact {
    padding-top: 1.5rem !important;
    padding-bottom: 2rem !important;
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -80px;
    right: -80px;
    border: 80px solid;
    transform: rotate(45deg);
    opacity: 1;
    transition: .5s;
}

.service-item.bg-white::after {
    border-color: transparent transparent var(--light) transparent;
}

.service-item.bg-light::after {
    border-color: transparent transparent #FFFFFF transparent;
}

.service-item:hover::after {
    opacity: 0;
}


/*** Roadmap ***/
@keyframes roadmap-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.page-section--compact .roadmap-section-head,
.page-section--compact .roadmap-carousel-wrap,
.page-section--compact .bitcoin-timeline {
    animation: roadmap-fade-in 0.55s ease-out both;
}

.page-section--compact .roadmap-carousel-wrap {
    animation-delay: 0.1s;
}

.page-section--compact .bitcoin-timeline {
    animation-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
    .page-section--compact .roadmap-section-head,
    .page-section--compact .roadmap-carousel-wrap,
    .page-section--compact .bitcoin-timeline {
        animation: none;
    }
}

.roadmap-carousel {
    position: relative;
}

.roadmap-carousel::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    top: 20px;
    left: 0;
    border-top: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item .roadmap-point {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 6px;
    left: 50%;
    margin-left: -15px;
    background: #FFFFFF;
    border: 2px solid var(--primary);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--primary);
}

.roadmap-carousel .roadmap-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.roadmap-carousel .roadmap-item__track {
    position: relative;
    flex-shrink: 0;
    height: 128px;
}

.roadmap-carousel .roadmap-item__track::before {
    position: absolute;
    content: "";
    width: 0;
    height: 96px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-right: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item__track::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 104px;
    left: 50%;
    margin-left: -7px;
    transform: rotate(45deg);
    background: var(--primary);
}

.roadmap-carousel.owl-carousel .owl-item {
    height: auto;
}

.roadmap-carousel .roadmap-item__content {
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
}

.roadmap-carousel .roadmap-item__content h5 {
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.roadmap-carousel .roadmap-item__desc {
    display: block;
    color: var(--secondary);
    line-height: 1.6;
}

.roadmap-carousel .owl-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** Bitcoin timeline (roadmap page) — themed SVG infographic ***/
.bitcoin-timeline {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    border-radius: 1rem;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 4px 20px rgba(17, 17, 17, 0.08);
}

.bitcoin-timeline-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

@media (max-width: 575.98px) {
    .bitcoin-timeline {
        border-radius: 0.75rem;
    }

    .bitcoin-timeline-img {
        border-radius: 0.75rem;
    }
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: var(--primary);
    border: 1px solid var(--primary);
}

.footer .btn.btn-square:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(17, 17, 17, .1);
}

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: var(--dark);
}

/*** Custom Animations ***/
@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.wave-animation {
    transition: transform 0.3s ease-in-out;
    animation: wave 2s infinite;
}

.wave-animation:hover {
    animation-play-state: paused;
}

/*** Dollar Sign Styling ***/
.dollar-sign {
    font-size: 0.8em;
    vertical-align: super;
    margin-right: 2px;
    color: #4CAF50;
}

/*** Affiliate Cards ***/
.shadow-hover {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/*** Carousel Custom Styling ***/
.carousel-control-prev,
.carousel-control-next {
    background-color: #007BFF;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-item img {
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

/*** Logo Styling ***/
.logo-img {
    width: 45px;
}

/*** Section Containers ***/
.section-header {
    max-width: 500px;
}

.section-header-wide {
    max-width: 800px;
}

/*** Back to Top Button ***/
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #007BFF;
    color: white;
    font-size: 22px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
    color: white;
    text-decoration: none;
}

/*** LinkedIn Follow Button ***/
.libutton {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px;
    text-align: center;
    outline: none;
    text-decoration: none !important;
    color: #ffffff !important;
    width: 200px;
    height: 40px;
    border-radius: 20px;
    background-color: #0A66C2;
    font-family: "SF Pro Text", Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    transition: all 0.3s ease;
}

.libutton:hover {
    background-color: #004182;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 102, 194, 0.4);
    color: #ffffff !important;
    text-decoration: none !important;
}

/*** Contact page — email reveal & map badge ***/
.contact-email-box {
    padding: 0.875rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
}

.contact-email-address {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--bs-dark, #212529);
    text-decoration: none;
}

.contact-email-address:hover {
    color: var(--primary);
}

.contact-map-section {
    padding-bottom: 0;
    margin-bottom: 0;
}

.contact-page-footer {
    margin-top: 0 !important;
}

.contact-map-wrap {
    max-width: 100%;
    overflow: hidden;
}

.contact-map-iframe {
    display: block;
    height: 420px;
    border: 0;
    margin-bottom: 0;
}

.contact-map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -100%);
    pointer-events: none;
    font-size: 3rem;
    line-height: 1;
    color: var(--primary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
    animation: contact-map-pin-bounce 2s ease-in-out infinite;
}

@keyframes contact-map-pin-bounce {
    0%, 100% { transform: translate(-50%, -100%); }
    50% { transform: translate(-50%, calc(-100% - 6px)); }
}

.contact-map-pin::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 14px;
    height: 4px;
    margin-left: -7px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
}

.contact-map-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: min(320px, calc(100% - 2rem));
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    background: #ffffff;
    box-shadow: 0 0.35rem 1.25rem rgba(0, 0, 0, 0.15);
    color: inherit;
    text-decoration: none;
    pointer-events: auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-map-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.18);
    color: inherit;
}

.contact-map-badge-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary);
    margin-top: 0.125rem;
}

.contact-map-badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    font-size: 0.875rem;
    line-height: 1.35;
    color: #6c757d;
}

.contact-map-badge-text strong {
    font-size: 1rem;
    color: #212529;
}

html.dark .contact-email-box,
html.dark .contact-map-badge {
    background: #1c2128;
    border-color: rgba(255, 255, 255, 0.1);
}

html.dark .contact-email-address,
html.dark .contact-map-badge-text strong {
    color: #e6edf3;
}

html.dark .contact-map-badge-text {
    color: #8b949e;
}

/*** Premium newsletter page ($10.html) ***/
.newsletter-card {
    border-radius: 1rem;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.newsletter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.12);
}

.newsletter-card-media {
    background: #f4f7f9;
}

.newsletter-img-wrap {
    position: relative;
    height: 100%;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.newsletter-img {
    display: block;
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    border-radius: 0.75rem;
}

.newsletter-price-badge {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background: var(--primary);
    color: #ffffff;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 0.25rem 0.75rem rgba(22, 213, 255, 0.35);
}

.newsletter-card-body {
    padding: 2rem;
}

.newsletter-features li {
    margin-bottom: 0.65rem;
    color: #495057;
}

.newsletter-testimonials {
    background: #f4f7f9;
}

.newsletter-testimonial {
    margin: 0;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.06);
}

.newsletter-testimonial p {
    font-style: italic;
    color: #6c757d;
}

.newsletter-testimonial-author {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

html.dark .newsletter-card {
    background: #1c2128;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.35);
}

html.dark .newsletter-card-media,
html.dark .newsletter-testimonials {
    background: #161b22;
}

html.dark .newsletter-testimonial {
    background: #1c2128;
    border-color: rgba(255, 255, 255, 0.08);
}

html.dark .newsletter-testimonial p {
    color: #8b949e;
}

html.dark .newsletter-features li {
    color: #c9d1d9;
}

@media (max-width: 767.98px) {
    .newsletter-img-wrap {
        min-height: 220px;
        padding: 1.25rem;
    }

    .newsletter-card-body {
        padding: 1.5rem;
    }

    .newsletter-card-body .btn-lg {
        width: 100%;
    }
}

/*** Mobile layout guards ***/
@media (max-width: 991.98px) {
    body {
        overflow-x: hidden;
    }

    .contact-map-badge {
        top: auto;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        max-width: calc(100% - 1.5rem);
    }

    .contact-map-badge:hover {
        transform: translateX(-50%) translateY(-2px);
    }

}