/* =========================================================
   Vam Iranian - Property Loan
========================================================= */

.vp-property-page {
    --vp-primary: var(--ast-global-color-0, #046bd2);
    --vp-primary-dark: var(--ast-global-color-1, #045cb4);
    --vp-heading: var(--ast-global-color-2, #1e293b);
    --vp-text: var(--ast-global-color-3, #475569);

    --vp-bg: #f7f9fc;
    --vp-white: #fff;
    --vp-border: #e6eaf0;
    --vp-muted: #64748b;
    --vp-success: #16865c;

    --vp-radius: 20px;
    --vp-radius-lg: 28px;

    --vp-shadow:
        0 20px 60px rgba(15, 23, 42, .07);

    color: var(--vp-text);
    line-height: 1.95;

    overflow: hidden;
}

.vp-property-page *,
.vp-property-page *::before,
.vp-property-page *::after {
    box-sizing: border-box;
}

.vp-property-page h1,
.vp-property-page h2,
.vp-property-page h3,
.vp-property-page p {
    margin-top: 0;
}

.vp-property-page a {
    text-decoration: none;
}

.vp-property-page svg {
    display: block;
}

.vp-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.vp-content-narrow {
    max-width: 850px;
}

.vp-section {
    padding: 90px 0;
}


/* =========================================================
   Generic
========================================================= */

.vp-section-label {
    display: inline-flex;

    margin-bottom: 12px;

    color: var(--vp-primary);

    font-size: 13px;
    font-weight: 800;
}

.vp-section-head {
    max-width: 740px;

    margin: 0 auto 45px;

    text-align: center;
}

.vp-section-head h2,
.vp-two-column h2,
.vp-feature-content h2,
.vp-content-narrow > h2 {
    margin-bottom: 17px;

    color: var(--vp-heading);

    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.55;
}

.vp-section-head p,
.vp-two-column > div > p {
    color: var(--vp-muted);

    font-size: 16px;
}


/* =========================================================
   Buttons
========================================================= */

.vp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 52px;

    padding: 10px 22px;

    border: 1px solid transparent;
    border-radius: 12px;

    font-size: 14px;
    font-weight: 800;

    transition: .2s ease;
}

.vp-btn:hover {
    transform: translateY(-2px);
}

.vp-btn-primary {
    background: var(--vp-primary);

    color: #fff;
}

.vp-btn-primary:hover {
    background: var(--vp-primary-dark);

    color: #fff;
}

.vp-btn-primary svg {
    width: 18px;
    height: 18px;

    fill: currentColor;
}

.vp-btn-outline {
    border-color: var(--vp-border);

    background: #fff;

    color: var(--vp-heading);
}

.vp-btn-outline:hover {
    border-color: var(--vp-primary);

    color: var(--vp-primary);
}


/* =========================================================
   Breadcrumb
========================================================= */

.vp-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;

    margin-bottom: 42px;

    color: var(--vp-muted);

    font-size: 12px;
}

.vp-breadcrumb a {
    color: var(--vp-muted);
}

.vp-breadcrumb a:hover {
    color: var(--vp-primary);
}


/* =========================================================
   Hero
========================================================= */

.vp-hero {
    position: relative;

    padding: 40px 0 90px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(4, 107, 210, .10),
            transparent 34%
        ),
        radial-gradient(
            circle at 5% 60%,
            rgba(4, 107, 210, .055),
            transparent 30%
        ),
        var(--vp-bg);
}

.vp-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;

    gap: 70px;

    align-items: center;
}

.vp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 20px;
    padding: 7px 13px;

    border: 1px solid var(--vp-border);
    border-radius: 100px;

    background: rgba(255, 255, 255, .75);

    color: var(--vp-primary);

    font-size: 12px;
    font-weight: 800;
}

.vp-eyebrow > span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--vp-primary);

    box-shadow:
        0 0 0 5px rgba(4, 107, 210, .08);
}

