/* ==========================================================
   AppraisePoint — style_apx.css
   Custom styles for homepage, features, pricing, and FAQ
   ========================================================== */


/* ----------------------------------------------------------
   Pain / Problem Section (homepage)
   ---------------------------------------------------------- */
.pain_block {
    border-radius: 14px;
    padding: 32px;
    height: 100%;
}

.pain_block h5 {
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: solid 2px;
}

.pain_block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pain_block ul li {
    padding: 11px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: solid 1px;
    line-height: 1.5;
}

.pain_block ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pain_block ul li i {
    margin-top: 3px;
    flex-shrink: 0;
}

/* Old Way — muted warm grey */
.pain_old {
    background: #f9f9f9;
    border: solid 1px #e0ddd8;
}

.pain_old h5 {
    color: #7a7570;
    border-bottom-color: #e0ddd8;
}

.pain_old h5 i { color: #b5b0aa; }

.pain_old ul li {
    color: #6b6560;
    border-bottom-color: #eceae6;
    /* text-decoration: line-through; */
    /* text-decoration-color: #c5c0ba; */
}

.pain_old ul li i { 
    color: #c0bbb5; 
}

/* With AppraisePoint — warm gold */
.pain_new {
    background: #fdfcf8;
    border: solid 1px rgba(168, 145, 79, 0.25);
}

.pain_new h5 {
    color: var(--appraisepoint-color);
    border-bottom-color: rgba(168, 145, 79, 0.2);
}

.pain_new h5 i { color: var(--appraisepoint-color); }

.pain_new ul li {
    color: #2a2520;
    border-bottom-color: rgba(168, 145, 79, 0.1);
}

.pain_new ul li i {
    color: var(--appraisepoint-color); 
    font-size: 22px;
}


/* ----------------------------------------------------------
   Feature Showcase — tab switcher (homepage)
   ---------------------------------------------------------- */
.feature_screen_wrap {
    position: relative;
    background: #f7f6f4;
    border-radius: 16px;
    border: solid 1px #e0ddd8;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature_screen {
    display: none;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}

.feature_screen.active { display: block; }

.feature_tab_list { list-style: none; padding: 0; margin: 0; }

.feature_tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 10px;
    cursor: pointer;
    border: solid 1px transparent;
    margin-bottom: 6px;
    transition: all 0.2s ease;
}

.feature_tab:hover {
    background: #faf9f6;
    border-color: rgba(168, 145, 79, 0.15);
}

.feature_tab.active {
    background: #fdfcf8;
    border-color: rgba(168, 145, 79, 0.3);
    box-shadow: 0 2px 12px rgba(168, 145, 79, 0.08);
}

.feature_tab_icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #eeece8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px; /* icon size — intentional */
    color: #7a7570;
    transition: all 0.2s ease;
}

.feature_tab.active .feature_tab_icon {
    background: var(--appraisepoint-color);
    color: var(--white);
}

.feature_tab_text { flex: 1; }

.feature_tab_text h6 {
    font-weight: 700;
    margin: 0 0 3px 0;
    color: #2a2520;
    transition: color 0.2s ease;
}

.feature_tab_text p {
    margin: 0;
    color: #7a7570;
    line-height: 1.4;
}

