/**
 * CarsNow Finance & EMI Calculator Stylesheet
 */

.vv-finance-page {
	background-color: #0b0c0e;
	color: #ffffff;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	min-height: 100vh;
	padding-top: 100px;
	padding-bottom: 80px;
}

.vv-finance-hero {
	position: relative;
	padding: 60px 0 50px;
	background: radial-gradient(circle at 50% 10%, rgba(232, 0, 28, 0.12) 0%, transparent 65%);
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vv-finance-hero__inner {
	max-width: 860px;
	margin: 0 auto;
	padding: 0 24px;
}

.vv-finance-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(232, 0, 28, 0.12);
	border: 1px solid rgba(232, 0, 28, 0.25);
	color: #ff334b;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	padding: 6px 16px;
	border-radius: 100px;
	margin-bottom: 18px;
}

.vv-finance-hero__title {
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.12;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
}

.vv-finance-hero__title em {
	font-style: normal;
	color: #e8001c;
}

.vv-finance-hero__subtitle {
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
	max-width: 640px;
	margin: 0 auto 28px;
}

.vv-finance-hero__pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.vv-finance-hero__pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 100px;
	padding: 8px 18px;
	font-size: 0.85rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
}

.vv-finance-hero__pill svg {
	width: 16px;
	height: 16px;
	color: #e8001c;
}

/* Calculator Section */
.vv-calc-section {
	max-width: 1080px;
	margin: -20px auto 60px;
	padding: 0 24px;
	position: relative;
	z-index: 10;
}

.vv-calc-card {
	background: #131418;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 40px;
}

.vv-calc-inputs {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.vv-calc-group {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vv-calc-group__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.vv-calc-group__label {
	font-size: 0.95rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.8);
}

.vv-calc-group__val {
	font-size: 1.25rem;
	font-weight: 800;
	color: #e8001c;
	font-family: 'Outfit', 'Manrope', sans-serif;
}

.vv-calc-range {
	-webkit-appearance: none;
	width: 100%;
	height: 6px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.15);
	outline: none;
	cursor: pointer;
}

.vv-calc-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #e8001c;
	cursor: pointer;
	box-shadow: 0 0 12px rgba(232, 0, 28, 0.6);
	transition: transform 0.15s ease;
}

.vv-calc-range::-webkit-slider-thumb:hover {
	transform: scale(1.2);
}

.vv-calc-ticks {
	display: flex;
	justify-content: space-between;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.4);
	font-weight: 600;
}

/* Results Display */
.vv-calc-results {
	background: #181a20;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
}

.vv-calc-results__label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 700;
	margin-bottom: 8px;
}

.vv-calc-results__amount {
	font-size: 2.8rem;
	font-weight: 800;
	color: #ffffff;
	font-family: 'Outfit', 'Manrope', sans-serif;
	line-height: 1;
	margin-bottom: 24px;
}

.vv-calc-results__amount span {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 600;
}

.vv-calc-breakup {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	margin-bottom: 24px;
	text-align: left;
}

.vv-calc-breakup__row {
	display: flex;
	justify-content: space-between;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.7);
}

.vv-calc-breakup__row strong {
	color: #ffffff;
}

.vv-calc-apply-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #e8001c;
	color: #ffffff;
	text-decoration: none;
	font-weight: 800;
	font-size: 0.95rem;
	padding: 16px;
	border-radius: 12px;
	transition: all 0.25s ease;
	box-shadow: 0 4px 20px rgba(232, 0, 28, 0.35);
}

.vv-calc-apply-btn:hover {
	background: #ff1a35;
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(232, 0, 28, 0.5);
	color: #ffffff;
}

/* Features & Steps Section */
.vv-finance-grid {
	max-width: 1080px;
	margin: 0 auto 60px;
	padding: 0 24px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.vv-finance-box {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 16px;
	padding: 28px;
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.vv-finance-box:hover {
	transform: translateY(-3px);
	border-color: rgba(232, 0, 28, 0.3);
}

.vv-finance-box__icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(232, 0, 28, 0.12);
	color: #e8001c;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.vv-finance-box__title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 8px;
}

.vv-finance-box__desc {
	font-size: 0.88rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

/* Bank Partners Banner */
.vv-finance-banks {
	max-width: 1080px;
	margin: 0 auto;
	padding: 40px 24px 0;
	text-align: center;
}

.vv-finance-banks__title {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 20px;
	font-weight: 700;
}

.vv-finance-banks__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

.vv-finance-bank-pill {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 10px 22px;
	font-size: 0.92rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 860px) {
	.vv-calc-card {
		grid-template-columns: 1fr;
		padding: 24px;
		gap: 32px;
	}
	.vv-calc-results__amount {
		font-size: 2.2rem;
	}
}
