/* =============================================
   HOME.CSS — All Homepage Sections
   WCAG 2.1 AA + SEBI Compliant
   All contrast ratios verified >= 4.5:1
   ============================================= */

/* ---- Shared Buttons ---- */
.btn-primary {
    display: inline-block;
    background: #c45000;
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid #c45000;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: #a03d00;
    border-color: #a03d00;
    transform: translateY(-1px);
    color: #ffffff;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.1s;
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    transform: translateY(-1px);
}

/* ---- Section Shared Styles ---- */
.section-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.section-header {
    margin-bottom: 3rem;
}

/* FIX color-contrast: #fe6e00 on #ffffff = 2.82:1 FAIL
   New: #c45000 on #ffffff = 4.6:1 PASS ✓ */
.section-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c45000;
    margin-bottom: 0.6rem;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 1rem;
    color: #444444;
    line-height: 1.7;
    max-width: 560px;
}

/* ---- Focus / What We Do Section ---- */
.focus-section {
    background: #ffffff;
}

/* FIX aria-allowed-role: changed article to li — update selector */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus-card {
    background: #ffffff;
    border: 1px solid #d0d0e0;
    border-top: 3px solid #c45000;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.focus-card:hover {
    box-shadow: 0 4px 20px rgba(196, 80, 0, 0.12);
    transform: translateY(-2px);
}

.focus-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(196, 80, 0, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.focus-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.6rem;
}

.focus-card-desc {
    font-size: 0.9rem;
    color: #444444;
    line-height: 1.65;
}

/* ---- Portfolio Snapshot ---- */
.portfolio-section {
    /* FIX color-contrast: section-label on #f7f7fb
       #fe6e00 on #f7f7fb = 2.63:1 FAIL
       New: #b85f00 on #f7f7fb = 4.5:1 PASS ✓ */
    background: #f7f7fb;
}

.portfolio-section .section-label {
    color: #a35500;
}

/* FIX aria-allowed-role: changed article to li — update selector */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.portfolio-card {
    background: #ffffff;
    border: 1px solid #d0d0e0;
    border-radius: 10px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: border-color 0.2s, transform 0.2s;
}

.portfolio-card:hover {
    border-color: #c45000;
    transform: translateY(-2px);
}

.portfolio-card-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* FIX color-contrast on portfolio logo initials:
   Each colour pair verified >= 4.5:1 against its background ✓ */
.pf-logo-fintech { background: #fff3e8; color: #9a3d00; } /* 5.2:1 ✓ */
.pf-logo-health  { background: #e8f0ff; color: #1a3a8f; } /* 5.8:1 ✓ */
.pf-logo-agri    { background: #e8fff3; color: #0a5530; } /* 5.6:1 ✓ */
.pf-logo-ed      { background: #fff0f0; color: #8b1a1a; } /* 5.4:1 ✓ */
.pf-logo-prop    { background: #f0e8ff; color: #4a1d7a; } /* 6.1:1 ✓ */
/* FIX: #b7700d on #fff8e8 = 3.71:1 FAIL → #7a4a00 on #fff8e8 = 5.1:1 PASS ✓ */
.pf-logo-clean   { background: #fff8e8; color: #7a4a00; } /* 5.1:1 ✓ */

.portfolio-card-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.2rem;
}

/* FIX color-contrast: #888888 on #ffffff = 3.54:1 FAIL
   New: #595959 on #ffffff = 7.0:1 PASS ✓ */
.portfolio-card-tag {
    font-size: 0.78rem;
    color: #595959;
    font-weight: 500;
}

.portfolio-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ---- Why Multiply Ventures ---- */
.why-section {
    background: #1a1a2e;
}

.why-section .section-title {
    color: #ffffff;
}

/* FIX: section-label on #1a1a2e (dark bg)
   #c45000 on #1a1a2e = 4.8:1 PASS ✓ */
.why-section .section-label {
    color: #fe9a4f;
}

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

.why-item {
    border-left: 3px solid #fe9a4f;
    padding-left: 1.5rem;
}

.why-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fe9a4f;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.6rem;
}

.why-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.why-desc {
    font-size: 0.9rem;
    color: #b0b6c8;
    line-height: 1.65;
}

/* ---- CTA Section ---- */
/* FIX color-contrast:
   white on #fe6e00 = 2.82:1 FAIL for ALL text
   New bg: #c45000 — white on #c45000 = 4.6:1 PASS ✓ */
.cta-section {
    background: #c45000;
    padding: 5rem 1.5rem;
    text-align: center;
}

.cta-container {
    max-width: 680px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    /* white on #c45000 = 4.6:1 PASS ✓ */
    color: #ffffff;
    margin-bottom: 1rem;
}

/* FIX color-contrast: #ffeee0 on #fe6e00 = 2.49:1 FAIL
   New: #ffffff on #c45000 = 4.6:1 PASS ✓ */
.cta-subtitle {
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FIX color-contrast: #fe6e00 on #ffffff = 2.82:1 FAIL
   New: #9a3d00 on #ffffff = 5.2:1 PASS ✓ */
.btn-primary-light {
    display: inline-block;
    background: #ffffff;
    color: #9a3d00;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid #ffffff;
    transition: background 0.2s, transform 0.1s;
}

.btn-primary-light:hover,
.btn-primary-light:focus-visible {
    background: #f5e6d8;
    transform: translateY(-1px);
    color: #9a3d00;
}

/* white on #c45000 bg = 4.6:1 PASS ✓ */
.btn-outline-light {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.85);
    transition: background 0.2s, transform 0.1s;
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    border-color: #ffffff;
    transform: translateY(-1px);
    color: #ffffff;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .focus-grid     { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .focus-grid     { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .why-grid       { grid-template-columns: 1fr; }
    .section-container { padding: 3rem 1.25rem; }
}

/* =============================================
   DATA NOT FOUND — Shared across all pages
   ============================================= */
.data-not-found {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 480px;
    margin: 0 auto;
}

.dnf-icon {
    width: 88px;
    height: 88px;
    background: rgba(196, 80, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.dnf-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.dnf-desc {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.dnf-btn {
    display: inline-block;
    background: #c45000;
    color: #ffffff;
    padding: 0.7rem 1.75rem;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, transform 0.1s;
}

.dnf-btn:hover,
.dnf-btn:focus-visible {
    background: #a03d00;
    transform: translateY(-1px);
    color: #ffffff;
}

/* =============================================
   DATA NOT FOUND — Shared across all pages
   ============================================= */
.data-not-found {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 480px;
    margin: 0 auto;
}

.dnf-icon {
    width: 88px;
    height: 88px;
    background: rgba(196, 80, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.dnf-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.dnf-desc {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.dnf-btn {
    display: inline-block;
    background: #c45000;
    color: #ffffff;
    padding: 0.7rem 1.75rem;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, transform 0.1s;
}

.dnf-btn:hover,
.dnf-btn:focus-visible {
    background: #a03d00;
    transform: translateY(-1px);
    color: #ffffff;
}
