/* Lume Financial - only styles Bootstrap can't handle */

/* Brand colour utility */
.text-lume-navy { color: #1a365d; }

/* Section icon badges */
.lume-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #dce4f0, #c3d0e5);
    color: #1a365d;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Subsection icon badges (gold) */
.lume-sub-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f7ecd6, #edd9b3);
    color: #8b6914;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Pull-quote cards */
.lume-quote {
    position: relative;
    font-weight: bold;
    font-style: italic;
    padding: 1rem 1.25rem 1rem 3.25rem;
    margin: 1.25rem 0;
    background: linear-gradient(135deg, #fefcf7, #faf5eb);
    border: 1px solid #f0e8d8;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.lume-quote::before {
    content: "\201C";
    font-family: Georgia, serif;
    position: absolute;
    left: 0.65rem;
    top: 0.25rem;
    font-size: 3rem;
    color: #b68d40;
    opacity: 0.3;
    line-height: 1;
    font-style: normal;
}

/* Quote cards (light yellow bg) */
.lume-quote-card {
    background: #faf5eb !important;
    border-color: #f0e8d8;
}

.lume-quote-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f7ecd6, #edd9b3);
    color: #8b6914;
    font-size: 1.5rem;
}

/* Service cards hover */
.lume-service-card {
    background-color: #f0f4fa;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.lume-service-card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(26, 54, 93, 0.15) !important;
    transform: translateY(-4px);
}

/* Service card icon circles */
.lume-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #dce4f0, #c3d0e5);
    color: #1a365d;
    font-size: 1.5rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.lume-service-card:hover .lume-service-icon {
    background: linear-gradient(135deg, #1a365d, #2a4a7f);
    color: #ffffff;
}

/* Decorative divider */
.lume-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #c3d0e5;
}

.lume-divider::before,
.lume-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c3d0e5, transparent);
}

.lume-divider i {
    color: #b68d40;
}

/* CTA section */
.lume-cta {
    background: linear-gradient(135deg, #1a365d, #2a4a7f);
    border-radius: 12px;
}

.lume-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #b68d40, #d4a84b);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(182, 141, 64, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.lume-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(182, 141, 64, 0.45);
    color: #ffffff;
    text-decoration: none;
}

/* Remove footer top margin on this page only (lume.css only loads here) */
footer {
    margin-top: 0 !important;
}

/* Responsive quote tweak */
@media (max-width: 767.98px) {
    .lume-quote {
        font-size: 1.05rem;
        padding-left: 2.75rem;
    }
    .lume-quote::before {
        font-size: 2.5rem;
        left: 0.4rem;
    }
}
