/* ========================================
   OwlPol Landing Page Styles
   ======================================== */

:root {
	--primary-color: #6366f1;
	--primary-dark: #4f46e5;
	--primary-light: #818cf8;
	--secondary-color: #ec4899;
	--success-color: #10b981;
	--warning-color: #f59e0b;
	--danger-color: #ef4444;
	--info-color: #06b6d4;
	--dark-color: #1e293b;
	--light-color: #f8fafc;
	--gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	--gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	color: var(--dark-color);
	line-height: 1.6;
	overflow-x: hidden;
	background: #0f172a;
}

/* ========================================
   Animated Background
   ======================================== */

.animated-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: linear-gradient(to bottom, #0f172a 0%, #1e293b 100%);
	overflow: hidden;
}

.gradient-sphere {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.3;
	animation: float 20s ease-in-out infinite;
}

.gradient-sphere-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, #667eea 0%, transparent 70%);
	top: -200px;
	left: -200px;
	animation-delay: 0s;
}

.gradient-sphere-2 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, #764ba2 0%, transparent 70%);
	bottom: -150px;
	right: -150px;
	animation-delay: 5s;
}

.gradient-sphere-3 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, #f093fb 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 10s;
}

@keyframes float {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(30px, -30px) scale(1.1);
	}
	66% {
		transform: translate(-20px, 20px) scale(0.9);
	}
}

/* ========================================
   Header & Navigation
   ======================================== */

.header {
	background: rgba(15, 23, 42, 0.8);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1rem 0;
	transition: all 0.3s ease;
	z-index: 1000;
}

.navbar-brand {
	font-size: 1.5rem;
	font-weight: 800;
	color: #fff !important;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.navbar-brand i {
	color: var(--primary-color);
}

.navbar-brand span {
	color: var(--primary-color);
}

.navbar-brand .logo-img,
.footer-logo .logo-img {
	height: 40px;
	width: auto;
	margin-right: 0.25rem;
}

.nav-link {
	color: rgba(255, 255, 255, 0.8) !important;
	font-weight: 500;
	padding: 0.5rem 1rem !important;
	transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
	color: #fff !important;
}

.dropdown-menu {
	background: rgba(15, 23, 42, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.5rem;
	padding: 0.5rem;
}

.dropdown-item {
	color: rgba(255, 255, 255, 0.8);
	padding: 0.5rem 1rem;
	border-radius: 0.25rem;
	transition: all 0.3s ease;
}

.dropdown-item:hover {
	background: rgba(99, 102, 241, 0.2);
	color: #fff;
}

.navbar-toggler {
	border: none;
	padding: 0.5rem;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   Buttons
   ======================================== */

.btn {
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	transition: all 0.3s ease;
	border: none;
}

.btn-primary {
	background: var(--primary-color);
	color: #fff;
}

.btn-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	background: transparent;
}

.btn-outline-primary:hover {
	background: var(--primary-color);
	color: #fff;
}

.btn-outline-light {
	border: 2px solid rgba(255, 255, 255, 0.5);
	color: #fff;
	background: transparent;
}

.btn-outline-light:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
	color: #fff;
}

.btn-light {
	background: #fff;
	color: var(--dark-color);
}

.btn-light:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn-lg {
	padding: 1rem 2rem;
	font-size: 1.125rem;
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
	position: relative;
	display: flex;
	align-items: center;
	padding: 120px 0 80px;
	color: #fff;
}

.badge-tag {
	display: inline-block;
	background: rgba(99, 102, 241, 0.2);
	color: var(--primary-light);
	padding: 0.5rem 1rem;
	border-radius: 2rem;
	font-size: 0.875rem;
	font-weight: 600;
	border: 1px solid rgba(99, 102, 241, 0.3);
}

.hero-content h1 {
	color: #fff;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	font-size: 2.5rem;
}

.hero-content h1.display-3 {
	font-size: 2.5rem;
}

