/* ===== Real Estate Hero ===== */

/* .re-hero-sctn {

	padding: 60px 0 70px;

	background: linear-gradient(135deg, #f5f8fa 0%, #fff 50%, #fdf5f5 100%);

	position: relative; overflow: hidden;

}

.re-hero-sctn::before {

	content: ''; position: absolute; top: -100px; right: -100px;

	width: 400px; height: 400px;

	background: radial-gradient(circle, rgba(215,23,46,0.06) 0%, transparent 70%);

	border-radius: 50%;

} */

.re-hero-content { position: relative; z-index: 2; }

.re-hero-badge {

	display: inline-flex; align-items: center; gap: 8px;

	background: rgba(215,23,46,0.1); color: var(--primary-color1);

	font-size: 13px; font-weight: 600; padding: 8px 20px;

	border-radius: 30px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px;

}

.re-hero-content h1 {

	font-size: 40px; font-weight: 700; color: var(--primary-color2);

	line-height: 1.25; margin-bottom: 18px;

}

.re-hero-content h1 span { color: var(--primary-color1); }

.re-hero-content p {

	font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 25px; max-width: 90%;

}

.re-hero-btns { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.re-contact-btn {

	font-size: 15px; font-weight: 500; color: var(--primary-color2);

	border-bottom: 2px solid var(--primary-color1); padding-bottom: 3px;

	transition: all 0.3s; display: inline-flex; align-items: center; gap: 6px;

}

.re-contact-btn:hover { color: var(--primary-color1); gap: 10px; }

.re-hero-img-box { position: relative; }

.re-hero-img { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.08); }

.re-hero-img img { width: 100%; display: block; }

.re-hero-floating-card {

	position: absolute; background: #fff; border-radius: 12px;

	padding: 12px 18px; display: flex; align-items: center; gap: 10px;

	box-shadow: 0 10px 30px rgba(0,0,0,0.08); font-weight: 600; font-size: 14px;

	color: var(--primary-color2); animation: reFloat 4s ease-in-out infinite;

}

.re-hero-floating-card i { color: var(--primary-color1); font-size: 18px; }

.re-flt-1 { top: 20px; left: -20px; animation-delay: 0s; }

.re-flt-2 { bottom: 30px; right: -20px; animation-delay: 1.5s; }

@keyframes reFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ===== Challenges ===== */

/* .re-challenges-sctn { padding: 80px 0; background: #f8f9fa; } */

.re-challenges-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 45px; }

.re-challenge-card {

	background: #fff; border-radius: 16px; padding: 30px 25px;

	box-shadow: 0 5px 20px rgba(0,0,0,0.04); border: 1px solid #f0f0f0;

	transition: all 0.3s ease; text-align: center;

}

.re-challenge-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(215,23,46,0.08); border-color: rgba(215,23,46,0.1); }

.re-challenge-icon {

	width: 55px; height: 55px; background: rgba(215,23,46,0.08);

	border-radius: 14px; display: flex; align-items: center; justify-content: center;

	margin: 0 auto 18px; font-size: 22px; color: var(--primary-color1); transition: all 0.3s;

}

.re-challenge-card:hover .re-challenge-icon { background: var(--primary-color1); color: #fff; }

.re-challenge-card h6 { font-size: 16px; font-weight: 600; color: var(--primary-color2); margin-bottom: 8px; }

.re-challenge-card p { font-size: 14px; color: #666; margin: 0; line-height: 1.6; }

/* ===== Solutions ===== */

.re-solutions-sctn { padding: 80px 0; background: #fff; }

.re-solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 45px; }

.re-solution-card {

	background: #fff; border-radius: 16px; padding: 30px 20px; text-align: center;

	box-shadow: 0 5px 20px rgba(0,0,0,0.04); border: 1px solid #f0f0f0; transition: all 0.3s ease;

}

.re-solution-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(215,23,46,0.08); border-color: rgba(215,23,46,0.1); }

.re-sol-icon {

	width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-color1), #ff4a5a);

	border-radius: 16px; display: flex; align-items: center; justify-content: center;

	margin: 0 auto 18px; font-size: 24px; color: #fff; box-shadow: 0 8px 20px rgba(215,23,46,0.2);

}

.re-solution-card h5 { font-size: 16px; font-weight: 600; color: var(--primary-color2); margin-bottom: 8px; }