.vp-hero h1 {
    max-width: 760px;

    margin-bottom: 22px;

    color: var(--vp-heading);

    font-size: clamp(38px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.45;
}

.vp-hero h1 span {
    display: block;

    color: var(--vp-primary);

    font-family: inherit;
    font-weight: inherit;
}

.vp-hero-lead {
    margin-bottom: 11px;

    font-size: 18px;
}

.vp-hero-description {
    margin-bottom: 28px;

    color: var(--vp-muted);

    font-size: 14px;
}

.vp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;

    margin-bottom: 28px;
}

.vp-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;

    color: var(--vp-muted);

    font-size: 13px;
    font-weight: 600;
}

.vp-hero-features > div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.vp-hero-features span {
    display: grid;

    width: 20px;
    height: 20px;

    place-items: center;

    border-radius: 50%;

    background: rgba(22, 134, 92, .10);

    color: var(--vp-success);

    font-size: 11px;
    font-weight: 900;
}


/* =========================================================
   Summary Card
========================================================= */

.vp-summary-card {
    padding: 25px;

    border: 1px solid var(--vp-border);
    border-radius: var(--vp-radius-lg);

    background: #fff;

    box-shadow: var(--vp-shadow);
}

.vp-summary-head {
    display: flex;
    gap: 13px;

    margin-bottom: 20px;
    padding-bottom: 20px;

    border-bottom: 1px solid var(--vp-border);
}

.vp-summary-icon {
    display: grid;

    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    place-items: center;

    border-radius: 14px;

    background: rgba(4, 107, 210, .08);

    color: var(--vp-primary);
}

.vp-summary-icon svg {
    width: 24px;
    height: 24px;

    fill: currentColor;
}

.vp-summary-head strong {
    display: block;

    margin-bottom: 3px;

    color: var(--vp-heading);

    font-size: 15px;
}

.vp-summary-head small {
    color: var(--vp-muted);

    font-size: 11px;
}

.vp-summary-list {
    display: grid;

    margin-bottom: 18px;
}

.vp-summary-list > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 12px 0;

    border-bottom: 1px solid var(--vp-border);

    font-size: 12px;
}

.vp-summary-list span {
    color: var(--vp-muted);
}

.vp-summary-list strong {
    color: var(--vp-heading);

    font-weight: 800;
}

.vp-summary-note {
    margin-bottom: 17px;
    padding: 13px;

    border-radius: 11px;

    background: var(--vp-bg);

    color: var(--vp-muted);

    font-size: 11px;
    line-height: 1.9;
}

.vp-summary-phone {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 13px 15px;

    border-radius: 12px;

    background: var(--vp-primary);

    color: #fff;
}

.vp-summary-phone:hover {
    background: var(--vp-primary-dark);

    color: #fff;
}

.vp-summary-phone small {
    font-size: 10px;
    opacity: .75;
}

.vp-summary-phone strong {
    direction: ltr;

    font-size: 15px;
}


/* =========================================================
   Intro
========================================================= */

.vp-intro {
    background: #fff;
}

.vp-intro p {
    color: var(--vp-text);

    font-size: 16px;
}

.vp-important-note {
    margin-top: 30px;
    padding: 22px 24px;

    border-right: 4px solid var(--vp-primary);
    border-radius: 13px;

    background: var(--vp-bg);
}

.vp-important-note strong {
    display: block;

    margin-bottom: 6px;

    color: var(--vp-heading);
}

.vp-important-note p {
    margin: 0;

    color: var(--vp-muted);

    font-size: 13px;
}


/* =========================================================
   Conditions
========================================================= */

.vp-conditions {
    background: var(--vp-bg);
}

.vp-condition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.vp-condition-card {
    padding: 26px;

    border: 1px solid var(--vp-border);
    border-radius: var(--vp-radius);

    background: #fff;

    transition: .2s ease;
}