.hero-content .lead {
	color: #3B82F6;
	font-size: 1.25rem;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.hero-stats {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
	color: var(--primary-light);
	font-size: 2rem;
}

.hero-image {
	position: relative;
}

.hero-image img {
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
	animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}

.scroll-down {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s infinite;
}

.scroll-down a {
	color: rgba(255, 255, 255, 0.5);
	font-size: 2rem;
	transition: color 0.3s ease;
}

.scroll-down a:hover {
	color: #fff;
}

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

/* ========================================
   Sections
   ======================================== */

.section-padding {
	padding: 5rem 0;
}

.section-header {
	margin-bottom: 3rem;
}

.section-subtitle {
	display: inline-block;
	color: var(--primary-color);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.875rem;
	letter-spacing: 1px;
	margin-bottom: 0.5rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
}

.bg-light .section-title {
	color: var(--dark-color);
}

.section-description {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.7);
	max-width: 600px;
	margin: 0 auto;
}

.bg-light {
	background: var(--light-color);
}

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

/* ========================================
   Problem Cards
   ======================================== */

.problem-card {
	background: #fff;
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
	height: 100%;
}

.problem-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-xl);
}

.problem-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.problem-icon i {
	font-size: 1.5rem;
	color: #fff;
}

.problem-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.problem-highlight {
	margin-top: 1rem;
}

.problem-highlight .badge {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

/* ========================================
   Solution Features
   ======================================== */

.solution-image {
	position: relative;
}

.solution-features {
	list-style: none;
	padding: 0;
}

.solution-features li {
	padding: 0.75rem 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
}

.solution-features i {
	color: var(--success-color);
	margin-right: 0.75rem;
}

/* ========================================
   Feature Cards
   ======================================== */

.feature-card {
	background: #fff;
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-xl);
}

.feature-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.feature-icon i {
	font-size: 2rem;
	color: #fff;
}

