/* Custom styles for page ID 28 - FOOD.BODY.LIFE */

/* ===== Hero Section ===== */
.fbl-hero {
    background: #ffffff;
    padding: 4rem 2rem 3rem;
}

.fbl-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.fbl-hero__text {
    padding-right: 2rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(233, 30, 99, 0.12);
    color: #be185d;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.fbl-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

.fbl-hero__subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.fbl-hero__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fbl-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #1e293b;
}

.fbl-feature i {
    color: #e91e63;
    font-size: 1.25rem;
}

.fbl-hero__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
}

.fbl-hero__image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fbl-hero__image:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
}

.fbl-hero__image--1 {
    margin-top: 2rem;
}

.fbl-hero__image--2 {
    margin-bottom: 2rem;
}

.fbl-hero__image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* ===== Contact Section ===== */
.fbl-contact-section {
    width: 100%;
    background: linear-gradient(135deg, #fdf2f8 0%, #ffffff 100%);
    padding: 4rem 2rem;
    border-top: 1px solid #e5e7eb;
}

.fbl-contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
}

.fbl-contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(233, 30, 99, 0.15);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(233, 30, 99, 0.08);
}

.fbl-card-icon {
    width: 56px;
    height: 56px;
    background: transparent;
    border: 2px solid #e91e63;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.fbl-card-icon i {
    color: #e91e63;
    font-size: 1.5rem;
}

.fbl-contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1.5rem 0;
}

.fbl-contact-info p {
    margin: 0.5rem 0;
    color: #64748b;
    line-height: 1.6;
}

.fbl-contact-info strong {
    color: #1e293b;
}

.fbl-info-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fbl-info-row i {
    color: #e91e63;
    font-size: 0.875rem;
}

.fbl-info-row a {
    color: #be185d;
    text-decoration: none;
    transition: color 0.2s;
}

.fbl-info-row a:hover {
    color: #9d174d;
    text-decoration: underline;
}

.fbl-quick-info {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #e5e7eb;
}

.fbl-quick-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1.5rem 0;
    position: relative;
    padding-bottom: 1rem;
}

.fbl-quick-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #e91e63;
    border-radius: 2px;
}

.fbl-quick-info p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.fbl-principles {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.fbl-principles h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1rem 0;
}

.fbl-principle-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.fbl-principle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(233, 30, 99, 0.06);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fbl-principle:hover {
    background: rgba(233, 30, 99, 0.12);
    transform: translateX(4px);
}

.fbl-principle i {
    color: #e91e63;
    font-size: 1.25rem;
}

.fbl-principle span {
    font-weight: 600;
    color: #1e293b;
}

/* ===== Target Section ===== */
.fbl-target-section {
    background: white;
    padding: 5rem 2rem;
}

.fbl-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.fbl-section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 1rem 0;
    position: relative;
    display: inline-block;
}

.fbl-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #e91e63;
    border-radius: 2px;
}

.fbl-section-header p {
    font-size: 1.125rem;
    color: #64748b;
    margin-top: 1.5rem;
}

.fbl-target-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.fbl-target-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fbl-target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #e91e63;
    opacity: 0;
    transition: opacity 0.3s;
}

.fbl-target-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(233, 30, 99, 0.15);
    border-color: rgba(233, 30, 99, 0.35);
}

.fbl-target-card:hover::before {
    opacity: 1;
}

.fbl-target-card i {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 1rem;
}

.fbl-target-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.75rem 0;
}

.fbl-target-card p {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== Advisory Section with Tabs ===== */
.fbl-advisory-section {
    width: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 5rem 2rem;
    border-top: 1px solid #e5e7eb;
}

.fbl-tabs {
    max-width: 1400px;
    margin: 0 auto;
}

.fbl-tabs__nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid #e5e7eb;
    flex-wrap: wrap;
}

.fbl-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #64748b;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
}

.fbl-tab-btn i {
    font-size: 1.25rem;
}

.fbl-tab-btn:hover {
    color: #be185d;
    background: rgba(233, 30, 99, 0.05);
}

