/* ============================================================
   VYAPAAR CAPITAL — Internal Pages Stylesheet
   Extends style.css — must be loaded after it
   ============================================================ */

/* ── Page Hero (inner pages) ── */
.page-hero {
    position: relative;
    padding: 11rem 0 6rem;
    background: var(--navy-primary);
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 70% 30%, rgba(184, 146, 46, 0.07) 0%, transparent 60%),
        linear-gradient(160deg, #FAFAF7 0%, #F7F4EE 60%, #F2EFE8 100%);
    z-index: 0;
}

.page-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184, 146, 46, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 146, 46, 0.06) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
    z-index: 0;
}

.page-hero__content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.breadcrumb a {
    color: var(--text-dim);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb__sep {
    color: var(--gold-dim);
}

.breadcrumb__current {
    color: var(--gold);
}

.page-hero__title {
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.page-hero__title em {
    font-style: italic;
    color: var(--gold);
}

.page-hero__subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.page-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── Service Deep-Dive Cards ── */
.service-deep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.service-deep-card {
    background: var(--navy-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.service-deep-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-deep-card:hover::before {
    transform: scaleX(1);
}

.service-deep-card:hover {
    border-color: rgba(184, 146, 46, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-deep-card--featured {
    border-color: var(--gold-dim);
    background: linear-gradient(135deg, #FFFDF8, rgba(184, 146, 46, 0.04));
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-deep-card--featured::before {
    transform: scaleX(1);
}

.service-deep-card__num {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dim);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.service-deep-card__icon {
    width: 52px;
    height: 52px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.service-deep-card__title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.service-deep-card__desc {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.service-deep-card__features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-deep-card__feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.service-deep-card__feature-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 6px;
}

/* ── Process Steps ── */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: calc(12.5% + 1.5rem);
    right: calc(12.5% + 1.5rem);
    height: 1px;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
    opacity: 0.35;
}

.process-step {
    padding: 0 1.5rem 2.5rem;
    text-align: center;
    position: relative;
}

.process-step__num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--gold-dim);
    background: var(--navy-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--gold);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.process-step__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.process-step__desc {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.65;
}

/* ── FAQ / Accordion ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--navy-card);
    cursor: pointer;
    transition: background 0.2s;
    gap: 1rem;
}

.faq-question:hover {
    background: var(--navy-mid);
    color: var(--gold-dim);
}

.faq-question.open {
    color: var(--gold-dim);
    background: var(--navy-mid);
}

.faq-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-question.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 2rem 1.5rem;
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.75;
    background: var(--navy-mid);
}

.faq-answer.open {
    display: block;
}

/* ── CTA Strip ── */
.cta-strip {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(184, 146, 46, 0.07) 0%, transparent 70%);
}

.cta-strip__content {
    position: relative;
    z-index: 1;
}

.cta-strip__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-strip__title em {
    color: var(--gold);
    font-style: italic;
}

.cta-strip__desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

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

/* ── Team Cards ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.team-card {
    background: var(--navy-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    border-color: rgba(184, 146, 46, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.team-card__avatar {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.team-card__avatar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--navy-card), transparent);
}

.team-card__body {
    padding: 1.5rem;
}

.team-card__name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.team-card__title {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.team-card__bio {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.team-card__linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color 0.2s;
}

.team-card__linkedin:hover {
    color: var(--gold);
}

/* ── Timeline (About) ── */
.timeline {
    position: relative;
    padding-left: 2.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.4rem;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--navy-card);
    box-shadow: 0 0 0 2px var(--gold-dim);
}

.timeline-year {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dim);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.timeline-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.timeline-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Values Grid ── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--navy-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    border-color: var(--gold);
    background: rgba(184, 146, 46, 0.04);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(184, 146, 46, 0.12);
}

.value-card__icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.value-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.value-card__desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Contact Page ── */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-offices {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.contact-office {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--navy-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-office:hover {
    border-color: rgba(184, 146, 46, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-office__flag {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-office__city {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.contact-office__detail {
    font-size: 0.78rem;
    color: var(--text-dim);
    line-height: 1.65;
    margin-top: 0.2rem;
}

.contact-form-panel {
    background: var(--navy-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-card);
}

/* ── Policy Page ── */
.policy-content {
    max-width: 760px;
}

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

.policy-section h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.policy-section p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.policy-section ul {
    list-style: none;
    margin: 0.75rem 0;
}

.policy-section ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.87rem;
    color: var(--text-muted);
    padding: 0.35rem 0;
    line-height: 1.65;
}

.policy-section ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-dim);
    flex-shrink: 0;
    margin-top: 7px;
}

/* ── Tagline / Intro Block ── */
.intro-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-block__text p {
    margin-bottom: 1.25rem;
}

.intro-block__stat-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.intro-stat {
    background: var(--navy-card);
    padding: 2rem 1.5rem;
    text-align: center;
}

.intro-stat__value {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.intro-stat__label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ── Sector Tags (reused on service pages) ── */
.sectors-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sector-tag-sm {
    padding: 0.45rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dim);
    transition: var(--transition-fast);
    letter-spacing: 0.04em;
}

.sector-tag-sm:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .service-deep-card--featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-deep-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .process-steps::before {
        display: none;
    }

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

@media (max-width: 768px) {
    .page-hero {
        padding: 9rem 0 4rem;
    }

    .service-deep-card--featured {
        grid-column: span 1;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .cta-strip {
        padding: 2.5rem 1.5rem;
    }

    .contact-form-panel {
        padding: 2rem 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}