.feature-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.feature-card p {
	color: #64748b;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.feature-link {
	color: var(--primary-color);
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.feature-link:hover {
	color: var(--primary-dark);
	text-decoration: underline;
}

/* ========================================
   Pricing Cards
   ======================================== */

.pricing-card {
	background: #fff;
	border-radius: 1rem;
	padding: 2.5rem 2rem;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
	position: relative;
	height: 100%;
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
	border: 2px solid var(--primary-color);
	transform: scale(1.05);
}

.pricing-card.featured:hover {
	transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
	position: absolute;
	top: -15px;
	right: 20px;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
	color: #fff;
	padding: 0.5rem 1.5rem;
	border-radius: 2rem;
	font-size: 0.875rem;
	font-weight: 600;
}

.pricing-header h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.pricing-price {
	display: flex;
	align-items: baseline;
	margin-bottom: 2rem;
}

.pricing-price .currency {
	font-size: 1.5rem;
	color: #64748b;
	margin-right: 0.25rem;
}

.pricing-price .amount {
	font-size: 3rem;
	font-weight: 800;
	color: var(--dark-color);
}

.pricing-price .period {
	font-size: 1rem;
	color: #64748b;
	margin-left: 0.5rem;
}

.pricing-features ul {
	list-style: none;
	padding: 0;
	margin-bottom: 2rem;
}

.pricing-features li {
	padding: 0.75rem 0;
	color: var(--dark-color);
	border-bottom: 1px solid #e2e8f0;
}

.pricing-features li:last-child {
	border-bottom: none;
}

.pricing-features li.disabled {
	color: #cbd5e1;
}

.pricing-features i {
	margin-right: 0.75rem;
	font-size: 1.125rem;
}

.pricing-features .fa-check {
	color: var(--success-color);
}

.pricing-features .fa-times {
	color: #cbd5e1;
}

/* ========================================
   Demo Section
   ======================================== */

.demo-features {
	list-style: none;
	padding: 0;
}

.demo-features li {
	padding: 0.75rem 0;
	font-size: 1.125rem;
}

.demo-features i {
	color: var(--success-color);
	margin-right: 0.75rem;
}

.demo-mockup {
	position: relative;
}

.demo-mockup img {
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.text-white-50 {
	color: rgba(255, 255, 255, 0.5);
}

.text-white-75 {
	color: rgba(255, 255, 255, 0.75);
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
	background: var(--light-color);
}

.cta-box {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
	color: #fff;
	padding: 4rem 2rem;
	border-radius: 2rem;
	box-shadow: var(--shadow-xl);
}

.cta-box h2,
.cta-box .lead {
	color: #fff;
}

/* ========================================
   Footer
   ======================================== */

.footer {
	background: #0f172a;
	color: rgba(255, 255, 255, 0.7);
	padding: 4rem 0 2rem;
}

.footer-logo {
	font-size: 1.5rem;
	font-weight: 800;
	color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-logo i {
	color: var(--primary-color);
}

.footer-logo span {
	color: var(--primary-color);
}

.footer-social {
	display: flex;
	gap: 1rem;
}

.footer-social a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-social a:hover {
	background: var(--primary-color);
	transform: translateY(-3px);
}

.footer-title {
	color: #fff;
	font-weight: 700;
	margin-bottom: 1.5rem;
	font-size: 1.125rem;
}

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

.footer-links li,
.footer-contact li {
	margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #fff;
}

.footer-contact i {
	margin-right: 0.5rem;
	color: var(--primary-color);
}

.footer-divider {
	border-color: rgba(255, 255, 255, 0.1);
	margin: 2rem 0;
}

.footer-bottom {
	padding-top: 2rem;
}

.copyright {
	color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 1.5rem;
	justify-content: flex-end;
}

.footer-legal a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-legal a:hover {
	color: #fff;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 991px) {
	.section-title {
		font-size: 2rem;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

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

	.footer-legal {
		justify-content: flex-start;
		margin-top: 1rem;
	}
}

@media (max-width: 767px) {
	.section-padding {
		padding: 3rem 0;
	}

	.section-title {
		font-size: 1.75rem;
	}

	.hero-content h1 {
		font-size: 2rem;
	}

	.pricing-card.featured {
		transform: scale(1);
	}

	.gradient-sphere {
		width: 300px;
		height: 300px;
	}
}
.small.text-muted {
	color: #3B82F6 !important;
}

.lead {
	color: #3B82F6;
}

/* ========================================
   Solutions/Niches Section
   ======================================== */

.solution-niche-card {
	background: #fff;
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.solution-niche-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.solution-niche-card:hover::before {
	transform: scaleX(1);
}

.solution-niche-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.solution-niche-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.solution-niche-card:hover .solution-niche-icon {
	transform: scale(1.1) rotate(5deg);
}

.solution-niche-icon i {
	font-size: 2rem;
	color: #fff;
}

.solution-niche-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 1rem;
}

.solution-niche-card p {
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.solution-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
}

.solution-link:hover {
	color: var(--primary-dark);
	gap: 0.75rem;
}

.solution-link i {
	transition: transform 0.3s ease;
}

.solution-link:hover i {
	transform: translateX(5px);
}

/* ========================================
   CTA Small Section
   ======================================== */

.cta-section-small {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.cta-section-small::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
	border-radius: 50%;
}

.cta-section-small h3 {
	color: #fff;
	font-weight: 700;
}

.cta-section-small .lead {
	color: rgba(255,255,255,0.9);
}

.cta-section-small .btn-primary {
	background: #fff;
	color: var(--primary-color);
	border-color: #fff;
}

.cta-section-small .btn-primary:hover {
	background: rgba(255,255,255,0.9);
	border-color: rgba(255,255,255,0.9);
}

/* ========================================
   Cities Section
   ======================================== */

.city-card {
	background: #fff;
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.city-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.city-card:hover::after {
	transform: scaleX(1);
}

.city-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.city-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	transition: all 0.3s ease;
}

.city-card:hover .city-icon {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	transform: scale(1.1);
}

.city-icon i {
	font-size: 1.75rem;
	color: var(--primary-color);
	transition: color 0.3s ease;
}

.city-card:hover .city-icon i {
	color: #fff;
}

.city-card h4 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 0.5rem;
}

.city-card p.small {
	color: #64748b;
	margin-bottom: 1rem;
}

.city-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
}

.city-link:hover {
	color: var(--primary-dark);
	gap: 0.75rem;
}

.city-link i {
	transition: transform 0.3s ease;
}

.city-link:hover i {
	transform: translateX(3px);
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-item {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	border-color: var(--primary-color);
	box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.1);
}

.faq-item .accordion-button {
	font-weight: 600;
	font-size: 1.1rem;
	padding: 1.5rem;
	background: #fff;
	color: var(--dark-color);
	border: none;
	box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
	color: var(--primary-color);
}

.faq-item .accordion-button:focus {
	box-shadow: none;
	border: none;
}

.faq-item .accordion-button::after {
	width: 1.5rem;
	height: 1.5rem;
	background-size: 1.5rem;
	flex-shrink: 0;
}

.faq-item .accordion-body {
	padding: 0 1.5rem 1.5rem;
	color: #64748b;
	line-height: 1.8;
}

/* ========================================
   Blog Section
   ======================================== */

.blog-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.blog-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.blog-card-image {
	position: relative;
	overflow: hidden;
	height: 220px;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.blog-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
	transform: scale(1.1);
}

.blog-card-category {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(255, 255, 255, 0.95);
	color: var(--primary-color);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	backdrop-filter: blur(10px);
}

.blog-card-content {
	padding: 2rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.blog-card-meta {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1rem;
	color: #94a3b8;
	font-size: 0.875rem;
}

.blog-card-meta span {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.blog-card-meta i {
	color: var(--primary-color);
}

.blog-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 1rem;
	line-height: 1.4;
}

.blog-card p {
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex: 1;
}

.blog-card-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	margin-top: auto;
}

.blog-card-link:hover {
	color: var(--primary-dark);
	gap: 0.75rem;
}

.blog-card-link i {
	transition: transform 0.3s ease;
}

.blog-card-link:hover i {
	transform: translateX(5px);
}

/* ========================================
   RKN Fines Section
   ======================================== */

.bg-gradient-warning {
	background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
	position: relative;
	overflow: hidden;
}

.bg-gradient-warning::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
	animation: pulse 15s ease-in-out infinite;
}

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

.warning-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	color: #fff;
	font-weight: 600;
	font-size: 0.875rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.warning-badge i {
	margin-right: 0.5rem;
	animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

.text-white-75 {
	color: rgba(255, 255, 255, 0.75);
}

.fine-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	height: 100%;
}

.fine-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.fine-header {
	padding: 2rem;
	text-align: center;
	border-bottom: 2px solid #f1f5f9;
}

.fine-icon {
	width: 70px;
	height: 70px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: #fff;
	font-size: 1.75rem;
	transition: all 0.3s ease;
}

.fine-card:hover .fine-icon {
	transform: scale(1.1) rotate(5deg);
}

.fine-header h4 {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 0.5rem;
}

.fine-body {
	padding: 2rem;
}

.fine-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
	border-bottom: 1px solid #f1f5f9;
}

.fine-row:last-child {
	border-bottom: none;
}

.fine-label {
	font-size: 0.875rem;
	color: #64748b;
}

.fine-amount {
	font-weight: 700;
	color: var(--dark-color);
	font-size: 1rem;
}

.alert-box {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	padding: 3rem;
	display: flex;
	align-items: center;
	gap: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.alert-box:hover {
	transform: scale(1.02);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.alert-icon {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.4);
}

.alert-content {
	flex: 1;
}

.alert-content h4 {
	color: #fff;
	font-weight: 700;
	font-size: 1.5rem;
}

.alert-content p {
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 0;
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 991px) {
	.solution-niche-card,
	.city-card,
	.blog-card {
		margin-bottom: 1.5rem;
	}

	.cta-section-small .text-lg-end {
		text-align: center !important;
		margin-top: 1.5rem;
	}

	.alert-box {
		flex-direction: column;
		text-align: center;
		padding: 2rem;
	}

	.fine-card {
		margin-bottom: 1.5rem;
	}
}