.feature_tab_arrow {
    color: #d0ccc6;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.feature_tab.active .feature_tab_arrow { color: var(--appraisepoint-color); }


/* ----------------------------------------------------------
   Trust Bar — integration logos (homepage)
   ---------------------------------------------------------- */
.trusted_section.trust_bar { padding: 30px 0; }

.trusted_section .company_logos.logos_color img {
    filter: none;
    height: 44px;
    width: 160px;
    padding: 0 20px;
    border: none;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    object-fit: contain;
}


/* ----------------------------------------------------------
   Hero gradient text (homepage)
   ---------------------------------------------------------- */
.primary-gradient {
    background: linear-gradient(90deg, var(--appraisepoint-color) 0%, #c8a96e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/*
 * style_apx.css — AppraisePoint features page custom styles
 * Rules:
 *   - No font-size on text elements (defer to style.css defaults)
 *   - Exception: icon sizes and intentional small labels only
 *   - No inline styles in HTML — use classes
 *   - Reuse Bootstrap and existing classes wherever possible
 *   - Colours: var(--primary), var(--secondary), var(--appraisepoint-color), var(--white)
 *   - Warm neutrals: #f7f6f4, #e0ddd8, rgba(168,145,79,...)
 */


/* ----------------------------------------------------------
   Shared — alternating section background
   ---------------------------------------------------------- */
.section_alt_bg {
    background: rgba(168, 145, 79, 0.03);
}


/* ----------------------------------------------------------
   bred_crumb h1 — features page title, smaller than section h2
   ---------------------------------------------------------- */
.bred_crumb .bred_text h1 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 600;
    color: var(--primary);
}


/* ----------------------------------------------------------
   1. Appraisal Builder — full-width section
   ---------------------------------------------------------- */
.feat_fullwidth_section {
    background: rgba(168, 145, 79, 0.03);
}

.feat_fw_main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.feat_fw_main img {
    width: 100%;
    height: auto;
    display: block;
}

.feat_fw_sub {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.feat_fw_sub img {
    width: 100%;
    height: auto;
    display: block;
}

.feat_fw_sub_portrait {
    height: auto;
}

.feat_fw_sub_portrait img {
    width: 100%;
    height: auto;
    object-fit: unset;
}

.feat_fw_bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    justify-content: center;
}

.feat_fw_bullet {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
}

.feat_fw_bullet i {
    color: var(--appraisepoint-color);
    flex-shrink: 0;
}


/* ----------------------------------------------------------
   2. Gemstone Grading — image shadow
   ---------------------------------------------------------- */
.feat_shadow_img img {
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    width: 100%;
    height: auto;
}


/* ----------------------------------------------------------
   3. Report Showcase — annotated rows
   ---------------------------------------------------------- */
.feat_report_frame {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    border: solid 1px #e0ddd8;
}

.feat_report_row + .feat_report_row {
    border-top: solid 1px #e0ddd8;
    padding-top: 24px;
}

.feat_callout_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feat_callout_list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: solid 1px #e0ddd8;
}

.feat_callout_list li:last-child { border-bottom: none; }

.feat_callout_num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--appraisepoint-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.feat_callout_text h6 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.feat_callout_text p {
    color: var(--secondary);
    margin: 0;
}


/* ----------------------------------------------------------
   4. Feature Grid — collage + cards
   ---------------------------------------------------------- */

/* Collage mosaic: 3 columns row 1 (landscape + 2 portrait), full-width row 2 */
.feat_grid_collage {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    grid-template-rows: 420px auto;
    gap: 12px;
}

.feat_grid_collage_left {
    grid-column: 1;
    grid-row: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.feat_grid_collage_card {
    grid-row: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: #f7f6f4;
}

.feat_grid_collage_bottom {
    grid-column: 1 / -1;
    grid-row: 2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

/* Portrait cards — contain so borders stay visible */
.feat_grid_collage_card img {
    object-fit: contain;
    padding: 8px;
}

/* Tablet — stack cards below main image */
@media (max-width: 768px) {
    .feat_grid_collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .feat_grid_collage_left {
        grid-column: 1 / -1;
        grid-row: 1;
        height: 260px;
    }

    .feat_grid_collage_card {
        grid-row: 2;
        height: 200px;
    }

    .feat_grid_collage_bottom {
        grid-column: 1 / -1;
        grid-row: 3;
    }
}

/* Mobile — single column */
@media (max-width: 480px) {
    .feat_grid_collage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .feat_grid_collage_left {
        grid-column: 1;
        height: 220px;
    }

    .feat_grid_collage_card {
        grid-column: 1;
        grid-row: auto;
        height: 180px;
    }

    .feat_grid_collage_bottom {
        grid-column: 1;
        grid-row: auto;
    }
}

/* Cards */
.feat_grid_card {
    background: var(--white);
    border: solid 1px #e0ddd8;
    border-radius: 14px;
    padding: 32px;
    height: 100%;
    transition: box-shadow 0.2s ease;
}

.feat_grid_card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.feat_grid_icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(168,145,79,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--appraisepoint-color);
    margin-bottom: 20px;
    font-size: 24px; /* icon size — intentional exception */
}

.feat_grid_card h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.feat_grid_card > p {
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feat_grid_list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: solid 1px #e0ddd8;
    padding-top: 16px;
}

.feat_grid_list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--secondary);
    padding: 4px 0;
}

