/**
 * Max Property Finance - Extended Components
 * Page-specific component styles (Company Overview, etc.)
 * Version: 2.0.0 (Optimized)
 */

/* ==========================================================================
   FOUNDER SECTION
   ========================================================================== */
.mpf-founder {
    padding: 100px 0;
    background-color: #fff;
}

.mpf-founder__img-wrap {
    position: relative;
}

.mpf-founder__img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.mpf-founder__badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: linear-gradient(135deg, var(--mpf-primary-color) 0%, var(--mpf-primary-dark) 100%);
    color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(152, 179, 50, 0.3);
}

.mpf-founder__badge-num {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.mpf-founder__badge-text {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mpf-founder__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--mpf-primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.mpf-founder__heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--mpf-secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.mpf-founder__text {
    font-size: 16px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.8;
}

.mpf-founder__highlight {
    background-color: #f8f9fa;
    border-left: 4px solid var(--mpf-primary-color);
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.mpf-founder__highlight p {
    font-size: 15px;
    font-style: italic;
    color: #333;
    margin: 0;
    line-height: 1.7;
}

.mpf-founder__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--mpf-primary-color);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mpf-founder__cta:hover {
    background-color: var(--mpf-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(152, 179, 50, 0.3);
}

.mpf-founder__cta:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   JOURNEY TIMELINE
   ========================================================================== */
.mpf-journey {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.mpf-journey__header {
    text-align: center;
    margin-bottom: 60px;
}

.mpf-journey__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--mpf-primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.mpf-journey__heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--mpf-secondary-color);
    margin-bottom: 0;
}

.mpf-journey__timeline {
    position: relative;
    padding: 20px 0;
}

.mpf-journey__timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--mpf-primary-color);
}

.mpf-journey__item {
    position: relative;
    margin-bottom: 50px;
}

.mpf-journey__item:last-child {
    margin-bottom: 0;
}

.mpf-journey__item:nth-child(odd) .mpf-journey__content {
    margin-left: auto;
    padding-left: 50px;
}

.mpf-journey__item:nth-child(even) .mpf-journey__content {
    margin-right: auto;
    padding-right: 50px;
    text-align: right;
}

.mpf-journey__content {
    width: 50%;
    position: relative;
}

.mpf-journey__dot {
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: var(--mpf-primary-color);
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--mpf-primary-color);
}

.mpf-journey__item:nth-child(odd) .mpf-journey__dot {
    left: -10px;
}

.mpf-journey__item:nth-child(even) .mpf-journey__dot {
    right: -10px;
}

.mpf-journey__card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.mpf-journey__year {
    display: inline-block;
    background-color: var(--mpf-secondary-color);
    color: #fff;
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.mpf-journey__card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--mpf-secondary-color);
    margin-bottom: 10px;
}

.mpf-journey__card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==========================================================================
   UNIQUE APPROACH SECTION
   ========================================================================== */
.mpf-approach {
    padding: 100px 0;
    background-color: #fff;
}

.mpf-approach__content {
    padding-right: 50px;
}

.mpf-approach__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--mpf-primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.mpf-approach__heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--mpf-secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.mpf-approach__text {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.mpf-approach__point {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.mpf-approach__point-icon {
    width: 55px;
    height: 55px;
    background-color: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mpf-approach__point:hover .mpf-approach__point-icon {
    background-color: var(--mpf-primary-color);
}

.mpf-approach__point-icon i {
    font-size: 22px;
    color: var(--mpf-primary-color);
    transition: all 0.3s ease;
}

.mpf-approach__point:hover .mpf-approach__point-icon i {
    color: #fff;
}

.mpf-approach__point-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--mpf-secondary-color);
    margin-bottom: 5px;
}

.mpf-approach__point-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.mpf-approach__img-wrap {
    position: relative;
}

.mpf-approach__img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.mpf-approach__floating {
    position: absolute;
    top: 30px;
    left: -30px;
    background-color: #8b9a2d;
    color: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 154, 45, 0.3);
}

.mpf-approach__floating-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.mpf-approach__floating-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

/* ==========================================================================
   CREDENTIALS SECTION
   ========================================================================== */
.mpf-credentials {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--mpf-secondary-color) 0%, var(--mpf-secondary-dark) 100%);
}

.mpf-credentials__item {
    text-align: center;
    padding: 30px 20px;
}

.mpf-credentials__icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mpf-credentials__icon i {
    font-size: 32px;
    color: var(--mpf-primary-color);
}

.mpf-credentials__title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.mpf-credentials__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==========================================================================
   PMA SECTION
   ========================================================================== */
.mpf-pma {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.mpf-pma__img-wrap {
    position: relative;
}

.mpf-pma__img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.mpf-pma__content {
    padding-left: 50px;
}

.mpf-pma__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--mpf-primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.mpf-pma__heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--mpf-secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.mpf-pma__text {
    font-size: 16px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.8;
}

.mpf-pma__list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.mpf-pma__list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

.mpf-pma__list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--mpf-primary-color);
}

.mpf-pma__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--mpf-primary-color);
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mpf-pma__link:hover {
    color: var(--mpf-primary-dark);
}

.mpf-pma__link:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   ABOUT CTA SECTION
   ========================================================================== */
.mpf-about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--mpf-primary-color) 0%, var(--mpf-primary-dark) 100%);
}

.mpf-about-cta__inner {
    text-align: center;
}

.mpf-about-cta__title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.mpf-about-cta__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mpf-about-cta__btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mpf-about-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mpf-about-cta__btn--white {
    background-color: #fff;
    color: var(--mpf-primary-color);
}

.mpf-about-cta__btn--white:hover {
    background-color: var(--mpf-secondary-color);
    color: #fff;
    transform: translateY(-2px);
}

.mpf-about-cta__btn--outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.mpf-about-cta__btn--outline:hover {
    background-color: #fff;
    color: var(--mpf-primary-color);
    transform: translateY(-2px);
}

.mpf-about-cta__btn:hover i {
    transform: translateX(5px);
}
