/* ===== FOLEYBRIDGE SOFTWARE - SUPPLEMENTAL STYLESHEET ===== */
/* Extends the shared style.css with software-site-specific styles */

/* =========================== */
/* HERO (DARK VARIANT)         */
/* =========================== */
.hero-dark {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 5rem 0 4rem;
    position: relative;
}

.hero-dark h1,
.hero-dark h2,
.hero-dark h3,
.hero-dark h4,
.hero-dark h5 {
    color: var(--white);
}

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

.hero-dark .breadcrumb-nav .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.hero-dark .breadcrumb-nav .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.hero-dark .breadcrumb-nav .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

.hero-dark .breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* =========================== */
/* CTA SECTION                 */
/* =========================== */
.cta-section {
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 4rem 0;
}

.cta-section h2,
.cta-section h3 {
    color: var(--white);
}

/* =========================== */
/* PRODUCT CARDS               */
/* =========================== */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* =========================== */
/* FEATURE LISTS               */
/* =========================== */
.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    width: 24px;
    text-align: center;
}

/* =========================== */
/* ICON BOXES                  */
/* =========================== */
.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* =========================== */
/* HOVER LIFT                  */
/* =========================== */
.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* =========================== */
/* UTILITY CLASSES             */
/* =========================== */
.text-navy {
    color: var(--navy) !important;
}

.top-bar-left {
    display: flex;
    align-items: center;
    color: var(--gray-300);
    font-size: 0.85rem;
}

.utility-label {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
    transition: background 0.2s ease, color 0.2s ease;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--white);
}

.navbar-logo {
    transition: opacity 0.2s ease;
}

.navbar-logo:hover {
    opacity: 0.85;
}

/* =========================== */
/* RESPONSIVE                  */
/* =========================== */
@media (max-width: 767.98px) {
    .hero-dark {
        padding: 3rem 0 2.5rem;
    }

    .hero-dark .display-4 {
        font-size: 2rem;
    }

    .hero-dark .display-5 {
        font-size: 1.75rem;
    }

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

    .top-bar-left {
        font-size: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .hero-dark {
        padding: 2.5rem 0 2rem;
    }

    .card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .icon-box {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
}

/* =========================== */
/* DARK MODE OVERRIDES         */
/* =========================== */
@media (prefers-color-scheme: dark) {
    .hero-dark {
        background: linear-gradient(135deg, var(--gray-900) 0%, #0c1929 100%);
    }

    .cta-section {
        background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    }

    .product-card {
        background: var(--gray-800);
    }

    .feature-list li {
        border-color: var(--gray-700);
        color: var(--gray-300);
    }

    .bg-white {
        background: var(--gray-900) !important;
    }

    .bg-light {
        background: var(--gray-800) !important;
    }
}
