/* Ocean Small Finance - Main Stylesheet */

/* ========================
   CSS Variables
   ======================== */
:root {
	--primary-green: #00d46f;
	--primary-green-dark: #00b85e;
	--green-600: #16a34a;
	--emerald-500: #10b981;

	--gray-50: #f9fafb;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
	--gray-300: #d1d5db;
	--gray-400: #9ca3af;
	--gray-500: #6b7280;
	--gray-600: #4b5563;
	--gray-700: #374151;
	--gray-800: #1f2937;
	--gray-900: #111827;

	--yellow-400: #facc15;
	--orange-500: #f97316;
	--blue-400: #60a5fa;
	--cyan-400: #22d3ee;
	--purple-400: #a78bfa;
	--pink-400: #f472b6;
	--red-500: #ef4444;
}

/* ========================
   Base Styles
   ======================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		sans-serif;
	line-height: 1.6;
	color: var(--gray-700);
	background-color: #ffffff;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	color: var(--gray-900);
}

a {
	text-decoration: none;
	color: #1E9E4A;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--primary-green-dark);
}

/* ========================
   Utility Classes
   ======================== */
.gradient-text {
	background: linear-gradient(135deg, #052b19 0%, var(--green-600) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.gradient-bg {
	background: linear-gradient(
		135deg,
		var(--primary-green) 0%,
		var(--green-600) 100%
	);
}

.glass-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--gray-200);
	border-radius: 24px;
}

.section-padding {
	padding: 100px 0;
}

/* ========================
   Hero Section
   ======================== */
.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	background: #ffffff;
	overflow: hidden;
}

.hero-bg-element {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.4;
	animation: float 20s ease-in-out infinite;
}

.hero-bg-element-1 {
	top: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	background: rgba(0, 212, 111, 0.2);
}

.hero-bg-element-2 {
	bottom: -100px;
	left: -100px;
	width: 400px;
	height: 400px;
	background: rgba(16, 185, 129, 0.2);
	animation-delay: -10s;
}

@keyframes float {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg) scale(1);
	}
	25% {
		transform: translate(20px, -20px) rotate(45deg) scale(1.1);
	}
	50% {
		transform: translate(-10px, 20px) rotate(90deg) scale(1);
	}
	75% {
		transform: translate(-30px, -10px) rotate(45deg) scale(1.1);
	}
}

.hero-logo {
	height: 80px;
}

@media (min-width: 768px) {
	.hero-logo {
		height: 96px;
	}
}

.trust-badge {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	padding: 12px 24px;
	border-radius: 50px;
	border: 1px solid var(--gray-200);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.trust-badge-icon {
	color: var(--primary-green);
	width: 20px;
	height: 20px;
}

.trust-count {
	font-size: 12px;
	background: #1E9E4A;
	color: white;
	padding: 4px 12px;
	border-radius: 50px;
}

.hero-title {
	font-size: 3rem;
	line-height: 1.1;
}

@media (min-width: 768px) {
	.hero-title {
		font-size: 4rem;
	}
}

@media (min-width: 992px) {
	.hero-title {
		font-size: 4.5rem;
	}
}

.hero-title .highlight {
	position: relative;
	display: inline-block;
}

.hero-title .highlight::after {
	content: "";
	position: absolute;
	inset: -8px;
	background: linear-gradient(
		135deg,
		rgba(0, 212, 111, 0.2) 0%,
		rgba(16, 185, 129, 0.2) 100%
	);
	filter: blur(20px);
	z-index: -1;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.7;
	}
	50% {
		transform: scale(1.1);
		opacity: 1;
	}
}

.hero-subtitle {
	font-size: 1.5rem;
	color: var(--gray-700);
}

@media (min-width: 768px) {
	.hero-subtitle {
		font-size: 1.75rem;
	}
}

.feature-mini-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	padding: 24px;
	border-radius: 16px;
	border: 1px solid var(--gray-200);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.feature-mini-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 212, 111, 0.15);
}

.feature-mini-card .icon {
	width: 48px;
	height: 48px;
	color: var(--primary-green);
	margin-bottom: 12px;
}

.feature-mini-card h3 {
	font-size: 1.25rem;
	margin-bottom: 8px;
}

.feature-mini-card p {
	color: var(--gray-600);
	font-size: 0.9rem;
	margin: 0;
}

