/**
 * Trust Flow Finance - Landing Page Stylesheet
 * Premium Gold & Deep Charcoal Dark Theme
 */

:root {
    --gold: #9C1D26;
    --gold-accent: #ff9e1b;
    --gold-rgb: 156, 29, 38;
    --bg-deep: #f4f6f9;
    --bg-panel: #ffffff;
    --bg-card: #ffffff;
    --text-light: #1e293b;
    --text-muted: #64748b;
    --border-glow: rgba(156, 29, 38, 0.08);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets for landing page */
body.landing-page {
    background-color: var(--bg-deep);
    color: var(--text-light);
    font-family: var(--font-body);
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(245, 197, 66, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(255, 184, 0, 0.03) 0%, transparent 45%);
}

/* High-contrast readability overrides for light theme */
body.landing-page .text-muted {
    color: #64748b !important;
}
body.landing-page .text-secondary {
    color: #475569 !important;
}

/* Glassmorphism Header */
.navbar-premium {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(156, 29, 38, 0.08);
    transition: var(--transition-smooth);
    padding: 15px 0;
}
.navbar-premium.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(156, 29, 38, 0.05);
}
.navbar-brand-premium {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-brand-premium img {
    height: 40px;
    filter: drop-shadow(0 2px 8px rgba(156, 29, 38, 0.15));
}
.navbar-brand-premium span {
    color: var(--gold);
}
.nav-link-premium {
    font-weight: 500;
    color: var(--text-muted) !important;
    transition: var(--transition-smooth);
    position: relative;
    padding: 8px 16px !important;
}
.nav-link-premium:hover, .nav-link-premium.active {
    color: var(--gold) !important;
}
.nav-link-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}
.nav-link-premium:hover::after, .nav-link-premium.active::after {
    width: 60%;
}

/* Buttons */
.btn-gold-premium {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-family: var(--font-heading);
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(245, 197, 66, 0.25);
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}
.btn-gold-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 197, 66, 0.4);
    background: linear-gradient(135deg, var(--gold-accent) 0%, #ffc633 100%);
}
.btn-outline-premium {
    background: transparent;
    color: var(--text-light) !important;
    font-weight: 600;
    border: 1px solid rgba(245, 197, 66, 0.3);
    padding: 11px 27px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}
.btn-outline-premium:hover {
    border-color: var(--gold);
    background: rgba(245, 197, 66, 0.05);
    color: var(--gold) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 90px 0 0 0;
    position: relative;
}
.hero-badge {
    background: rgba(245, 197, 66, 0.08);
    border: 1px solid var(--border-glow);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}