.fbl-tab-btn.active {
    color: #be185d;
    border-bottom-color: #e91e63;
    background: rgba(233, 30, 99, 0.05);
}

.fbl-tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.fbl-tab-panel.active {
    display: block;
}

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

/* Topics Grid */
.fbl-topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.fbl-topic-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.25rem;
}

.fbl-topic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.12);
    border-color: rgba(233, 30, 99, 0.35);
}

.fbl-topic-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 2px solid #f3d3e1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.fbl-topic-card:hover .fbl-topic-icon {
    border-color: #e91e63;
}

.fbl-topic-icon i {
    color: #e91e63;
    font-size: 1.4rem;
}

.fbl-topic-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
}

.fbl-topic-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Levels */
.fbl-levels {
    display: grid;
    gap: 1.5rem;
}

.fbl-level-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.fbl-level-card:hover {
    border-color: rgba(233, 30, 99, 0.35);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.12);
}

.fbl-level-number {
    width: 56px;
    height: 56px;
    background: transparent;
    border: 2px solid #e91e63;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: #e91e63;
    flex-shrink: 0;
}

.fbl-level-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.75rem 0;
}

.fbl-level-content p {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* Methods */
.fbl-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.fbl-method-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.fbl-method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.12);
    border-color: rgba(233, 30, 99, 0.35);
}

.fbl-method-card i {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 1rem;
}

.fbl-method-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.75rem 0;
}

.fbl-method-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ===== CTA Section ===== */
.fbl-cta-section {
    background: white;
    padding: 5rem 2rem;
}

.fbl-cta-card {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #be185d 0%, #9d174d 100%);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    box-shadow: 0 20px 60px rgba(190, 24, 93, 0.35);
}

.fbl-cta-content {
    padding: 4rem;
    color: white;
}

.fbl-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    color: white;
}

.fbl-cta-content > p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.92);
}

.fbl-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.fbl-cta-buttons .btn-primary,
.fbl-cta-buttons .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fbl-cta-buttons .btn-primary {
    background: white;
    color: #be185d;
    border: 2px solid white;
}

.fbl-cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.fbl-cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.55);
}

.fbl-cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.fbl-cta-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
}

.fbl-cta-note i {
    font-size: 1.125rem;
}

.fbl-cta-image {
    position: relative;
    overflow: hidden;
}

.fbl-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .fbl-hero__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .fbl-hero__title {
        font-size: 2.5rem;
    }

    .fbl-hero__images {
        max-width: 500px;
        margin: 0 auto;
    }

    .fbl-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .fbl-target-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fbl-topics-grid {
        grid-template-columns: 1fr;
    }

    .fbl-cta-card {
        grid-template-columns: 1fr;
    }

    .fbl-cta-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .fbl-hero {
        padding: 3rem 1.5rem;
    }

    .fbl-hero__title {
        font-size: 2rem;
    }

    .fbl-hero__subtitle {
        font-size: 1.125rem;
    }

    .fbl-hero__images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .fbl-hero__image--1,
    .fbl-hero__image--2 {
        margin: 0;
    }

    .fbl-section-header h2 {
        font-size: 2rem;
    }

    .fbl-target-grid {
        grid-template-columns: 1fr;
    }

    .fbl-tabs__nav {
        flex-direction: column;
        gap: 0.5rem;
        border-bottom: none;
    }

    .fbl-tab-btn {
        border-bottom: none;
        border-left: 3px solid transparent;
        justify-content: flex-start;
    }

    .fbl-tab-btn.active {
        border-left-color: #e91e63;
        border-bottom-color: transparent;
    }

    .fbl-methods {
        grid-template-columns: 1fr;
    }

    .fbl-level-card {
        flex-direction: column;
        gap: 1rem;
    }

    .fbl-cta-content {
        padding: 2.5rem 1.5rem;
    }

    .fbl-cta-content h2 {
        font-size: 2rem;
    }

    .fbl-cta-buttons {
        flex-direction: column;
    }

    .fbl-cta-buttons .btn-primary,
    .fbl-cta-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .fbl-principle-items {
        grid-template-columns: 1fr;
    }
}
