body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f8f9fa;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}

/* Header */
header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 60px 20px;
text-align: center;
margin-bottom: 40px;
}

h1 {
font-size: 2.5em;
margin-bottom: 15px;
font-weight: 700;
}

.subtitle {
font-size: 1.2em;
opacity: 0.95;
}

/* Update Badge */
.update-badge {
display: inline-block;
background: rgba(255,255,255,0.2);
padding: 8px 16px;
border-radius: 20px;
font-size: 0.9em;
margin-top: 15px;
border: 1px solid rgba(255,255,255,0.3);
}

/* Breadcrumbs */
.breadcrumbs {
padding: 10px 0;
margin-bottom: 20px;
font-size: 0.9em;
}

.breadcrumbs a {
color: #667eea;
text-decoration: none;
}

.breadcrumbs a:hover {
text-decoration: underline;
}

/* Calculator Section */
.calculator-wrapper {
background: white;
border-radius: 12px;
padding: 40px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
margin-bottom: 40px;
}

.calculator-form {
display: grid;
gap: 25px;
margin-bottom: 30px;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
font-weight: 600;
margin-bottom: 8px;
color: #2d3748;
font-size: 1.05em;
}

.form-group input,
.form-group select {
padding: 12px 15px;
border: 2px solid #e2e8f0;
border-radius: 8px;
font-size: 1em;
transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
outline: none;
border-color: #667eea;
}

.range-value {
display: inline-block;
background: #667eea;
color: white;
padding: 4px 12px;
border-radius: 20px;
font-weight: 600;
margin-left: 10px;
}

input[type="range"] {
width: 100%;
height: 8px;
border-radius: 5px;
background: #e2e8f0;
outline: none;
-webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 20px;
height: 20px;
border-radius: 50%;
background: #667eea;
cursor: pointer;
}

.calculate-btn {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 16px 40px;
border: none;
border-radius: 8px;
font-size: 1.1em;
font-weight: 600;
cursor: pointer;
transition: transform 0.2s;
width: 100%;
margin-top: 10px;
}

.calculate-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(102, 126, 234, 0.3);
}

/* Results */
.results {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
color: white;
padding: 30px;
border-radius: 12px;
margin-top: 30px;
display: none;
}

.results.active {
display: block;
}

.result-main {
text-align: center;
margin-bottom: 25px;
}

.result-main h3 {
font-size: 1.2em;
opacity: 0.9;
margin-bottom: 10px;
}

.result-amount {
font-size: 3em;
font-weight: 700;
}

.result-details {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-top: 25px;
}

.result-item {
background: rgba(255,255,255,0.2);
padding: 15px;
border-radius: 8px;
}

.result-item strong {
display: block;
margin-bottom: 5px;
opacity: 0.9;
}

.result-item span {
font-size: 1.3em;
font-weight: 600;
}

/* Content Sections */
.content-section {
background: white;
border-radius: 12px;
padding: 40px;
margin-bottom: 30px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

h2 {
color: #2d3748;
font-size: 2em;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 3px solid #667eea;
}

h3 {
color: #4a5568;
font-size: 1.5em;
margin-top: 30px;
margin-bottom: 15px;
}

h4 {
color: #4a5568;
font-size: 1.2em;
margin-top: 20px;
margin-bottom: 10px;
}

p {
margin-bottom: 15px;
line-height: 1.8;
color: #4a5568;
}

ul, ol {
margin: 15px 0 15px 25px;
}

li {
margin-bottom: 10px;
line-height: 1.7;
color: #4a5568;
}

/* Tables */
.table-wrapper {
overflow-x: auto;
margin: 25px 0;
}

table {
width: 100%;
border-collapse: collapse;
background: white;
border-radius: 8px;
overflow: hidden;
}

th {
background: #667eea;
color: white;
padding: 15px;
text-align: left;
font-weight: 600;
}

td {
padding: 12px 15px;
border-bottom: 1px solid #e2e8f0;
}

tr:hover {
background: #f7fafc;
}

/* Info Boxes */
.info-box {
background: #ebf8ff;
border-left: 4px solid #4299e1;
padding: 20px;
margin: 25px 0;
border-radius: 4px;
}

.warning-box {
background: #fffaf0;
border-left: 4px solid #f6ad55;
padding: 20px;
margin: 25px 0;
border-radius: 4px;
}

.success-box {
background: #f0fff4;
border-left: 4px solid #48bb78;
padding: 20px;
margin: 25px 0;
border-radius: 4px;
}

/* Example Cards */
.example-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin: 30px 0;
}