.hero-title span {
    background: linear-gradient(135deg, #fff 30%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-desc {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 580px;
}
.hero-logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-logo-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(245, 197, 66, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(10px);
}
.hero-logo-img {
    position: relative;
    z-index: 2;
    max-width: 420px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 30px rgba(245, 197, 66, 0.1);
    animation: floatLogo 6s ease-in-out infinite;
    border: 1px solid rgba(245, 197, 66, 0.15);
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* Cards & Content */
.section-title-premium {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 38px;
    text-align: center;
    margin-bottom: 15px;
}
.section-title-premium span {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-subtitle-premium {
    color: var(--text-muted);
    text-align: center;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.card-premium {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 197, 66, 0.1);
    border-radius: 16px;
    padding: 35px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
/* Stretch cards only in product grids or when explicitly requested */
.products-section .card-premium,
.card-premium.h-100 {
    height: 100%;
}
.card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 197, 66, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 20px rgba(245, 197, 66, 0.05);
}
.card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}
.card-premium:hover::before {
    transform: scaleX(1);
}

.card-icon-wrapper {
    width: 65px;
    height: 65px;
    background: rgba(156, 29, 38, 0.06);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 26px;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}
.card-premium:hover .card-icon-wrapper {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(156, 29, 38, 0.2);
}

/* Business Details Section */
.details-section {
    padding: 100px 0;
    position: relative;
}
.detail-item-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: var(--transition-smooth);
}
.detail-item-card:hover {
    border-color: rgba(156, 29, 38, 0.15);
    background: rgba(156, 29, 38, 0.01);
}
.detail-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(156, 29, 38, 0.06);
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
}
.detail-item-info h5 {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.detail-item-info p {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

/* Interactive Loan Calculator */
.calculator-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(245, 197, 66, 0.02), transparent);
}
.calc-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}
.calc-slider-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-light);
}
.calc-slider-value {
    color: var(--gold);
    font-weight: 700;
    font-family: var(--font-heading);
}
.calc-range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #e2e8f0;
    outline: none;
    margin-bottom: 35px;
}
.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(156, 29, 38, 0.3);
    transition: var(--transition-smooth);
}
.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.25);
    box-shadow: 0 0 15px rgba(156, 29, 38, 0.5);
}
.calc-summary-panel {
    background: rgba(156, 29, 38, 0.03);
    border: 1px solid rgba(156, 29, 38, 0.1);
    border-radius: 16px;
    padding: 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.calc-summary-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(156,29,38,0.15);
    padding-bottom: 10px;
}
.calc-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
}
.calc-summary-item:last-child {
    margin-bottom: 0;
    border-top: 1px dashed rgba(156,29,38,0.2);
    padding-top: 15px;
}
.calc-summary-item .label {
    color: var(--text-muted);
}
.calc-summary-item .val {
    font-weight: 600;
    color: var(--text-light);
}
.calc-summary-item.total-repayment .val {
    color: var(--gold);
    font-size: 20px;
    font-weight: 700;
}
.calc-emi-display {
    text-align: center;
    margin-bottom: 25px;
}
.calc-emi-amt {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(156, 29, 38, 0.15);
}
.calc-emi-lbl {
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Us & Forms */
.contact-section {
    padding: 100px 0;
}
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}
.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.contact-info-list li i {
    color: var(--gold);
    font-size: 18px;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: rgba(156,29,38,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(156,29,38,0.1);
}
.contact-form-premium .form-control-premium {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: var(--text-light) !important;
    padding: 12px 18px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}
.contact-form-premium .form-control-premium:focus {
    background: #ffffff;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(156, 29, 38, 0.15);
    color: var(--text-light) !important;
    outline: none;
}
/* Placeholder text styling for high readability */
.contact-form-premium .form-control-premium::placeholder {
    color: #94a3b8 !important;
    opacity: 1; /* Firefox */
}
/* Webkit Browsers */
.contact-form-premium .form-control-premium::-webkit-input-placeholder {
    color: #94a3b8 !important;
}
/* Firefox */
.contact-form-premium .form-control-premium::-moz-placeholder {
    color: #94a3b8 !important;
    opacity: 1;
}
/* Select dropdown options styling for contrast */
.contact-form-premium select.form-control-premium option {
    background-color: #ffffff !important;
    color: var(--text-light) !important;
}
.contact-form-premium textarea.form-control-premium {
    min-height: 120px;
}
.contact-form-premium label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

/* Footer */
.footer-premium {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 80px 0 30px 0;
    font-size: 14px;
}
.footer-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 20px 0;
    max-width: 320px;
}
.footer-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--text-muted);
    transition: var(--transition-smooth);
}
.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}
.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(156,29,38,0.03);
    border: 1px solid rgba(156,29,38,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}
.footer-socials a:hover {
    background: var(--gold);
    color: #ffffff;
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid #e2e8f0;
    margin-top: 50px;
    padding-top: 25px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

/* Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Multi-Step Wizard Styling */
.wizard-container {
    padding: 140px 0 100px 0;
    min-height: 100vh;
}
.wizard-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.02), 0 0 30px rgba(156, 29, 38, 0.02);
}
.wizard-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.wizard-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e2e8f0;
    z-index: 1;
}
.wizard-progress-bar {
    position: absolute;
    top: 20px;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-accent) 100%);
    z-index: 2;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}
.wizard-step-node {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
    width: 80px;
}
.wizard-step-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s ease;
}
.wizard-step-node.active .wizard-step-circle {
    border-color: var(--gold);
    color: #ffffff;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%);
    box-shadow: 0 4px 12px rgba(156, 29, 38, 0.3);
}
.wizard-step-node.completed .wizard-step-circle {
    border-color: var(--gold-accent);
    color: #ffffff;
    background: var(--gold);
}
.wizard-step-label {
    margin-top: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    transition: all 0.4s ease;
    text-align: center;
}
.wizard-step-node.active .wizard-step-label {
    color: var(--gold);
}
.wizard-step-node.completed .wizard-step-label {
    color: var(--text-light);
}

