/* Homepage v2 styles */
.homepage-v2 {
    background: #063B88;
    color: #FFFFFF;
    font-family: var(--bs-body-font-family, 'Plus Jakarta Sans', sans-serif);
}

/* Hero Section */
.hero-section {
    background: #063B88;
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: var(--bs-sec-font-family, 'Outfit', sans-serif);
}

.hero-tagline {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 32px;
    line-height: 1.6;
    opacity: 0.95;
}

.btn-hero-cta {
    background: #FFFFFF;
    color: #16A34A;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #16A34A;
}

.hero-illustration {
    position: relative;
    display: flex;
    align-items: start;
    justify-content: center;
    min-height: 420px;
}

.hero-robot {
    z-index: 2;
    position: relative;
}

.hero-robot svg,
.hero-robot img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.hero-earnings-bubbles {
    position: absolute;
    left: 35%;
    bottom: -35%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 3;
}

.earnings-bubble {
    border: solid 1px #009E61;
    color: white;
    padding: 14px 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.earnings-bubble:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.bubble-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.bubble-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bubble-content strong {
    font-size: 0.95rem;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.bubble-content span {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.2;
}

.earnings-bubble-1 {
    margin-right: 20px;
}

.earnings-bubble-2 {
    margin-right: 10px;
}

.earnings-bubble-3 {
    margin-right: 0;
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-illustration {
        margin-top: 40px;
        min-height: 320px;
        flex-direction: column;
        gap: 24px;
    }
    
    .hero-earnings-bubbles {
        position: relative;
        transform: none;
        margin-top: 10px;
        left: auto;
        bottom: auto;
        width: 100%;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .btn-hero-cta {
        display: block;
        text-align: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-robot svg {
        width: 250px;
        height: auto;
    }
    .hero-robot img {
        width: 230px;
        height: auto;
    }
    
    .earnings-bubble {
        min-width: auto;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-earnings-bubbles {
        gap: 12px;
    }

    .bubble-content strong,
    .bubble-content span {
        width: 100%;
    }
}

/* CTA Cards Section */
.cta-cards-section {
    color: #ffffff;
    background: #FFFFFF;
    padding: 80px 0;
    border-top: 1px solid #D1D1D1;
    border-bottom: 1px solid #D1D1D1;
}

.cta-card {
    display: flex;
    align-items: center;
    gap: 18px;
    border-radius: 22px;
    padding: 28px;
    background: #0F6B3E;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
    height: 100%;
}

.cta-card-borrow {
    background: #CFE9D8;
    color: #063B88;
}

.cta-card .cta-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.cta-card .cta-content p {
    margin-bottom: 14px;
    font-size: 1rem;
    opacity: 0.9;
}

.cta-icon .icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.icon-gold {
    background: #FBBF24;
    color: #063B88;
}

.icon-outline {
    background: #fff;
    color: #0F6B3E;
}

.btn-cta-white {
    background: #fff;
    color: #063B88;
    border-radius: 999px;
    padding: 10px 26px;
    font-weight: 600;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-cta-outline {
    border: 2px solid #0F6B3E;
    color: #0F6B3E;
    border-radius: 999px;
    padding: 10px 26px;
    font-weight: 600;
}

.btn-cta-white:hover,
.btn-cta-outline:hover {
    opacity: 0.9;
    color: inherit;
}

.categories-section{
    background: #063B88;
    color: #FFFFFF;
}
.trending-section{
    color: #063B88;
    background: #FFFFFF;
}
.why-section {
    background: #063B88;
    color: #FFFFFF;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
}

.view-link {
    color: #063B88;
    text-decoration: none;
    font-weight: 600;
}

.category-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    text-decoration: none;
    color: #063B88;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
    min-height: 110px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.category-pill h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.category-pill p {
    margin: 0;
    font-size: 0.85rem;
    color: #4B5563;
}

.category-pill .category-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(6, 59, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.category-pill:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.category-personal { background: #F3F8FF; }
.category-realestate { background: #FBF4EA; }
.category-machinery { background: #F2FBF4; }
.category-services { background: #FFF6E5; }
.category-learning { background: #EDF8FF; }

.trending-card {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    background: #F9F4E7;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
}

.trending-image {
    width: 40%;
    background: #fff;
    height: 253px;
    overflow: hidden;
}

.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #063B88;
    flex: 1;
}

.trending-body h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.trending-body .price {
    font-weight: 600;
    margin-bottom: 4px;
}

.trending-body .meta {
    font-size: 0.9rem;
    color: #1F2937;
}

.trending-body .meta span {
    display: block;
    color: #4B5563;
    font-size: 0.85rem;
}

.btn-list-similar {
    align-self: flex-start;
    background: #1DA86C;
    color: #fff;
    border-radius: 999px;
    padding: 8px 22px;
    font-weight: 600;
    text-decoration: none;
}

.btn-list-similar:hover {
    color: #fff;
    background: #16895B;
}

.why-card {
    background: #0B4FA3;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.why-card-1{
    color:#fff
}
.why-card-2 {
    background: #0D65C1;
    color: #fff;
}

.why-card-3 {
    background: #F3F0E5;
    color: #0B3A82;
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.why-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card p {
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .trending-card {
        flex-direction: column;
    }

    .trending-image {
        width: 100%;
        height: 180px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