.re-solution-card p { font-size: 13px; color: #666; margin: 0; line-height: 1.6; }

/* ===== Benefits ===== */

/* .re-benefits-sctn { padding: 80px 0; background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%); } */

.re-benefits-sctn .title-wrap p { max-width: 720px; margin: 0 auto; font-size: 15px; color: #666; line-height: 1.7; }

.re-benefits-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 45px; }

.re-benefit-stat {

	display: flex; align-items: center; gap: 16px; padding: 22px 24px;

	background: #fff; border-radius: 14px; border: 1px solid #f0f0f0;

	box-shadow: 0 5px 20px rgba(0,0,0,0.04); transition: all 0.3s;

}

.re-benefit-stat:hover { transform: translateY(-4px); border-color: rgba(215,23,46,0.15); box-shadow: 0 10px 30px rgba(215,23,46,0.08); }

.re-benefit-stat-icon {

	width: 54px; height: 54px; min-width: 54px;

	background: linear-gradient(135deg, var(--primary-color1), #ff4a5a); border-radius: 14px;

	display: flex; align-items: center; justify-content: center;

	font-size: 22px; color: #fff; box-shadow: 0 8px 20px rgba(215,23,46,0.2);

}

.re-benefit-stat-info h4 { font-size: 24px; font-weight: 700; color: var(--primary-color2); line-height: 1.2; margin-bottom: 2px; }

.re-benefit-stat-info span { font-size: 14px; color: #666; }

.re-benefits-timeline { position: relative; max-width: 940px; margin: 50px auto 0; padding: 5px 0; }

.re-benefits-timeline::before {

	content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px;

	background: linear-gradient(180deg, var(--primary-color1) 0%, rgba(215,23,46,0.12) 100%);

	border-radius: 5px; transform: translateX(-50%);

}

.re-timeline-item { position: relative; width: 50%; padding: 0 50px 35px 0; }

.re-timeline-item:nth-child(even) { margin-left: 50%; padding: 0 0 35px 50px; }

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

.re-timeline-dot {

	position: absolute; top: 22px; right: -32px; width: 64px; height: 64px;

	background: #fff; border: 2px solid rgba(215,23,46,0.2); border-radius: 50%;

	display: flex; align-items: center; justify-content: center;

	font-size: 22px; color: var(--primary-color1);

	box-shadow: 0 8px 20px rgba(215,23,46,0.15); z-index: 2; transition: all 0.3s;

}

.re-timeline-item:nth-child(even) .re-timeline-dot { right: auto; left: -32px; }

.re-timeline-item:hover .re-timeline-dot {

	background: linear-gradient(135deg, var(--primary-color1), #ff4a5a);

	color: #fff; transform: scale(1.08);

}

.re-timeline-card {

	position: relative; background: #fff; border-radius: 16px;

	border: 1px solid #f0f0f0; box-shadow: 0 5px 20px rgba(0,0,0,0.05);

	padding: 26px 28px; transition: all 0.3s;

}

.re-timeline-card::before {

	content: ''; position: absolute; top: 28px; right: -9px; width: 16px; height: 16px;

	background: #fff; border-top: 1px solid #f0f0f0; border-right: 1px solid #f0f0f0;

	transform: rotate(45deg);

}

.re-timeline-item:nth-child(even) .re-timeline-card::before {

	right: auto; left: -9px; border-right: 0; border-left: 1px solid #f0f0f0;

}

.re-timeline-item:hover .re-timeline-card {

	transform: translateY(-5px); border-color: rgba(215,23,46,0.15);

	box-shadow: 0 12px 35px rgba(215,23,46,0.08);

}

.re-timeline-num {

	display: inline-flex; align-items: center; justify-content: center;

	min-width: 36px; height: 36px; padding: 0 10px;

	background: rgba(215,23,46,0.08); color: var(--primary-color1);

	font-size: 14px; font-weight: 700; border-radius: 9px; margin-bottom: 12px;

}

.re-timeline-card h6 { font-size: 17px; font-weight: 600; color: var(--primary-color2); margin-bottom: 6px; }

.re-timeline-card p { font-size: 14px; color: #666; margin: 0; line-height: 1.7; }

.re-benefits-btns { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 40px; }

/* ===== Responsive ===== */
@media (max-width: 1399px) {
	.re-hero-content h1 { font-size: 25px;margin-bottom: 15px; }
}
@media (max-width: 992px) {

	.re-hero-content h1 { font-size: 23px; }

	.re-hero-content p { max-width: 100%; }

	/* .re-hero-img-box { margin-top: 40px; } */

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

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

	.re-flt-1 { left: 10px; } .re-flt-2 { right: 10px; }

}

@media (max-width: 768px) {

	.re-benefits-stats { grid-template-columns: 1fr; }

	.re-benefits-timeline { max-width: 100%; margin-top: 40px; }

	.re-benefits-timeline::before { left: 20px; transform: none; }

	.re-timeline-item,
	.re-timeline-item:nth-child(even) { width: 100%; margin-left: 0; padding: 0 0 30px 70px; }

	.re-timeline-dot,
	.re-timeline-item:nth-child(even) .re-timeline-dot {
		left: -1px; right: auto; width: 42px; height: 42px; font-size: 16px; top: 20px;
	}

	.re-timeline-card::before,
	.re-timeline-item:nth-child(even) .re-timeline-card::before {
		left: -9px; right: auto; border-left: 1px solid #f0f0f0; border-right: 0;
	}

}

@media (max-width: 576px) {

	.re-hero-content h1 { font-size: 26px; }

	.re-challenges-grid { grid-template-columns: 1fr; }

	.re-solutions-grid { grid-template-columns: 1fr; }

	.re-hero-btns { flex-direction: column; align-items: flex-start; }

}