.feat_grid_list li i {
    color: var(--appraisepoint-color);
    margin-top: 2px;
    flex-shrink: 0;
}


/* ----------------------------------------------------------
   5. Compliance strip badges
   ---------------------------------------------------------- */
.feat_compliance_badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.feat_compliance_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    border: solid 1px #e0ddd8;
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
}

.feat_compliance_badge i {
    color: var(--appraisepoint-color);
}


/* ----------------------------------------------------------
   6. Enterprise — white card with gold left border
      Visually distinct from the dark final CTA section
   ---------------------------------------------------------- */
.feat_enterprise_section {
    background: var(--white) !important;
}

.feat_enterprise_inner {
    background: var(--white);
    border: solid 1px #e0ddd8;
    border-left: solid 5px var(--appraisepoint-color);
    border-radius: 16px;
    padding: 48px;
}

.feat_enterprise_badge {
    background: rgba(168,145,79,0.10);
    color: var(--appraisepoint-color);
    border-radius: 30px;
    padding: 8px 18px;
    font-weight: 700;
}

.feat_enterprise_desc {
    color: var(--secondary);
}

.feat_enterprise_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feat_enterprise_list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--secondary);
}

.feat_enterprise_list li i {
    color: var(--appraisepoint-color);
    flex-shrink: 0;
}


/* ----------------------------------------------------------
   Multi-language flags
   ---------------------------------------------------------- */
.feat_lang_flags {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.feat_lang_item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feat_lang_flag { line-height: 1; }

.feat_lang_label {
    font-weight: 600;
    color: var(--primary);
}


/* ----------------------------------------------------------
   Enterprise — AWS architecture image
   ---------------------------------------------------------- */
.feat_enterprise_aws_img {
    width: 100%;
    max-width: 380px;
    height: auto;
}


/* ----------------------------------------------------------
   Pricing — coming soon / custom pricing block
   Replaces the .price element while prices are not published
   ---------------------------------------------------------- */
.price_coming_soon {
    text-align: center;
    padding: 16px 0 8px;
}

.price_coming_soon p {
    color: var(--secondary);
    line-height: 1.5;
}


/* ----------------------------------------------------------
   Pricing — plan guidance callout
   ---------------------------------------------------------- */
.pricing_guide_block {
    margin: 40px 0 0;
}

.pricing_guide_inner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(168, 145, 79, 0.05);
    border: solid 1px #e0ddd8;
    border-left: solid 5px var(--appraisepoint-color);
    border-radius: 14px;
    padding: 28px 32px;
}

.pricing_guide_inner .pkg_icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(168, 145, 79, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--appraisepoint-color);
    font-size: 28px;
    flex-shrink: 0;
    margin: 0;
}

.pricing_guide_inner > div {
    flex: 1;
}

.pricing_guide_inner h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.pricing_guide_inner p {
    color: var(--secondary);
    margin: 0;
}

.pricing_guide_inner .btn {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .pricing_guide_inner {
        flex-direction: column;
        text-align: center;
    }
    .pricing_guide_inner .btn {
        width: 100%;
    }
}


/* ----------------------------------------------------------
   FAQ — category groupings
   ---------------------------------------------------------- */
.faq_category_block {
    margin-bottom: 40px;
}

.faq_category_title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: solid 2px var(--appraisepoint-color);
    margin-bottom: 16px;
}

.faq_category_title i {
    color: var(--appraisepoint-color);
    font-size: 22px;
}

.faq_category_title h4 {
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}


/* ----------------------------------------------------------
   Hero images — remove black background from shots.so exports
   ---------------------------------------------------------- */
.banner_section .hero_images img {
    mix-blend-mode: multiply;
}


/* ----------------------------------------------------------
   Hero images — full viewport width, two image layout
   ---------------------------------------------------------- */
.hero_images_fullwidth {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 32px;
    width: 100%;
    max-width: 1600px;
    margin: -20px auto 0;
    padding: 0 40px;
    overflow: hidden;
}