/* Wizard Panes */
.wizard-pane {
    display: none;
    animation: fadeInPane 0.4s ease-out forwards;
}
.wizard-pane.active {
    display: block;
}

@keyframes fadeInPane {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Summary board inside review step */
.review-summary-box {
    background: rgba(0, 0, 0, 0.01);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 25px;
    margin-bottom: 25px;
}
.review-summary-title {
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    border-bottom: 1px dashed rgba(156, 29, 38, 0.15);
    padding-bottom: 8px;
}

/* Custom File Upload Styling for Step 4 */
.custom-file-upload-wrapper {
    background: rgba(156, 29, 38, 0.01);
    border: 1px dashed rgba(156, 29, 38, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
}
.custom-file-upload-wrapper:hover {
    border-color: var(--gold);
    background: rgba(156, 29, 38, 0.04);
}
.custom-file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.custom-file-icon {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}
.custom-file-upload-wrapper:hover .custom-file-icon {
    transform: scale(1.15);
}
.file-uploaded-name {
    margin-top: 5px;
    font-size: 12px;
    color: #2ecc71;
    font-weight: 600;
    display: none;
}

/* ==========================================================================
   IDFC First Theme Additions (Hero, Calculator, & Blogs)
   ========================================================================== */

/* Category scroll container utility */
.category-nav-scroll-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.category-nav-scroll-wrapper::-webkit-scrollbar {
    display: none;
}
.category-nav-scroll-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hero Carousel styles */
.hero-section .carousel-item {
    min-height: 580px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}
.hero-text-col {
    padding-right: 40px;
}
.hero-section .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #64748b;
    margin: 0 6px;
    border: none;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.hero-section .carousel-indicators button.active {
    width: 25px;
    border-radius: 10px;
    background-color: #9C1D26;
    opacity: 1;
}

/* Product Category pills */
.category-nav-pills .nav-link {
    color: #475569 !important;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    transition: all 0.3s ease;
}
.category-nav-pills .nav-link:hover,
.category-nav-pills .nav-link.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%) !important;
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(156, 29, 38, 0.2);
}

/* Maroon Calculator custom elements */
.text-maroon {
    color: #9C1D26 !important;
}
#calcProductTabs {
    background-color: #f1f5f9;
    padding: 5px;
}
#calcProductTabs .nav-link {
    color: #475569 !important;
    border: none !important;
    background: transparent !important;
    border-radius: 6px !important;
    padding: 8px 16px !important;
}
#calcProductTabs .nav-link.active {
    background-color: #ffffff !important;
    color: #9C1D26 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.calc-slider {
    background: #e2e8f0 !important;
    height: 6px !important;
    border-radius: 10px;
}
.calc-slider::-webkit-slider-thumb {
    background: #9C1D26 !important;
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 2px 6px rgba(156, 29, 38, 0.4) !important;
    transition: transform 0.2s ease;
}
.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2) !important;
}

/* Blog styles */
.blog-card {
    border: 1px solid #edf2f7 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.blog-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06) !important;
}
.blog-card:hover .blog-card-img {
    transform: scale(1.04);
}
.blog-title:hover {
    color: #9C1D26 !important;
}
.btn-blog-filter {
    background: transparent;
    color: #475569;
    border: none;
    transition: all 0.3s ease;
}
.btn-blog-filter.active,
.btn-blog-filter:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(156, 29, 38, 0.15);
}

/* Modal text elements styling */
.article-rich-content p {
    margin-bottom: 1.5rem;
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
}
.article-rich-content h3 {
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1e293b;
    font-size: 20px;
}
.article-rich-content ul, .article-rich-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.article-rich-content li {
    margin-bottom: 0.5rem;
    color: #334155;
}

/* Explicit overrides to fix white text issues on contact and business hours */
body.landing-page .contact-info-list li h6 {
    color: #1e293b !important;
}
body.landing-page .contact-info-list li span {
    color: #64748b !important;
}
body.landing-page .card-premium span.text-dark {
    color: #1e293b !important;
}