.vp-condition-card:hover {
    transform: translateY(-4px);

    border-color: rgba(4, 107, 210, .25);

    box-shadow:
        0 14px 40px rgba(15, 23, 42, .06);
}

.vp-card-number {
    display: block;

    margin-bottom: 20px;

    color: var(--vp-primary);

    font-size: 25px;
    font-weight: 800;

    opacity: .35;
}

.vp-condition-card h3 {
    margin-bottom: 10px;

    color: var(--vp-heading);

    font-size: 17px;
    font-weight: 800;
}

.vp-condition-card p {
    margin: 0;

    color: var(--vp-muted);

    font-size: 13px;
}


/* =========================================================
   Two Column
========================================================= */

.vp-two-column {
    display: grid;
    grid-template-columns: 1fr .9fr;

    gap: 70px;

    align-items: center;
}


/* =========================================================
   Property types
========================================================= */

.vp-property-types {
    background: #fff;
}

.vp-type-list {
    display: grid;
    gap: 14px;

    margin-top: 28px;
}

.vp-type-list > div {
    display: flex;
    gap: 13px;

    padding: 16px;

    border: 1px solid var(--vp-border);
    border-radius: 13px;
}

.vp-type-list > div > span {
    display: grid;

    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    place-items: center;

    border-radius: 8px;

    background: rgba(22, 134, 92, .09);

    color: var(--vp-success);

    font-weight: 900;
}

.vp-type-list strong {
    display: block;

    margin-bottom: 3px;

    color: var(--vp-heading);
}

.vp-type-list p {
    margin: 0;

    color: var(--vp-muted);

    font-size: 12px;
}


/* =========================================================
   Related Box
========================================================= */

.vp-related-box {
    padding: 31px;

    border: 1px solid var(--vp-border);
    border-radius: var(--vp-radius);

    background: var(--vp-bg);
}

.vp-related-badge {
    display: inline-flex;

    margin-bottom: 16px;
    padding: 5px 9px;

    border-radius: 100px;

    background: rgba(4, 107, 210, .09);

    color: var(--vp-primary);

    font-size: 10px;
    font-weight: 800;
}

.vp-related-box h3 {
    margin-bottom: 8px;

    color: var(--vp-heading);

    font-size: 18px;
    font-weight: 800;
}

.vp-related-box p {
    color: var(--vp-muted);

    font-size: 13px;
}

.vp-related-box a {
    display: inline-flex;
    gap: 7px;

    color: var(--vp-primary);

    font-size: 13px;
    font-weight: 800;
}

.vp-related-box hr {
    margin: 26px 0;

    border: 0;
    border-top: 1px solid var(--vp-border);
}


/* =========================================================
   Amount
========================================================= */

.vp-amount {
    background: var(--vp-bg);
}

.vp-feature-box {
    display: grid;
    grid-template-columns: 1.3fr .7fr;

    gap: 45px;

    padding: 48px;

    border: 1px solid var(--vp-border);
    border-radius: var(--vp-radius-lg);

    background: #fff;

    box-shadow:
        0 12px 45px rgba(15, 23, 42, .045);
}

.vp-feature-content p {
    color: var(--vp-muted);
}

.vp-text-link {
    display: inline-flex;
    gap: 8px;

    margin-top: 6px;

    color: var(--vp-primary);

    font-weight: 800;
}

.vp-value-factors {
    padding: 27px;

    border-radius: 17px;

    background: var(--vp-bg);
}

.vp-value-factors h3 {
    margin-bottom: 18px;

    color: var(--vp-heading);

    font-size: 17px;
    font-weight: 800;
}

.vp-value-factors ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.vp-value-factors li {
    position: relative;

    margin-bottom: 10px;
    padding-right: 21px;

    color: var(--vp-text);

    font-size: 13px;
}

.vp-value-factors li::before {
    content: "✓";

    position: absolute;
    right: 0;

    color: var(--vp-success);

    font-weight: 900;
}


