/* ========================================
   Fixed Income Page Styles (fixed-income.css)
   All styles prefixed with 'fi-' to avoid conflicts
   ======================================== */

/* Fixed Income Hero Section with Video Background */
.fi-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 96px 0;
    overflow: hidden;
}

.fi-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.fi-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.fi-hero .container {
    position: relative;
    z-index: 2;
}

.fi-hero-content {
    max-width: 700px;
    color: #fff;
}

.fi-hero-title {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 16px;
    color: #fff;
}

.fi-hero-subtitle {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
}

.fi-hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #fff;
    opacity: 0.95;
}

.fi-hero-description strong {
    color: #00c853;
    font-weight: 700;
}

/* Fixed Income Program Section */
.fi-program-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.fi-program-header {
    margin-bottom: 48px;
}

.fi-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.fi-section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

.fi-bond-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.fi-bond-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.fi-bond-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.fi-new-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.fi-coming-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.fi-bond-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3d5afe 0%, #5c6bc0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: #fff;
}

.fi-bond-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.fi-bond-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
}

.fi-bond-minimum {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
    margin-top: 16px;
}

.fi-bond-minimum.fi-highlight {
    color: #00c853;
    font-size: 18px;
}

/* Fixed Income Advantages Section */
.fi-advantages-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
}

.fi-advantages-header {
    margin-bottom: 48px;
}

.fi-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.fi-advantage-item {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.fi-advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.fi-advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3d5afe 0%, #5c6bc0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    color: #fff;
}

.fi-advantage-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.fi-advantage-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* Fractional Bonds Section */
.fi-fractional-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.fi-fractional-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.fi-fractional-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.fi-fractional-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.fi-fractional-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 24px;
}

.fi-fractional-description strong {
    color: #00c853;
    font-weight: 700;
}

.fi-fractional-highlight {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
    border-radius: 12px;
}

.fi-highlight-item {
    flex: 1;
    text-align: center;
}

.fi-highlight-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.fi-highlight-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.fi-highlight-value.fi-green {
    color: #00c853;
}

.fi-highlight-arrow {
    font-size: 24px;
    color: #3d5afe;
}

/* Corporate Bonds Section */
.fi-corporate-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.fi-corporate-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.fi-corporate-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 24px;
}

.fi-corporate-benefits {
    list-style: none;
    padding: 0;
    margin-top: 32px;
}

.fi-corporate-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #1a1a1a;
}

.fi-corporate-benefits i {
    color: #00c853;
    font-size: 20px;
}

.fi-corporate-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Municipal Bonds Section */
.fi-municipal-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.fi-municipal-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.fi-municipal-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.fi-municipal-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.fi-municipal-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 24px;
}

.fi-municipal-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.fi-feature-box {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.fi-feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.fi-feature-box i {
    font-size: 32px;
    color: #3d5afe;
    margin-bottom: 12px;
}

.fi-feature-box h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

/* Explore More Products Section */
.fi-explore-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
}

.fi-explore-header {
    margin-bottom: 48px;
}

.fi-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.fi-product-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.fi-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.fi-product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3d5afe 0%, #5c6bc0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: #fff;
}

.fi-product-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.fi-product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #3d5afe;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fi-product-link:hover {
    color: #2c44d8;
    gap: 10px;
}

/* FAQ Tabs */
.fi-faq-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.fi-faq-tab {
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fi-faq-tab:hover {
    border-color: #3d5afe;
    color: #3d5afe;
}

.fi-faq-tab.active {
    background: #3d5afe;
    border-color: #3d5afe;
    color: #fff;
}

/* Responsive Styles for Fixed Income Page */
@media (max-width: 1200px) {
    .fi-bond-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fi-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .fi-hero-title {
        font-size: 48px;
    }

    .fi-hero-subtitle {
        font-size: 24px;
    }

    .fi-section-title {
        font-size: 32px;
    }

    .fi-advantages-grid {
        grid-template-columns: 1fr;
    }

    .fi-fractional-wrapper,
    .fi-corporate-wrapper,
    .fi-municipal-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .fi-fractional-image,
    .fi-corporate-image,
    .fi-municipal-image {
        text-align: center;
    }

    .fi-bond-types-grid {
        grid-template-columns: 1fr;
    }

    .fi-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fi-municipal-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .fi-hero {
        min-height: 100vh;
        padding: 64px 0;
    }

    .fi-hero-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .fi-hero-subtitle {
        font-size: 20px;
    }

    .fi-hero-description {
        font-size: 16px;
    }

    .fi-section-title {
        font-size: 28px;
    }

    .fi-fractional-title,
    .fi-corporate-title,
    .fi-municipal-title {
        font-size: 28px;
    }

    .fi-fractional-highlight {
        flex-direction: column;
        gap: 16px;
    }

    .fi-highlight-arrow {
        transform: rotate(90deg);
    }

    .fi-products-grid {
        grid-template-columns: 1fr;
    }

    .fi-faq-tabs {
        flex-direction: column;
    }

    .fi-faq-tab {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .fi-hero-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .fi-hero-subtitle {
        font-size: 18px;
    }

    .fi-section-title {
        font-size: 24px;
    }

    .fi-bond-card,
    .fi-advantage-item,
    .fi-product-card {
        padding: 24px;
    }

    .fi-fractional-title,
    .fi-corporate-title,
    .fi-municipal-title {
        font-size: 24px;
    }

    .fi-highlight-value {
        font-size: 24px;
    }
}