.example-card {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 25px;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.example-card h4 {
color: white;
margin-top: 0;
margin-bottom: 15px;
}

.example-card p {
color: white;
opacity: 0.95;
margin-bottom: 10px;
}

.example-result {
background: rgba(255,255,255,0.2);
padding: 15px;
border-radius: 8px;
margin-top: 15px;
text-align: center;
}

.example-result strong {
font-size: 1.8em;
display: block;
}

/* FAQ */
.faq-item {
background: white;
border: 1px solid #e2e8f0;
border-radius: 8px;
margin-bottom: 15px;
overflow: hidden;
}

.faq-question {
background: #f7fafc;
padding: 20px;
font-weight: 600;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: background 0.3s;
}

.faq-question:hover {
background: #edf2f7;
}

.faq-answer {
padding: 20px;
display: none;
line-height: 1.8;
}

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

.faq-icon {
font-size: 1.5em;
color: #667eea;
transition: transform 0.3s;
}

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

/* CTA Section */
.cta-section {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 50px;
border-radius: 12px;
text-align: center;
margin: 40px 0;
}

.cta-section h2 {
color: white;
border: none;
margin-bottom: 15px;
}

.cta-section p {
color: white;
font-size: 1.2em;
margin-bottom: 25px;
}

.cta-btn {
background: white;
color: #667eea;
padding: 15px 40px;
border: none;
border-radius: 8px;
font-size: 1.1em;
font-weight: 600;
cursor: pointer;
text-decoration: none;
display: inline-block;
transition: transform 0.2s;
}

.cta-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Comparison Table */
.comparison-table {
margin: 30px 0;
}

.comparison-table th {
text-align: center;
}

.comparison-table td {
text-align: center;
}

.comparison-table .highlight {
background: #f0fff4;
font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
h1 {
font-size: 1.8em;
}

.calculator-wrapper,
.content-section {
padding: 25px;
}

.result-amount {
font-size: 2em;
}

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

/* Internal Links */
.internal-links {
background: #f7fafc;
padding: 25px;
border-radius: 8px;
margin: 30px 0;
}

.internal-links h3 {
margin-top: 0;
color: #2d3748;
}

.internal-links ul {
list-style: none;
margin-left: 0;
}

.internal-links li {
padding: 10px 0;
}

.internal-links a {
color: #667eea;
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}

.internal-links a:hover {
color: #764ba2;
text-decoration: underline;
}

.internal-links a:before {
content: "→ ";
margin-right: 8px;
}

/* Trust Signals */
.trust-signals {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin: 30px 0;
}

.trust-item {
text-align: center;
padding: 20px;
}

.trust-item .icon {
font-size: 3em;
margin-bottom: 10px;
}

.trust-item h4 {
margin: 10px 0;
color: #2d3748;
}

.trust-item p {
font-size: 0.95em;
color: #718096;
}

/* Alert Box */
.alert-2025 {
background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
color: white;
padding: 20px;
border-radius: 8px;
margin: 20px 0;
text-align: center;
}

.alert-2025 strong {
font-size: 1.2em;
}

Online Mortgage Payment Calculator: Free Simulator 2025

Calculate your mortgage payment in 30 seconds with our free professional simulator

🔄 Rates updated January 2025 | Euribor 2.65% | IRS 2.48%
📊 2025 Update: Mortgage rates are slightly declining from the 2023 peak. Average fixed rate: 3.9% | Average variable rate: 4.5% | Great time to consider refinancing!
🔒

100% Free

No hidden costs

Instant Results

Real-time calculation
📊

Detailed Schedule

Complete amortization

Over 65,000 users

Used by thousands of Italians

🧮 Mortgage Payment Calculator 2025

Enter your mortgage details to calculate the monthly payment with rates updated to January 2025. View total interest and the complete amortization schedule.
💡 Average rates 2025: Fixed 3.7-4.5% | Variable 4.2-5.1%

Monthly Payment

796 €
Total to Repay 238,800 €
Total Interest 88,800 €
Estimated TAEG 4.2%
First Payment February 2025

How the Mortgage Payment Calculator Works in 2025

Mortgage payment calculation is one of the most important operations when deciding to buy a home. Our online mortgage payment calculator allows you to simulate for free and instantly how much you will have to pay each month for your property financing, using rates updated to January 2025. The 2025 mortgage simulation is essential for planning your family budget considering the new economic context: after the rate peak in 2023, in 2025 we are seeing a gradual decline making mortgages more accessible. With our tool you can compare different solutions by modifying the amount, duration, and interest rate in real time.

📈 2025 Rate Scenario

Euribor 3 months: 2.65% (down from 3.9% in 2023) IRS 20 years: 2.48% (stable) ECB Rate: 3.00% (further reductions expected in 2025) Average bank spread: 1.20-1.80%

💰 Good news: Fixed rates in 2025 have become competitive again compared to variable rates, offering greater security at contained costs.

Why Use Our 2025 Mortgage Simulator

  • 100% Free: no cost, no registration required
  • 2025 Updated Rates: real-time market data from Euribor and IRS
  • Precise Calculation: uses the French amortization formula, the same used by Italian banks
  • Immediate Results: see the monthly payment in real time as you modify parameters
  • Amortization Schedule: view the payment-by-payment breakdown of principal and interest
  • Rate Comparison: simulate both fixed and variable rates to choose the best solution in the 2025 context
  • 2025 Regulations: includes the latest legislative and tax provisions

✅ 2025 News: First Home Mortgage Benefits

  • Under 36 extended: The CONSAP Guarantee for young people has been extended to 2025
  • 100% Mortgage: Possibility of financing the entire property value for under 36
  • Tax deduction: Confirmed 19% deduction on interest (max 4,000 EUR/year)
  • Reduced substitute tax: 0.25% for primary residence (2% for other properties)
  • No penalties: Free early repayment for all primary residence mortgages

Calculate Your Mortgage Payment in 3 Simple Steps

  1. Enter the mortgage amount: indicate how much capital you want to request from the bank (generally 80% of the property value, 100% for under 36)
  2. Choose the duration: select the number of years in which you want to repay the loan (from 5 to 40 years)
  3. Set the interest rate: use the 2025 average rates (3.9% fixed, 4.5% variable) or the one proposed by your bank
The calculator will automatically process the monthly mortgage payment, the total interest you will pay, and the overall amount to repay. You can also view the complete amortization schedule.

Mortgage Payment Calculation Formula

Our calculator uses the French amortization formula, the most common method in Italy for property mortgages. The formula is:

R = (C × i) / (1 - (1 + i)^-n)

Where:

  • R = monthly payment
  • C = financed capital
  • i = monthly rate (annual TAN / 12)
  • n = total number of payments (years × 12)
With French amortization, the payment remains constant for the entire mortgage duration, but the composition changes: initially you pay more interest and less principal, while toward the end you mainly repay capital.

📈 Practical Mortgage Payment Calculation Examples 2025

Here are some concrete examples with real January 2025 rates to understand how much a mortgage costs based on the requested amount, duration, and rate type.

Example 1: First Home Under 36

Amount: 150,000 € (100% property value) Duration: 25 years 2025 Fixed rate: 3.7% CONSAP Guarantee: Active
Monthly payment 774 € Total interest: 82,200 € Annual tax deduction: ~760 €

Example 2: Variable Rate Mortgage 2025

Amount: 200,000 € Duration: 30 years Variable rate: 4.5% (Euribor 2.65% + spread 1.85%)
Initial monthly payment 1,013 € Total interest: 164,680 € ⚠️ Variable payment every 3-6 months

Example 3: Convenient Short Mortgage

Amount: 100,000 € Duration: 15 years 2025 Fixed rate: 3.6%
Monthly payment 722 € Total interest: 29,960 € ✅ Maximum interest savings

⚠️ Important: Additional Costs 2025

These examples calculate only principal and interest. In the total cost calculation you must also consider:
  • Fire/explosion insurance: 180-350 €/year (mandatory)
  • Life insurance: 250-600 €/year (optional but often required)
  • Processing fees: 250-600 € (one-time, 2025)
  • Appraisal fees: 250-450 € (one-time)
  • Substitute tax: 0.25% for primary residence (375€ on 150,000€), 2% for other properties
  • Notary fees: 1,500-3,000 € (purchase + mortgage registration)

📊 Mortgage Payment Comparison Table 2025

Compare monthly payments with real January 2025 rates based on different amounts and durations. Data updated with average fixed rate 3.9% and variable 4.5%.
Mortgage Amount Duration Rate Type TAN 2025 Monthly Payment Total Interest
100,000 € 20 years Fixed 3.8% 598 € 43,520 €
100,000 € 25 years Fixed 3.9% 516 € 54,800 €
100,000 € 30 years Variable 4.5% 507 € 82,520 €
150,000 € 20 years Fixed 3.7% 890 € 63,600 €
150,000 € 25 years Fixed 3.9% 774 € 82,200 €
150,000 € 30 years Variable 4.5% 760 € 123,600 €
200,000 € 20 years Fixed 4.0% 1,212 € 90,880 €
200,000 € 25 years Fixed 4.1% 1,067 € 120,100 €
200,000 € 30 years Variable 4.5% 1,013 € 164,680 €
250,000 € 25 years Fixed 4.2% 1,358 € 157,400 €
300,000 € 30 years Fixed 4.3% 1,485 € 234,600 €

💡 2025 Rate Considerations

Fixed Rate: In 2025 it has become competitive again thanks to the decline of IRS. It offers total protection from future ECB changes. Ideal for those seeking certainty.

Variable Rate: Currently higher than fixed, but could become advantageous if the ECB continues to cut rates in 2025-2026 as analysts predict. Riskier but potentially rewarding.

💰 2025 Strategy: Many experts recommend the fixed rate for those buying now, to lock in rates before any future increases. Variable can be interesting for those with income margin to absorb increases.

🔄 Fixed vs Variable Rate: 2025 Comparison

In 2025 the fixed vs variable rate debate has different characteristics compared to previous years. After the period of very low rates (2020-2021) and the subsequent surge (2022-2023), we are now in a phase of stabilization and slight decline.

Rate Scenario January 2025

📊 Current Situation

Average Fixed Rate: 3.7-4.5% (IRS 2.48% + spread 1.2-2.0%) Average Variable Rate: 4.2-5.1% (Euribor 2.65% + spread 1.5-2.4%)

Difference: Fixed is currently cheaper or equivalent to variable, the opposite situation compared to 2015-2021.

Fixed Rate in 2025: Security and Convenience

The fixed rate mortgage in 2025 presents particularly interesting characteristics:

✅ Advantages of Fixed Rate 2025

  • Absolute certainty: The payment remains unchanged for 20-30 years, no surprises
  • Competitive rates: 3.7-4.5%, historically acceptable and lower/equal to variable
  • Future protection: If the economy recovers and rates rise, you are protected
  • Budget planning: Ideal for families with fixed income
  • Peace of mind: Zero stress about market fluctuations
  • Declining IRS: The reference parameter (2.48%) is lower than in 2023 (3.2%)

❌ Disadvantages of Fixed Rate 2025

  • No benefit from future drops: If Euribor falls below 1.5%, variable becomes much cheaper
  • Less flexible refinancing: If you want to switch banks, you might only find similar fixed rates
  • Opportunity cost: You might pay more if rates crash (possible but unlikely scenario in the short term)

Variable Rate in 2025: Risk and Opportunity

The variable rate mortgage in 2025 is less attractive than in the past, but can make sense in some scenarios:

✅ Advantages of Variable Rate 2025

  • Potential future savings: If the ECB continues to cut rates, the payment will decrease
  • Greater flexibility: Easier to refinance if you find better offers
  • Favorable scenario: Forecasts indicate ECB rates at 2.0-2.5% by end of 2025
  • Negotiable spread: Some banks offer lower spreads on variable

❌ Disadvantages of Variable Rate 2025

  • Currently more expensive: Average rate 4.5% vs 3.9% for fixed
  • Payment uncertainty: Can vary by ±100-200€ in a few months
  • Risk of increase: If inflation returns, the ECB could raise rates
  • Financial stress: Difficult to plan long-term
  • High Euribor: 2.65% is still high compared to the historical average (0.5%)

CAP Rate: The 2025 Compromise

In 2025 many banks offer the variable rate with CAP, which limits the maximum possible increase:

🛡️ How CAP Works

Example: Variable rate with CAP at 5%
  • Initial rate: 4.3% (Euribor 2.65% + spread 1.65%)
  • If Euribor rises to 4%: your rate goes up to the maximum limit of 5% (not 5.65%)
  • If Euribor drops to 1%: your rate drops to 2.65%

Cost: The spread is generally 0.2-0.4% higher, but you have protection from surges.

Which to Choose in 2025? The Guide

✅ Choose FIXED RATE if:
  • It is your first mortgage and you want total certainty
  • The payment is already at 30-35% of your income (little margin)
  • You have a fixed income (employee, retiree)
  • You plan to keep the mortgage for the full duration (15-30 years)
  • You do not want to think about it anymore and sleep soundly
  • You think the economy will recover and rates could rise

⚠️ Choose VARIABLE RATE if:

  • You have at least 40-50% income margin (can absorb increases of 200-300€)
  • You strongly believe rates will fall below 2% in the next 2-3 years
  • You have variable or growing income (self-employed, established professional)
  • You plan to sell the house or pay off the mortgage within 10 years
  • You are willing to monitor the market and consider refinancing if necessary

🛡️ Choose VARIABLE WITH CAP if:

  • You want to benefit from potential drops but have protection from increases
  • You have a 35-40% income margin
  • You accept paying a slightly higher spread for security
  • You want a compromise between fixed and variable

Direct Comparison: Fixed vs Variable Rate 2025

Feature Fixed Rate Variable Rate
Average TAN January 2025 3.7-4.5% 4.2-5.1%
Monthly payment (150k€, 25 years) 774€ (fixed) 820€ (variable)
Predictability 100% for 25 years Variable every 3-6 months
Risk None Medium-high
Current convenience ✅ Better ❌ More expensive
Future potential Stable May improve if rates drop
Ideal for Those who want security Those who can take risks
💡 Expert Advice 2025: With the current situation, the fixed rate is the most prudent choice for 80% of borrowers. Variable can make sense only if you have ample income margin and a short time horizon (< 10 years).

Ready to Calculate Your 2025 Payment?

Use our free calculator with updated rates and find out in 30 seconds how much you will pay each month Calculate Your Payment Now

❓ Frequently Asked Questions about Mortgages 2025

How do you calculate the mortgage payment in 2025?+
The mortgage payment is calculated using the French amortization formula, considering:
  1. Financed capital amount (e.g., 150,000 €)
  2. Mortgage duration in years (e.g., 25 years = 300 monthly payments)
  3. Annual interest rate (TAN) updated 2025 (e.g., 3.9% fixed, 4.5% variable)
Our calculator uses real January 2025 rates (IRS 2.48% for fixed, Euribor 2.65% for variable) plus the average bank spread. The payment includes both principal repayment and interest payment.
Is fixed or variable rate more convenient in 2025?+
In 2025 the fixed rate is generally more convenient, the opposite situation compared to 2015-2021. Average rates January 2025:
  • Fixed rate: 3.7-4.5% → Payment on 150k€/25 years: 774€
  • Variable rate: 4.2-5.1% → Payment on 150k€/25 years: 820€
Fixed is better if: You want certainty, have limited income margin, it is your first mortgage. Variable may be better if: You have ample income margin (40%+), you think rates will drop below 2% within 2-3 years, you have a short horizon (< 10 years). 💡 2025 Advice: 80% of experts recommend fixed to lock in current rates before any potential increases.
How much mortgage can I apply for with my salary in 2025?+
Banks apply the rule of 30-35% of net monthly income. With 2025 rates (average 4%): Practical examples:
  • Net salary 1,500€ → Max payment 450-525€ → Max mortgage ~95,000€ (25 years)
  • Net salary 2,000€ → Max payment 600-700€ → Max mortgage ~135,000€ (25 years)
  • Net salary 2,500€ → Max payment 750-875€ → Max mortgage ~170,000€ (25 years)
  • Net salary 3,000€ → Max payment 900-1,050€ → Max mortgage ~205,000€ (25 years)
  • Net salary 3,500€ → Max payment 1,050-1,225€ → Max mortgage ~245,000€ (25 years)
Influencing factors:
  • Contract type (permanent = higher amount)
  • Age (younger = longer duration = higher amount)
  • Other ongoing payments (car, loans = lower amount)
  • Co-ownership (two incomes = much higher amount)
  • Under 36 with CONSAP Guarantee = up to 100% property value
What are the 2025 first home mortgage benefits?+
The 2025 benefits for first home purchase have been confirmed and enhanced: 1. CONSAP Under 36 Guarantee (extended to 2025):
  • ✅ Mortgage up to 100% of the property value
  • ✅ ISEE up to 40,000 euros per year
  • ✅ The State guarantees up to 80% of the mortgage
  • ✅ More advantageous rates thanks to the guarantee
2. Interest tax deduction:
  • 19% on interest paid
  • Maximum 4,000€ deductible interest per year
  • Tax savings up to 760€/year
3. Reduced substitute tax:
  • 0.25% for first home mortgages (vs 2% for other properties)
  • E.g.: on 150,000€ you pay 375€ instead of 3,000€
4. Free early repayment:
  • Zero penalties for closing the mortgage early
  • Valid for all first home mortgages
5. Reduced VAT:
  • 4% instead of 10% if buying from a builder
  • Savings of thousands of euros
Can I refinance my mortgage in 2025? Is it worth it?+
Yes, and in 2025 it could be particularly worthwhile! When refinancing is worth it:
  • ✅ You have a variable rate mortgage above 5% → You can switch to fixed at 3.9% and save ~250€/month on 150k€
  • ✅ You have an old fixed rate above 5% → Difficult to find better, but try asking
  • ✅ You still have 10+ years remaining → The overall savings are significant
  • ✅ The remaining debt is above 50,000€ → Worth the process
Concrete example 2025: Current mortgage: 150,000€ remaining, variable rate 5.2%, 20 years, payment 1,000€ Refinance to fixed 3.9%, 20 years, new payment 900€ Savings: 100€/month = 1,200€/year = 24,000€ total! Refinancing advantages 2025:
  • 🆓 Completely free (by law)
  • 🚫 No penalty from the originating bank
  • ⚡ Timeline: 30-60 days
  • ✅ You can change rate type (from variable to fixed or vice versa)
  • 💰 Lower spreads: banks make competitive offers to acquire customers
💡 Advice: Even if you are satisfied, check refinancing offers every year. They could save you tens of thousands of euros!
How will mortgage rates change in 2025?+
Forecasts for 2025 according to major economic analysts: ECB Scenario:
  • Current rate: 3.00% (January 2025)
  • June 2025 forecast: 2.50%
  • December 2025 forecast: 2.00-2.25%
Impact on Euribor (variable rate):
  • January 2025: 2.65%
  • Mid-2025 forecast: 2.20-2.40%
  • End-2025 forecast: 1.80-2.10%
  • 📉 Trend: Gradual decline
Impact on IRS (fixed rate):
  • January 2025: 2.48%
  • Mid-2025 forecast: 2.30-2.50% (stable)
  • End-2025 forecast: 2.20-2.40%
  • ➡️ Trend: Stable with slight decline
What this means for you:
  • Fixed rate mortgages: Could drop by 0.1-0.3% by year-end (from 3.9% to 3.6-3.8%)
  • Variable rate mortgages: Could drop by 0.5-0.8% (from 4.5% to 3.7-4.0%), becoming more competitive
  • Refinancing: Those with high variable mortgages will see payments decrease automatically
⚠️ Warning: These are forecasts, not certainties. Geopolitical events, inflation, or economic crises can change the scenario. This is why fixed rate offers protection.
What does the mortgage payment include in 2025?+
The monthly payment includes only principal and interest. But there are other costs to consider: INCLUDED in the monthly payment:
  • ✅ Principal portion (loan repayment)
  • ✅ Interest portion (financing cost)
NOT included - Monthly/Annual costs:
  • 💰 Fire/explosion insurance: 180-350€/year (mandatory, 2025)
  • 💰 Life insurance: 250-600€/year (optional but often required)
  • 💰 Account management fees: 0-10€/month (depends on the bank)
NOT included - One-time costs (2025):
  • 💰 Processing fees: 250-600€
  • 💰 Property appraisal: 250-450€
  • 💰 Substitute tax: 0.25% first home (375€ on 150k€), 2% others
  • 💰 Notary fees: 1,500-3,000€ (deed + mortgage registration)
  • 💰 First payment collection: 50-100€
Complete example (150,000€ first home mortgage):
  • Monthly payment (rate 3.9%, 25 years): 774€
  • + Fire/explosion insurance: ~20€/month
  • + Life insurance: ~35€/month
  • = Total monthly expense: ~829€
  • + Initial one-time costs: ~3,500-5,000€
Can I pay off the mortgage early in 2025?+
Yes, you can prepay the mortgage at any time. First Home Mortgages (2025 regulations):
  • Zero penalties for total or partial prepayment
  • ✅ Right guaranteed by law since 2007
  • ✅ The bank cannot refuse
  • ✅ Notification with 30 days advance notice
Other Properties (2025 regulations):
  • Maximum penalty: 0.50% of remaining capital (if more than 3 years remain)
  • Maximum penalty: 0.20% of remaining capital (if less than 3 years remain)
  • Example: 100,000€ remaining, 5 years left → max penalty 500€
When is early repayment worth it in 2025:
  • First 10-15 years: You are paying a lot of interest, you save tremendously
  • High rate: If you have a mortgage above 5%, closing it saves more than investing
  • Available liquidity: Inheritance, property sale, savings
  • Last 5-10 years: You are mainly paying principal, little interest saved
  • Profitable investments: If you can invest at 6-7%, better to keep the mortgage at 4%
Practical example: Mortgage 150,000€, rate 4%, 25 years, 10 years paid Remaining debt: ~105,000€ Future interest to pay: ~35,000€ By paying off now you save 35,000€!

Calculate Your Payment with Real 2025 Rates

Use our updated simulator with Euribor 2.65%, IRS 2.48% and real bank spreads from January 2025 Start Free Calculation

✓ 100% Free ✓ No Registration ✓ Real-Time Updated Rates ✓ Immediate Results

Last updated: January 15, 2025 | Updated rates: ECB 3.00%, Euribor 3m 2.65%, IRS 20y 2.48% | Regulations: Current Italian law 2025 | Data source: Bank of Italy, ECB, Assofin

The rates shown are market averages updated to January 2025. Actual rates may vary based on the bank, the applicant's profile, and the specific mortgage conditions.