.feature-check-list {
	list-style: none;
	padding: 0;
}

.feature-check-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	color: var(--gray-700);
}

.feature-check-list li i {
	color: var(--primary-green);
	font-size: 1.25rem;
}

/* Hero Form */
.hero-form-container {
	position: relative;
}

.hero-form-glow {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(0, 212, 111, 0.2) 0%,
		rgba(16, 185, 129, 0.2) 100%
	);
	border-radius: 24px;
	filter: blur(40px);
}

.hero-form {
	position: relative;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-radius: 24px;
	padding: 32px;
	border: 1px solid var(--gray-200);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.hero-form-badge {
	position: absolute;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(
		135deg,
		var(--yellow-400) 0%,
		var(--orange-500) 100%
	);
	color: white;
	padding: 8px 24px;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
	display: flex;
	align-items: center;
	gap: 8px;
	animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(-5px);
	}
}

.hero-form h2 {
	font-size: 1.75rem;
	margin-bottom: 8px;
}

.hero-form p {
	color: var(--gray-600);
	margin-bottom: 24px;
}

.hero-form .form-control {
	height: 56px;
	font-size: 1rem;
	border: 1px solid var(--gray-300);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.hero-form .form-control:focus {
	border-color: var(--primary-green);
	box-shadow: 0 0 0 4px rgba(0, 212, 111, 0.1);
}

.hero-form .form-check-input:checked {
	background-color: #1E9E4A;
	border-color: #1E9E4A;
}

.hero-form .btn-primary {
	height: 56px;
	font-size: 1.125rem;
	font-weight: 600;
	background: linear-gradient(135deg, #072b1a 0%, var(--green-600) 100%);
	border: none;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 212, 111, 0.4);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.hero-form .btn-primary:hover {
	background: linear-gradient(
		135deg,
		var(--green-600) 0%,
		var(--primary-green) 100%
	);
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(0, 212, 111, 0.5);
}

.hero-form .btn-primary::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	animation: shimmer 2s infinite;
}

@keyframes shimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.security-notice {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 0.75rem;
	color: var(--gray-600);
	margin-top: 16px;
}

.security-notice i {
	color: var(--gray-400);
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
}

.scroll-mouse {
	width: 24px;
	height: 40px;
	border: 2px solid var(--gray-400);
	border-radius: 12px;
	display: flex;
	justify-content: center;
	padding-top: 8px;
}

.scroll-dot {
	width: 4px;
	height: 8px;
	background: var(--primary-green);
	border-radius: 4px;
	animation: scroll-bounce 1.5s ease-in-out infinite;
}

@keyframes scroll-bounce {
	0%,
	100% {
		transform: translateY(0);
		opacity: 1;
	}
	50% {
		transform: translateY(12px);
		opacity: 0.3;
	}
}

/* ========================
   Stats Section
   ======================== */
.stats-section {
	padding: 64px 0;
	background: var(--gray-50);
	border-top: 1px solid var(--gray-200);
	border-bottom: 1px solid var(--gray-200);
}

.stat-item {
	text-align: center;
	transition: transform 0.3s ease;
}

.stat-item:hover {
	transform: scale(1.05);
}

.stat-icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	transition: box-shadow 0.3s ease;
}