/* =========================================================
   Process
========================================================= */

.vp-process {
    background: #fff;
}

.vp-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border: 1px solid var(--vp-border);
    border-radius: var(--vp-radius);

    overflow: hidden;
}

.vp-process-grid article {
    min-height: 215px;

    padding: 27px;

    border-left: 1px solid var(--vp-border);
}

.vp-process-grid article:last-child {
    border-left: 0;
}

.vp-process-grid article > span {
    display: block;

    margin-bottom: 22px;

    color: var(--vp-primary);

    font-size: 28px;
    font-weight: 800;

    opacity: .3;
}

.vp-process-grid h3 {
    margin-bottom: 8px;

    color: var(--vp-heading);

    font-size: 17px;
    font-weight: 800;
}

.vp-process-grid p {
    margin: 0;

    color: var(--vp-muted);

    font-size: 12px;
}


/* =========================================================
   Documents
========================================================= */

.vp-documents {
    background: var(--vp-bg);
}

.vp-document-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}

.vp-document-list > div {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 17px;

    border: 1px solid var(--vp-border);
    border-radius: 13px;

    background: #fff;

    color: var(--vp-heading);

    font-size: 13px;
    font-weight: 700;
}

.vp-document-list span {
    display: grid;

    width: 25px;
    height: 25px;

    flex: 0 0 25px;

    place-items: center;

    border-radius: 50%;

    background: rgba(22, 134, 92, .10);

    color: var(--vp-success);

    font-size: 11px;
}


/* =========================================================
   Difference
========================================================= */

.vp-difference {
    background: #fff;
}

.vp-difference p {
    color: var(--vp-text);

    font-size: 16px;
}


/* =========================================================
   Other services
========================================================= */

.vp-other-services {
    background: var(--vp-bg);
}

.vp-other-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    max-width: 850px;

    margin-inline: auto;
}

.vp-other-grid > a {
    display: grid;
    grid-template-columns: 50px 1fr auto;

    gap: 14px;
    align-items: center;

    padding: 22px;

    border: 1px solid var(--vp-border);
    border-radius: var(--vp-radius);

    background: #fff;

    color: inherit;

    transition: .2s ease;
}

.vp-other-grid > a:hover {
    transform: translateY(-3px);

    border-color: var(--vp-primary);

    box-shadow:
        0 12px 35px rgba(15, 23, 42, .06);
}

.vp-other-icon {
    display: grid;

    width: 50px;
    height: 50px;

    place-items: center;

    border-radius: 14px;

    background: var(--vp-bg);

    color: var(--vp-primary);
}

.vp-other-icon svg {
    width: 24px;
    height: 24px;

    fill: currentColor;
}

.vp-other-grid strong {
    display: block;

    margin-bottom: 3px;

    color: var(--vp-heading);
}

.vp-other-grid p {
    margin: 0;

    color: var(--vp-muted);

    font-size: 11px;
}

.vp-other-arrow {
    color: var(--vp-primary);

    font-size: 20px;
}


/* =========================================================
   FAQ
========================================================= */

.vp-faq {
    background: #fff;
}

.vp-faq-list {
    display: grid;
    gap: 10px;
}

.vp-faq-list details {
    border: 1px solid var(--vp-border);
    border-radius: 14px;

    background: var(--vp-bg);

    overflow: hidden;
}

.vp-faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 19px 21px;

    cursor: pointer;

    list-style: none;

    color: var(--vp-heading);

    font-size: 14px;
    font-weight: 800;
}

.vp-faq-list summary::-webkit-details-marker {
    display: none;
}

.vp-faq-list summary span {
    display: grid;

    width: 27px;
    height: 27px;

    place-items: center;

    border-radius: 8px;

    background: #fff;

    color: var(--vp-primary);

    transition: transform .2s ease;
}