.hero_images_fullwidth .hero_image_left,
.hero_images_fullwidth .hero_image_right {
    width: 50%;
    text-align: center;
}

.hero_images_fullwidth img {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}

/* Tablet — reduce gap and padding */
@media (max-width: 768px) {
    .hero_images_fullwidth {
        gap: 16px;
        padding: 0 16px;
        margin-top: 0;
    }
}

/* Mobile — single column, show only the certificate (left image) */
@media (max-width: 480px) {
    .hero_images_fullwidth {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 0 24px;
    }

    .hero_images_fullwidth .hero_image_left,
    .hero_images_fullwidth .hero_image_right {
        width: 100%;
    }
}


/* ----------------------------------------------------------
   Navbar — active page indicator (gold underline)
   ---------------------------------------------------------- */
header .navbar .nav-item.active .nav-link {
    color: var(--appraisepoint-color);
    position: relative;
}

header .navbar .nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--appraisepoint-color);
    border-radius: 2px;
}


/* ----------------------------------------------------------
   FAQ — What's Coming / Roadmap section
   ---------------------------------------------------------- */
.faq_roadmap_block {
    border-top: 2px solid var(--appraisepoint-color);
    padding-top: 32px;
}

.faq_roadmap_intro {
    color: #7a7570;
    margin-bottom: 24px;
}

.faq_roadmap_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.faq_roadmap_card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f7f6f4;
    border: 1px solid #e0ddd8;
    border-radius: 10px;
    padding: 18px 20px;
}

.faq_roadmap_card_icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--appraisepoint-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.faq_roadmap_card_body h6 {
    margin-bottom: 4px;
    font-weight: 600;
}

.faq_roadmap_card_body p {
    color: #7a7570;
    margin: 0;
}

.faq_roadmap_badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.faq_roadmap_badge_active {
    background: #e8f5e9;
    color: #2e7d32;
}

.faq_roadmap_badge_planned {
    background: #fff8e1;
    color: #a07000;
}

.faq_roadmap_footer {
    color: #7a7570;
    margin-top: 8px;
}

.faq_roadmap_footer a {
    color: var(--appraisepoint-color);
    font-weight: 600;
    text-decoration: none;
}

/* Mobile — single column */
@media (max-width: 576px) {
    .faq_roadmap_grid {
        grid-template-columns: 1fr;
    }
}

/* Public Customer Portal */
.portal-status {
    display: inline-block;
    border: 1px solid rgba(168, 145, 79, .9);
    color: var(--appraisepoint-color-dark);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
}

.portal-card-header {
    padding: 12px 20px;
    border-bottom: 1px solid #f0e8d8;
    background: #fdfaf5;
}

.portal-card-header h6 {
    margin: 0;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--appraisepoint-color-dark);
}

.portal-item-row {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid #f5f0e8;
    align-items: flex-start;
}

.portal-item-row:last-child {
    border-bottom: none;
}

.portal-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e8e0d0;
    flex-shrink: 0;
}

.portal-thumb-placeholder {
    width: 72px;
    height: 72px;
    background: #f5f0e8;
    border-radius: 8px;
    border: 1px solid #e8e0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--appraisepoint-color-dark);
    font-size: 1.2rem;
}

.portal-item-label {
    font-size: .67rem;
    font-weight: 700;
    color: var(--appraisepoint-color-dark);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.portal-service-badge {
    display: inline-block;
    background: #f5f0e8;
    color: #8a7040;
    border: 1px solid #ddd0b0;
    font-size: .65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
}

.portal-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 9px 0;
    border-bottom: 1px solid #f5f0e8;
    font-size: .85rem;
}

.portal-detail-row:last-child {
    border-bottom: none;
}

.portal-detail-label {
    color: #9a9585;
}

.portal-detail-value {
    font-weight: 600;
    color: #1a1820;
}

.portal-detail-value.gold {
    color: var(--appraisepoint-color-dark);
}

.btn-portal-gold {
    display: block;
    background: var(--appraisepoint-color-dark);
    color: #fff !important;
    text-align: center;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
    margin-bottom: 10px;
    transition: background .15s;
}

.btn-portal-gold:hover {
    background: var(--appraisepoint-color);
}