/*------------------------------------------------------------------
    DeltaCoders - Multi-Page Styles
    Additional CSS for multi-page B2B website architecture
-------------------------------------------------------------------*/

/* ==============================================================
              NAVIGATION DROPDOWN
================================================================= */

/* Desktop only - dropdown navigation */
@media screen and (min-width: 1024px) {
    .has-dropdown {
        position: relative;
    }

    .dropdown-arrow {
        font-size: 0.7em;
        margin-left: 4px;
        opacity: 0.7;
        transition: transform 200ms ease;
    }

    .has-dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Force absolute positioning for dropdown - override app.css */
    .menuInline ul.nav-dropdown-menu,
    ul.nav-dropdown-menu {
        position: absolute !important;
        top: 80px !important;
        left: 0 !important;
        background: rgba(35, 35, 35, 0.98) !important;
        min-width: 220px;
        padding: 10px 0;
        z-index: 1000;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 200ms ease-in-out;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .has-dropdown:hover > ul.nav-dropdown-menu,
    .menuInline .has-dropdown:hover > ul.nav-dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    /* Override inherited styles from app.css */
    .menuInline .nav-dropdown-menu li {
        display: block !important;
        line-height: normal !important;
        width: 100%;
    }

    .menuInline .nav-dropdown-menu li a {
        display: block !important;
        padding: 12px 20px !important;
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 0.875rem !important;
        transition: all 150ms ease;
        line-height: 1.4 !important;
    }

    .menuInline .nav-dropdown-menu li a:hover {
        background: rgba(184, 0, 18, 0.9) !important;
        color: #fff !important;
        padding-left: 25px !important;
    }

    .menuInline .nav-dropdown-menu li.active a {
        background: rgba(184, 0, 18, 0.8) !important;
        color: #fff !important;
    }

    .menuInline .nav-dropdown-menu li.active a:hover {
        color: #fff !important;
    }

    .nav-badge {
        display: inline-block;
        background: rgba(184, 0, 18, 1);
        color: #fff;
        font-size: 0.65rem;
        padding: 2px 6px;
        border-radius: 3px;
        margin-left: 8px;
        text-transform: uppercase;
        font-weight: 700;
        vertical-align: middle;
    }

    /* CTA Button in Nav */
    .menuInline .nav-cta {
        margin-left: 15px !important;
    }

    .menuInline .nav-cta a.button-cta {
        display: inline-block !important;
        background: rgba(184, 0, 18, 1);
        color: #fff !important;
        padding: 12px 24px !important;
        font-size: 0.8rem !important;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 3px;
        transition: all 200ms ease;
        line-height: 1 !important;
    }

    .menuInline .nav-cta a.button-cta:hover {
        background: rgba(184, 0, 18, 0.85);
        transform: translateY(-2px);
    }
}

/* Mobile - show dropdowns always expanded */
@media screen and (max-width: 1023px) {
    .nav-dropdown-menu {
        display: block;
        position: static;
        background: transparent;
        box-shadow: none;
        padding-left: 20px;
        margin-top: 10px;
    }

    .nav-dropdown-menu li {
        display: block;
        margin-bottom: 10px;
    }

    .nav-dropdown-menu li a {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .nav-badge {
        display: inline-block;
        background: rgba(184, 0, 18, 1);
        color: #fff;
        font-size: 0.6rem;
        padding: 2px 5px;
        border-radius: 3px;
        margin-left: 6px;
        vertical-align: middle;
    }

    .dropdown-arrow {
        font-size: 0.6em;
        margin-left: 4px;
        opacity: 0.5;
    }

    .nav-cta {
        margin-top: 20px;
    }

    .nav-cta a.button-cta {
        display: block;
        background: rgba(184, 0, 18, 1);
        color: #fff;
        padding: 15px 25px;
        text-align: center;
        border-radius: 3px;
    }
}

/* Active nav states */
.navLink.active > a,
.navLink.has-dropdown.child-active > a {
    color: rgba(184, 0, 18, 1);
}

.nav-dropdown-menu li.active a {
    background: rgba(184, 0, 18, 0.8) !important;
    color: #fff !important;
}



/* ==============================================================
              BREADCRUMBS
================================================================= */
.breadcrumb-nav {
    padding: 20px 0;
    background: rgba(242, 242, 242, 0.5);
}

.breadcrumb-nav .breadcrumbs {
    margin: 0;
    padding: 0;
}

.breadcrumb-nav .breadcrumbs li {
    display: inline-block;
    font-size: 0.875rem;
    color: rgba(21, 21, 21, 0.6);
}

.breadcrumb-nav .breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: rgba(21, 21, 21, 0.4);
}

.breadcrumb-nav .breadcrumbs li a {
    color: rgba(21, 21, 21, 0.8);
}

.breadcrumb-nav .breadcrumbs li a:hover {
    color: rgba(184, 0, 18, 1);
}

.breadcrumb-nav .breadcrumbs li.current {
    color: rgba(21, 21, 21, 1);
}


/* ==============================================================
              STATIC HERO (NON-VIDEO PAGES)
================================================================= */
.hero-static {
    background: rgba(21, 21, 21, 1);
    min-height: 350px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-static-overlay {
    width: 100%;
    padding: 80px 0;
}

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

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.hero-integrations {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 40px;
}

.hero-integrations-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-integrations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.integration-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-cta-wrapper {
    margin-top: 30px;
}

.hero-cta-primary {
    background: rgba(184, 0, 18, 1);
    color: #fff;
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    margin-right: 15px;
}

.hero-cta-primary:hover {
    background: rgba(184, 0, 18, 0.85);
    color: #fff;
}

.hero-cta-secondary {
    background: transparent;
    color: #fff;
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.8);
}

/* Product Hero variation */
.hero-product {
    min-height: 300px;
    text-align: left;
}

.hero-product .hero-static-overlay {
    padding: 60px 0;
}

.hero-product .hero-icon {
    font-size: 4rem;
    color: rgba(184, 0, 18, 1);
    margin-bottom: 20px;
}

.hero-product .hero-title {
    font-size: 2rem;
}

.hero-product .hero-tagline {
    color: rgba(184, 0, 18, 1);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}


/* ==============================================================
              CTA BANNER
================================================================= */
.cta-banner {
    padding: 60px 15px;
}

.cta-banner > .row {
    max-width: 75rem;
    margin: 0 auto;
}

.cta-banner-dark {
    background: rgba(21, 21, 21, 1);
}

.cta-banner-dark .cta-title,
.cta-banner-dark .cta-subtitle {
    color: #fff;
}

.cta-banner-light {
    background: rgba(242, 242, 242, 1);
}

.cta-title {
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    margin-bottom: 0;
    opacity: 0.85;
}

.cta-button-col {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cta-button {
    background: rgba(184, 0, 18, 1);
    color: #fff;
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.cta-button:hover {
    background: rgba(184, 0, 18, 0.85);
    color: #fff;
}


/* ==============================================================
              TRUST BADGES
================================================================= */
.trust-badges {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.trust-badges-inline {
    justify-content: center;
}

.trust-badges-block {
    flex-direction: column;
    align-items: flex-start;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(21, 21, 21, 0.8);
}

.trust-badge-icon {
    font-size: 1.25rem;
    color: rgba(184, 0, 18, 1);
}

.trust-badge-text {
    font-weight: 600;
}

/* Trust badges on dark backgrounds */
.bgBlack .trust-badge,
.cta-banner-dark .trust-badge {
    color: rgba(255, 255, 255, 0.85);
}


/* ==============================================================
              PRODUCT CARDS ENHANCED
================================================================= */
.productCard-flagship {
    position: relative;
    border: 2px solid rgba(184, 0, 18, 0.3);
}

.product-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: rgba(184, 0, 18, 1);
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-tagline {
    color: rgba(184, 0, 18, 1);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.product-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.product-link:hover {
    color: rgba(184, 0, 18, 1);
}


/* ==============================================================
              PRODUCT PAGE LAYOUTS
================================================================= */
.product-intro {
    padding: 50px 0 0;
}

.product-problem {
    padding: 60px 0;
    background: rgba(242, 242, 242, 1);
}

.product-features-grid {
    padding: 50px 0 0;
}

.feature-item {
    text-align: center;
    padding: 15px 20px;
}

.feature-item .feature-icon {
    font-size: 2.5rem;
    color: rgba(184, 0, 18, 1);
    margin-bottom: 20px;
}

.feature-item h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.product-integrations {
    padding: 60px 0;
    background: rgba(21, 21, 21, 1);
}

.product-proof {
    padding: 60px 0;
}

.integration-logo {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.integration-logo img {
    max-height: 50px;
    width: auto;
}

.integration-logo span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.how-it-works {
    padding: 50px 0;
}

.how-it-works-step {
    text-align: center;
    padding: 30px;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: rgba(184, 0, 18, 1);
    color: #fff;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.related-products {
    padding: 60px 0;
    background: rgba(242, 242, 242, 1);
}


/* ==============================================================
              SOLUTION CARDS
================================================================= */
.solution-cards-row {
    display: flex;
    flex-wrap: wrap;
}

.solution-cards-row > .columns {
    display: flex;
}

.solution-card {
    background: #fff;
    padding: 40px;
    border: 1px solid rgba(21, 21, 21, 0.05);
    box-shadow: 0 5px 20px rgba(21, 21, 21, 0.08);
    margin-bottom: 30px;
    transition: all 300ms ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-card .solution-products {
    margin-top: auto;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(21, 21, 21, 0.15);
}

.solution-card .solution-icon {
    font-size: 3rem;
    color: rgba(184, 0, 18, 1);
    margin-bottom: 20px;
}

.solution-products {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(21, 21, 21, 0.1);
}

.solution-products h6 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(21, 21, 21, 0.6);
    margin-bottom: 10px;
}

.solution-product-tag {
    display: inline-block;
    background: rgba(242, 242, 242, 1);
    padding: 5px 12px;
    font-size: 0.8rem;
    margin-right: 8px;
    margin-bottom: 8px;
    border-radius: 3px;
    color: rgba(21, 21, 21, 0.8);
    text-decoration: none;
    transition: all 200ms ease;
}

a.solution-product-tag:hover {
    background: rgba(184, 0, 18, 1);
    color: #fff;
}


/* ==============================================================
              FOOTER ENHANCED
================================================================= */
.site-footer {
    background: rgba(21, 21, 21, 1);
    padding-top: 0;
}

.site-footer .footerWrapper {
    padding: 50px 15px 20px;
    margin: 0 auto;
    border-top: none;
    max-width: 75rem;
}

.site-footer .footer-content {
    margin: 0 auto;
}

.footer-col {
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
}

/* 3-column layout with Contact below on medium screens */
@media screen and (max-width: 1024px) {
    .site-footer .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        align-items: start;
    }

    .footer-col {
        width: 100% !important;
    }

    /* Row 1: Products, Solutions, Company */
    .footer-col:nth-child(1) { grid-column: 1; grid-row: 1; } /* Products */
    .footer-col:nth-child(2) { grid-column: 2; grid-row: 1; } /* Solutions */
    .footer-col:nth-child(3) { grid-column: 3; grid-row: 1; } /* Company */

    /* Row 2: Contact spans left columns */
    .footer-col:nth-child(4) { grid-column: 1 / 3; grid-row: 2; margin-top: 20px; } /* Contact */
}

/* Simplify footer on very narrow screens - show only Contact */
@media screen and (max-width: 580px) {
    .cta-banner {
        padding: 40px 15px 30px !important;
    }

    .site-footer {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .site-footer .footerWrapper {
        padding: 0 15px 10px !important;
    }

    .site-footer .footer-content {
        display: flex;
        flex-wrap: wrap;
    }

    .footer-col {
        width: 100% !important;
        margin-bottom: 20px;
    }

    /* Hide Products, Solutions, Company columns on mobile - no space */
    .footer-col:nth-child(1),
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        display: none !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    /* Only show Contact */
    .footer-col:nth-child(4) {
        display: block !important;
        margin-bottom: 0;
    }

    .footer-legal-row {
        margin-top: 15px;
        padding-top: 15px;
    }
}

.footer-heading {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: color 200ms ease;
}

.footer-links li a:hover {
    color: rgba(184, 0, 18, 1);
}

.footer-email {
    color: rgba(184, 0, 18, 1) !important;
    font-weight: 600;
    font-size: 0.875rem;
}

#footerInfo {
    margin: 0;
    float: none !important;
}

#footerInfo p {
    margin-bottom: 0;
}

.site-footer .footer-col:last-child {
    display: block;
}

.footer-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 0;
}

.footer-legal-row {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 25px;
    justify-content: center;
}

.footer-legal li {
    margin-bottom: 0;
}

.footer-copyright {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    margin-top: 0;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
    text-align: center;
}


/* ==============================================================
              FORMS ENHANCED
================================================================= */
.gdpr-consent-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: none;
    padding: 0;
    margin: 0;
}

.gdpr-consent-wrapper input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

/* When GDPR checkbox is invalid, turn label text and checkbox border red */
.gdpr-consent-wrapper input[type="checkbox"].is-invalid-input {
    outline: 2px solid #c60f13;
    outline-offset: -1px;
}

.gdpr-consent-wrapper input[type="checkbox"].is-invalid-input + .gdpr-consent {
    color: #c60f13;
}

.gdpr-consent {
    flex: 1;
    font-size: 0.875rem;
    color: rgba(21, 21, 21, 0.8);
}

.gdpr-consent a {
    color: rgba(184, 0, 18, 1);
    text-decoration: underline;
}

.product-checkboxes {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 20px;
}

.product-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(242, 242, 242, 1);
    padding: 8px 12px;
    font-size: 0.875rem;
    white-space: nowrap;
    border-radius: 3px;
    cursor: pointer;
    transition: all 200ms ease;
}

.product-checkbox:hover {
    background: rgba(184, 0, 18, 0.1);
}

.product-checkbox input[type="checkbox"] {
    margin: 0;
}

.demo-submit-btn {
    width: 100%;
    background: rgba(184, 0, 18, 1);
    color: #fff;
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.demo-submit-btn:hover {
    background: rgba(184, 0, 18, 0.85);
}

/* Form Success Message */
.form-success-message {
    padding: 40px 20px;
}

.form-success-message .success-icon {
    display: block;
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.form-success-message h2 {
    margin-bottom: 10px;
}

.form-success-message h4 {
    font-weight: 400;
    margin-bottom: 20px;
}

.success-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.what-happens-next {
    background: rgba(242, 242, 242, 1);
    padding: 40px 20px;
    margin-top: 40px;
}

.what-happens-next .title {
    margin-bottom: 30px;
}

.next-step {
    text-align: center;
    padding: 20px;
}

.next-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    background: rgba(184, 0, 18, 1);
    border-radius: 50%;
    margin-bottom: 15px;
}

.next-step h5 {
    margin-bottom: 10px;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 35px;
}


/* ==============================================================
              PAGE-SPECIFIC STYLES
================================================================= */

/* About Page */
.about-values {
    padding: 60px 0 10px;
}

.value-item {
    text-align: center;
    padding: 30px;
    min-width: 220px;
    flex: 1 1 0;
}

.value-item h5 {
    white-space: nowrap;
}

@media screen and (max-width: 1280px) {
    .value-item h5 {
        white-space: normal;
    }
}

.value-icon {
    font-size: 2.5rem;
    color: rgba(184, 0, 18, 1);
    margin-bottom: 20px;
}

.timeline-section {
    padding: 10px 0 60px;
    background: rgba(242, 242, 242, 1);
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
    border-left: 2px solid rgba(184, 0, 18, 0.3);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 14px;
    height: 14px;
    background: rgba(184, 0, 18, 1);
    border-radius: 50%;
}

.timeline-year {
    font-weight: 700;
    color: rgba(184, 0, 18, 1);
    font-size: 1.125rem;
    margin-bottom: 5px;
}

.location-map {
    height: 350px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(21, 21, 21, 0.08);
}

.location-map iframe {
    display: block;
}

/* Clients Page */
.featured-clients {
    padding: 60px 0;
}

.featured-client {
    text-align: center;
    padding: 40px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(21, 21, 21, 0.08);
    margin-bottom: 30px;
}

.featured-client img {
    max-height: 80px;
    width: auto;
}

/* Contact Page */
.contact-info-section {
    padding: 60px 0;
    background: rgba(242, 242, 242, 1);
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-map {
    height: 400px;
    overflow: hidden;
}

.contact-map #map {
    min-height: 400px;
    height: 100%;
}

/* Thank You Page */
.thank-you-content {
    text-align: center;
    padding: 100px 0;
}

.thank-you-icon {
    font-size: 4rem;
    color: rgba(184, 0, 18, 1);
    margin-bottom: 30px;
}

/* 404 Page */
.error-404 {
    text-align: center;
    padding: 100px 0;
}

.error-404 h1 {
    font-size: 6rem;
    color: rgba(184, 0, 18, 1);
    margin-bottom: 20px;
}


/* ==============================================================
              TRUST BAR (HOMEPAGE)
================================================================= */
.trust-bar {
    position: relative;
    z-index: 1;
    clear: both;
    padding: 40px 0;
    padding-top: 100px; /* Account for introBox overlap */
    background: rgba(242, 242, 242, 1);
    text-align: center;
}

@media screen and (max-width: 1023px) {
    .trust-bar {
        padding-top: 40px;
    }
}

.trust-bar-text {
    font-size: 0.9rem;
    color: rgba(21, 21, 21, 0.7);
    margin-bottom: 20px;
}

.trust-bar-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-bar-logos img {
    max-height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 200ms ease;
}

.trust-bar-logos img:hover {
    opacity: 1;
}


/* ==============================================================
              MOBILE MENU
================================================================= */
@media screen and (max-width: 1023px) {
    .menuInline {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(21, 21, 21, 0.98);
        padding: 20px 25px;
        overflow-y: auto;
    }

    .menuInline.mobile-open {
        display: block;
    }

    .menuInline ul {
        display: block;
    }

    .menuInline ul li {
        display: block;
        margin-bottom: 8px;
    }

    .menuInline ul li a {
        color: #fff;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }

    .nav-dropdown-menu {
        position: static;
        display: block;
        background: transparent;
        box-shadow: none;
        padding-left: 15px;
        margin-top: 5px;
    }

    .nav-dropdown-menu li {
        margin-bottom: 5px;
    }

    .nav-dropdown-menu li a {
        font-size: 0.875rem;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
    }

    .nav-cta .button-cta {
        padding: 12px 25px;
        font-size: 0.85rem;
    }

    .button-cta {
        display: block;
        text-align: center;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button-col {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        display: block;
        margin-bottom: 15px;
        margin-right: 0;
        text-align: center;
    }
}

@media screen and (max-width: 639px) {
    .footer-col {
        margin-bottom: 30px;
    }

    .trust-badges {
        justify-content: flex-start;
        gap: 20px;
    }
}


/* ==============================================================
              FORM MESSAGES
================================================================= */
#form-messages {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: none;
}

#form-messages.successMsg {
    display: block;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #27ae60;
}

#form-messages.errorMsg {
    display: block;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #c0392b;
}


/* ==============================================================
              HERO SMALL VARIANT
================================================================= */
.hero-static-small {
    min-height: 250px;
}

.hero-static-small .hero-static-overlay {
    padding: 60px 0;
}


/* ==============================================================
              LEGAL PAGES
================================================================= */
#privacy-policy .mainWrapper h3,
#terms .mainWrapper h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

#privacy-policy .mainWrapper h4,
#terms .mainWrapper h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

#privacy-policy .mainWrapper ul,
#terms .mainWrapper ul {
    margin-bottom: 1.5rem;
}

#privacy-policy .mainWrapper ul li,
#terms .mainWrapper ul li {
    margin-bottom: 0.5rem;
}