.vp-faq-list details[open] summary span {
    transform: rotate(45deg);
}

.vp-faq-list details > div {
    padding: 0 21px 19px;

    color: var(--vp-muted);

    font-size: 13px;
}


/* =========================================================
   Final CTA
========================================================= */

.vp-final-cta {
    padding: 30px 0 95px;

    background: #fff;
}

.vp-final-box {
    display: grid;
    grid-template-columns: 1fr auto;

    gap: 45px;
    align-items: center;

    padding: 42px 47px;

    border-radius: var(--vp-radius-lg);

    background:
        linear-gradient(
            135deg,
            var(--vp-primary),
            var(--vp-primary-dark)
        );

    color: #fff;
}

.vp-final-box .vp-section-label {
    color: rgba(255, 255, 255, .7);
}

.vp-final-box h2 {
    margin-bottom: 8px;

    color: #fff;

    font-size: clamp(25px, 3vw, 35px);
    font-weight: 800;
}

.vp-final-box p {
    margin: 0;

    color: rgba(255, 255, 255, .78);

    font-size: 14px;
}

.vp-final-phone {
    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 205px;

    padding: 12px 16px;

    border-radius: 13px;

    background: #fff;

    color: var(--vp-primary);
}

.vp-final-phone:hover {
    color: var(--vp-primary-dark);
}

.vp-final-phone svg {
    width: 20px;
    height: 20px;

    fill: currentColor;
}

.vp-final-phone > span {
    display: flex;
    flex-direction: column;
}

.vp-final-phone small {
    color: var(--vp-muted);

    font-size: 9px;
}

.vp-final-phone strong {
    direction: ltr;

    font-size: 16px;
}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 1000px) {

    .vp-hero-grid {
        gap: 40px;
    }

    .vp-condition-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vp-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vp-process-grid article {
        border-bottom: 1px solid var(--vp-border);
    }

}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 780px) {

    .vp-container {
        width: calc(100% - 28px);
    }

    .vp-section {
        padding: 65px 0;
    }

    .vp-hero {
        padding: 30px 0 65px;
    }

    .vp-breadcrumb {
        margin-bottom: 28px;
    }

    .vp-hero-grid,
    .vp-two-column,
    .vp-feature-box,
    .vp-final-box {
        grid-template-columns: 1fr;
    }

    .vp-hero-grid {
        gap: 38px;
    }

    .vp-hero h1 {
        font-size: clamp(34px, 9vw, 46px);
    }

    .vp-two-column {
        gap: 35px;
    }

    .vp-feature-box {
        padding: 32px;
    }

    .vp-document-list {
        grid-template-columns: 1fr;
    }

    .vp-final-box {
        padding: 32px;
    }

    .vp-final-phone {
        width: fit-content;
    }

}


/* =========================================================
   Small Mobile
========================================================= */

@media (max-width: 560px) {

    .vp-container {
        width: calc(100% - 22px);
    }

    .vp-section {
        padding: 55px 0;
    }

    .vp-hero h1 {
        font-size: 33px;
    }

    .vp-hero-lead {
        font-size: 16px;
    }

    .vp-hero-actions {
        display: grid;
    }

    .vp-btn {
        width: 100%;
    }

    .vp-hero-features {
        display: grid;
        gap: 8px;
    }

    .vp-condition-grid,
    .vp-process-grid,
    .vp-other-grid {
        grid-template-columns: 1fr;
    }

    .vp-process-grid article {
        min-height: auto;

        border-left: 0;
        border-bottom: 1px solid var(--vp-border);
    }

    .vp-process-grid article:last-child {
        border-bottom: 0;
    }

    .vp-summary-card,
    .vp-related-box {
        padding: 22px;
    }

    .vp-feature-box {
        padding: 25px;
    }

    .vp-final-box {
        padding: 27px 22px;
    }

    .vp-final-phone {
        width: 100%;

        justify-content: center;
    }

}