.stat-item:hover .stat-icon {
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon i {
	font-size: 32px;
	color: white;
}

.stat-icon.blue {
	background: linear-gradient(135deg, var(--blue-400) 0%, var(--cyan-400) 100%);
}

.stat-icon.green {
	background: linear-gradient(
		135deg,
		var(--primary-green) 0%,
		var(--emerald-500) 100%
	);
}

.stat-icon.purple {
	background: linear-gradient(
		135deg,
		var(--purple-400) 0%,
		var(--pink-400) 100%
	);
}

.stat-icon.yellow {
	background: linear-gradient(
		135deg,
		var(--yellow-400) 0%,
		var(--orange-500) 100%
	);
}

.stat-value {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 8px;
}

@media (min-width: 768px) {
	.stat-value {
		font-size: 3rem;
	}
}

.stat-value.blue {
	background: linear-gradient(135deg, var(--blue-400) 0%, var(--cyan-400) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-value.green {
	background: linear-gradient(
		135deg,
		var(--primary-green) 0%,
		var(--emerald-500) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-value.purple {
	background: linear-gradient(
		135deg,
		var(--purple-400) 0%,
		var(--pink-400) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-value.yellow {
	background: linear-gradient(
		135deg,
		var(--yellow-400) 0%,
		var(--orange-500) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-label {
	font-size: 0.875rem;
	color: var(--gray-600);
}

/* ========================
   Features Section
   ======================== */
.features-section {
	padding: 100px 0;
	background: #ffffff;
	position: relative;
	overflow: hidden;
}

.features-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 100 0 L 0 0 0 100' fill='none' stroke='%23000' stroke-opacity='0.02' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
	opacity: 0.4;
}

.section-label {
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 16px;
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 24px;
}

@media (min-width: 768px) {
	.section-title {
		font-size: 3rem;
	}
}

@media (min-width: 992px) {
	.section-title {
		font-size: 3.5rem;
	}
}

.section-subtitle {
	font-size: 1.25rem;
	color: var(--gray-600);
	max-width: 800px;
	margin: 0 auto;
}

.feature-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border: 1px solid var(--gray-200);
	border-radius: 24px;
	padding: 32px;
	height: 100%;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
	border-color: var(--gray-300);
}

.feature-card:hover::before {
	opacity: 1;
}

.feature-icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
	transform: scale(1.1);
}

.feature-icon i {
	font-size: 32px;
	color: white;
}

.feature-icon.yellow-orange {
	background: linear-gradient(
		135deg,
		var(--yellow-400) 0%,
		var(--orange-500) 100%
	);
}

.feature-icon.green-emerald {
	background: linear-gradient(
		135deg,
		var(--primary-green) 0%,
		var(--emerald-500) 100%
	);
}

.feature-icon.blue-cyan {
	background: linear-gradient(135deg, var(--blue-400) 0%, #06b6d4 100%);
}

.feature-icon.purple-pink {
	background: linear-gradient(
		135deg,
		var(--purple-400) 0%,
		var(--pink-400) 100%
	);
}

.feature-icon.red-rose {
	background: linear-gradient(135deg, #f87171 0%, #fb7185 100%);
}

.feature-icon.indigo-violet {
	background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 12px;
}

.feature-card p {
	color: var(--gray-600);
	line-height: 1.7;
	margin: 0;
}

/* ========================
   Calculator Section
   ======================== */
.calculator-section {
	padding: 100px 0;
	background: #ffffff;
}

.calculator-container {
	position: relative;
}

.calculator-glow {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(0, 212, 111, 0.1) 0%,
		rgba(16, 185, 129, 0.1) 100%
	);
	border-radius: 24px;
	filter: blur(40px);
}

.calculator-card {
	position: relative;
	background: #ffffff;
	border: 1px solid var(--gray-200);
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
	.calculator-card {
		padding: 60px;
	}
}

.range-slider {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 8px;
	background: var(--gray-200);
	border-radius: 4px;
	outline: none;
	cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 24px;
	height: 24px;
	background: linear-gradient(
		135deg,
		var(--primary-green) 0%,
		var(--green-600) 100%
	);
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0, 212, 111, 0.4);
	transition: transform 0.2s ease;
}

.range-slider::-webkit-slider-thumb:hover {
	transform: scale(1.1);
}

.range-slider::-moz-range-thumb {
	width: 24px;
	height: 24px;
	background: linear-gradient(
		135deg,
		var(--primary-green) 0%,
		var(--green-600) 100%
	);
	border-radius: 50%;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0, 212, 111, 0.4);
}

.range-label {
	font-size: 1rem;
	color: var(--gray-900);
}

.range-value {
	font-size: 1.5rem;
	font-weight: 700;
}

.range-limits {
	display: flex;
	justify-content: space-between;
	font-size: 0.875rem;
	color: var(--gray-500);
	margin-top: 8px;
}

.interest-rate-box {
	background: var(--gray-50);
	border: 1px solid var(--gray-200);
	border-radius: 16px;
	padding: 24px;
}

.emi-result-box {
	background: linear-gradient(
		135deg,
		rgba(0, 212, 111, 0.1) 0%,
		rgba(16, 185, 129, 0.1) 100%
	);
	border: 1px solid rgba(0, 212, 111, 0.2);
	border-radius: 16px;
	padding: 32px;
}

.emi-value {
	font-size: 37px;
	font-weight: 700;
	color: var(--gray-900);
}

@media (min-width: 768px) {
	.emi-value {
		font-size: 4rem;
	}
}

.summary-box {
	background: var(--gray-50);
	border: 1px solid var(--gray-200);
	border-radius: 16px;
	padding: 24px;
}

.summary-box .value {
	font-size: 20px;
	font-weight: 700;
}

.summary-box .value.orange {
	color: var(--orange-500);
}

.summary-box .value.green {
	color: var(--primary-green);
}

.breakdown-item {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	font-size: 0.875rem;
}

.breakdown-item .label {
	color: var(--gray-600);
}

.breakdown-item .value {
	color: var(--gray-900);
}

.breakdown-divider {
	height: 1px;
	background: var(--gray-200);
	margin: 8px 0;
}

.breakdown-total {
	display: flex;
	justify-content: space-between;
	font-size: 1rem;
	font-weight: 600;
}

.breakdown-total .value {
	font-size: 1.25rem;
}

/* ========================
   How It Works Section
   ======================== */
.how-it-works-section {
	padding: 100px 0;
	background: var(--gray-50);
	position: relative;
	overflow: hidden;
}

.how-it-works-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	height: 800px;
	background: linear-gradient(
		135deg,
		rgba(0, 212, 111, 0.1) 0%,
		rgba(16, 185, 129, 0.1) 100%
	);
	border-radius: 50%;
	filter: blur(100px);
	animation: rotate-slow 50s linear infinite;
}

@keyframes rotate-slow {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

.step-card {
	position: relative;
	background: #ffffff;
	border: 1px solid var(--gray-200);
	border-radius: 24px;
	padding: 32px;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
}

.step-card:hover {
	border-color: var(--gray-300);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.step-number {
	position: absolute;
	top: -16px;
	right: -16px;
	width: 48px;
	height: 48px;
	background: linear-gradient(
		135deg,
		var(--yellow-400) 0%,
		var(--orange-500) 100%
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.25rem;
	font-weight: 700;
	box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.step-icon {
	width: 80px;
	height: 80px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}

.step-card:hover .step-icon {
	transform: scale(1.1);
}

.step-icon i {
	font-size: 40px;
	color: #1E9E4A;
}

.step-card h3 {
	font-size: 1.5rem;
	margin-bottom: 12px;
}

.step-card p {
	color: var(--gray-600);
	margin: 0;
}

.step-connector {
	display: none;
	position: absolute;
	top: 80px;
	left: 60%;
	width: 80%;
	height: 2px;
	background: linear-gradient(90deg, var(--gray-200), var(--gray-300));
	z-index: 0;
}

@media (min-width: 992px) {
	.step-connector {
		display: block;
	}
}

/* ========================
   Testimonials Section
   ======================== */
.testimonials-section {
	padding: 100px 0;
	background: #ffffff;
	position: relative;
	overflow: hidden;
}

.testimonials-section::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(0, 212, 111, 0.05),
		transparent 50%
	);
}

.testimonial-card {
	position: relative;
	background: #ffffff;
	border: 1px solid var(--gray-200);
	border-radius: 24px;
	padding: 32px;
	height: 100%;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
	border-color: var(--gray-300);
}

.testimonial-quote-icon {
	position: absolute;
	top: -16px;
	left: -16px;
	width: 48px;
	height: 48px;
	background: linear-gradient(
		135deg,
		var(--primary-green) 0%,
		var(--green-600) 100%
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 20px rgba(0, 212, 111, 0.3);
}

.testimonial-quote-icon i {
	font-size: 24px;
	color: white;
}

.testimonial-stars {
	display: flex;
	gap: 4px;
	margin-bottom: 24px;
}

.testimonial-stars i {
	font-size: 20px;
	color: var(--yellow-400);
}

.testimonial-text {
	font-size: 1.125rem;
	font-style: italic;
	color: var(--gray-700);
	line-height: 1.8;
	margin-bottom: 24px;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 16px;
}

.testimonial-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(0, 212, 111, 0.2);
}

.testimonial-name {
	font-weight: 600;
	color: var(--gray-900);
	margin-bottom: 4px;
}

.testimonial-role {
	font-size: 0.875rem;
	color: var(--gray-600);
}

.trust-metrics {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 32px;
	background: var(--gray-50);
	border: 1px solid var(--gray-200);
	border-radius: 16px;
	padding: 24px 32px;
}

.trust-metric-divider {
	width: 1px;
	height: 48px;
	background: var(--gray-300);
}

.trust-metric-value {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 4px;
}

.trust-metric-label {
	font-size: 0.875rem;
	color: var(--gray-600);
}

/* ========================
   CTA Section
   ======================== */
.cta-section {
	padding: 100px 0;
	background: linear-gradient(
		135deg,
		var(--primary-green) 0%,
		var(--green-600) 100%
	);
	position: relative;
	overflow: hidden;
}

.cta-bg-image {
	position: absolute;
	inset: 0;
	background-image: url("https://images.unsplash.com/photo-1686771416317-b964cc4e0002?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxoYXBweSUyMGJ1c2luZXNzJTIwcGVvcGxlJTIwc3VjY2Vzc3xlbnwxfHx8fDE3NjQ0MTQ5OTZ8MA&ixlib=rb-4.1.0&q=80&w=1080");
	background-size: cover;
	background-position: center;
	opacity: 0.1;
}

.cta-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(0, 60, 30, 0.2) 0%,
		rgba(0, 60, 30, 0.2) 100%
	);
}

.cta-floating-element {
	position: absolute;
	width: 250px;
	height: 250px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	filter: blur(60px);
}

.cta-floating-1 {
	top: 25%;
	right: 25%;
	animation: cta-float 20s ease-in-out infinite;
}

.cta-floating-2 {
	bottom: 25%;
	left: 25%;
	animation: cta-float 15s ease-in-out infinite reverse;
}

@keyframes cta-float {
	0%,
	100% {
		transform: scale(1) rotate(0deg);
	}
	50% {
		transform: scale(1.2) rotate(180deg);
	}
}

.cta-card {
	position: relative;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 24px;
	padding: 48px;
}

@media (min-width: 768px) {
	.cta-card {
		padding: 64px;
	}
}

.cta-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(250, 204, 21, 0.2);
	border: 1px solid rgba(250, 204, 21, 0.5);
	padding: 12px 24px;
	border-radius: 50px;
	margin-bottom: 32px;
	animation: bounce 2s ease-in-out infinite;
}

.cta-badge i {
	color: #fef08a;
}

.cta-badge span {
	color: #fef9c3;
}

.cta-title {
	font-size: 2.5rem;
	color: white;
	margin-bottom: 24px;
}

@media (min-width: 768px) {
	.cta-title {
		font-size: 3rem;
	}
}

@media (min-width: 992px) {
	.cta-title {
		font-size: 3.5rem;
	}
}

.cta-title span {
	color: #fef08a;
}

.cta-description {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.9);
	max-width: 600px;
	margin: 0 auto 32px;
}

.cta-buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: center;
	margin-bottom: 32px;
}

@media (min-width: 576px) {
	.cta-buttons {
		flex-direction: row;
	}
}

.cta-btn-primary {
	height: 56px;
	padding: 0 32px;
	font-size: 1.125rem;
	font-weight: 600;
	background: white;
	color: var(--primary-green);
	border: none;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.cta-btn-primary:hover {
	background: var(--gray-100);
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-btn-secondary {
	height: 56px;
	padding: 0 32px;
	font-size: 1.125rem;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	color: white;
}

.cta-features {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 24px;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.8);
}

.cta-feature {
	display: flex;
	align-items: center;
	gap: 8px;
}

.cta-feature-dot {
	width: 8px;
	height: 8px;
	background: var(--yellow-400);
	border-radius: 50%;
	animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.5;
		transform: scale(1.2);
	}
}

.cta-feature-divider {
	width: 1px;
	height: 16px;
	background: rgba(255, 255, 255, 0.3);
}

/* ========================
   Footer Section
   ======================== */
.footer {
	background: var(--gray-900);
	border-top: 1px solid var(--gray-800);
	padding-top: 64px;
}

.newsletter-section {
	text-align: center;
	margin-bottom: 64px;
}

.newsletter-title {
	font-size: 1.875rem;
	color: white;
	margin-bottom: 16px;
}

.newsletter-text {
	color: var(--gray-400);
	margin-bottom: 24px;
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 400px;
	margin: 0 auto;
}

@media (min-width: 576px) {
	.newsletter-form {
		flex-direction: row;
	}
}

.newsletter-input {
	height: 48px;
	background: var(--gray-800);
	border: 1px solid var(--gray-700);
	border-radius: 8px;
	padding: 0 16px;
	color: white;
	flex: 1;
}

.newsletter-input::placeholder {
	color: var(--gray-500);
}

.newsletter-input:focus {
	outline: none;
	border-color: var(--primary-green);
}

.newsletter-btn {
	height: 48px;
	padding: 0 24px;
	background: linear-gradient(
		135deg,
		var(--primary-green) 0%,
		var(--green-600) 100%
	);
	color: white;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.newsletter-btn:hover {
	background: linear-gradient(135deg, var(--green-600) 0%, #15803d 100%);
}

.footer-logo {
	height: 56px;
	margin-bottom: 16px;
}

.footer-description {
	color: var(--gray-400);
	line-height: 1.7;
	margin-bottom: 24px;
}

.footer-socials {
	display: flex;
	gap: 12px;
}

.footer-social-link {
	width: 40px;
	height: 40px;
	background: var(--gray-800);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.footer-social-link:hover {
	background: linear-gradient(
		135deg,
		var(--primary-green) 0%,
		var(--green-600) 100%
	);
}

.footer-social-link i {
	font-size: 20px;
	color: var(--gray-400);
	transition: color 0.3s ease;
}

.footer-social-link:hover i {
	color: white;
}

.footer-heading {
	font-size: 1.125rem;
	color: white;
	margin-bottom: 24px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: var(--gray-400);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.footer-links a::before {
	content: "";
	width: 0;
	height: 1px;
	background: var(--primary-green);
	transition: width 0.3s ease;
}

.footer-links a:hover {
	color: white;
}

.footer-links a:hover::before {
	width: 8px;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.footer-contact-icon {
	width: 40px;
	height: 40px;
	background: var(--gray-800);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
	background: linear-gradient(
		135deg,
		var(--primary-green) 0%,
		var(--green-600) 100%
	);
}

.footer-contact-icon i {
	font-size: 20px;
	color: var(--gray-400);
	transition: color 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon i {
	color: white;
}

.footer-contact-text {
	color: white;
}

.footer-contact-subtext {
	font-size: 0.875rem;
	color: var(--gray-400);
}

.footer-bottom {
	border-top: 1px solid var(--gray-800);
	padding: 32px 0;
	margin-top: 48px;
}

.footer-copyright {
	color: var(--gray-400);
	font-size: 0.875rem;
	text-align: center;
}

@media (min-width: 768px) {
	.footer-copyright {
		text-align: left;
	}
}

.footer-made-with {
	color: var(--gray-400);
	font-size: 0.875rem;
	text-align: center;
}

@media (min-width: 768px) {
	.footer-made-with {
		text-align: right;
	}
}

.footer-made-with .heart {
	color: var(--red-500);
}

/* ========================
   Animations
   ======================== */
.fade-in-up {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease-out;
}

.fade-in-up.visible {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-left {
	opacity: 0;
	transform: translateX(-30px);
	transition: all 0.6s ease-out;
}

.fade-in-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.fade-in-right {
	opacity: 0;
	transform: translateX(30px);
	transition: all 0.6s ease-out;
}

.fade-in-right.visible {
	opacity: 1;
	transform: translateX(0);
}

/* Staggered animation delays */
.delay-1 {
	transition-delay: 0.1s;
}
.delay-2 {
	transition-delay: 0.2s;
}
.delay-3 {
	transition-delay: 0.3s;
}
.delay-4 {
	transition-delay: 0.4s;
}
.delay-5 {
	transition-delay: 0.5s;
}
.delay-6 {
	transition-delay: 0.6s;
}

/* ========================
   Mobile: Hero Layout
   ======================== */
@media (max-width: 991px) {
	.hero-mobile-title {
		padding: 0 16px;
	}

	.hero-mobile-title .hero-title {
		font-size: 2rem;
		margin-bottom: 12px;
	}

	.hero-mobile-title .hero-subtitle {
		font-size: 1.1rem;
	}

	.hero-mobile-title .text-muted {
		font-size: 0.95rem;
	}

	.hero-row {
		flex-direction: column;
	}

	.hero-content-col {
		display: none;
	}

	.hero-form-container {
		max-width: 500px;
		margin: 0 auto;
	}
}

@media (max-width: 375px) {
	.total-interest-amount-box {
		width: 100% !important;
	}

	.emi-value {
		font-size: 26px;
	}
}
