/* ============================================
   CRO HERO SECTION
   ============================================ */

.stat-card {
	transition: all 0.3s ease;
	border: 1px solid rgba(122, 30, 79, 0.1);
}

.stat-card:hover {
	transform: translateY(-5px);
	border-color: rgba(122, 30, 79, 0.2);
	box-shadow: 0 10px 25px rgba(122, 30, 79, 0.15) !important;
}

.stat-card h3 {
	font-weight: 700;
	font-size: 1.75rem;
	transition: color 0.3s ease;
}

.stat-card:hover h3 {
	color: #5d1a3d !important;
}

/* ============================================
   INLINE CTA SECTION
   ============================================ */

/* Modal Icon List Positioning Fix */
.modal .icon-list.bullet-bg.bullet-soft-primary li {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.modal .icon-list.bullet-bg.bullet-soft-primary li span:first-child {
	flex-shrink: 0;
	margin-top: 0.25rem;
}

.modal .icon-list.bullet-bg.bullet-soft-primary li span:last-child {
	flex: 1;
}

.modal .icon-list.bullet-bg.bullet-soft-primary li h6 {
	margin-top: 0;
	line-height: 1.4;
}

.modal .icon-list.bullet-bg.bullet-soft-primary li p {
	line-height: 1.5;
	margin-bottom: 0;
}

/* Ensure icon styling consistency */
.modal .bullet-soft-primary i {
	background-color: #7A1E4F !important;
	color: #fff !important;
	width: 32px;
	height: 32px;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.cta-inline {
	transition: all 0.3s ease;
	border-color: rgba(0, 0, 0, 0.08) !important;
}

.cta-inline:hover {
	border-color: rgba(122, 30, 79, 0.2) !important;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transform: translateY(-2px);
}

.btn-grape {
	background-color: #7A1E4F;
	border-color: #7A1E4F;
	font-size: 0.875rem;
	transition: all 0.3s ease;
}

.btn-grape:hover {
	background-color: #5d1a3d;
	border-color: #5d1a3d;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(122, 30, 79, 0.25);
}

.btn-outline-secondary {
	color: #6c757d;
	border-color: #6c757d;
	font-size: 0.875rem;
	transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
	background-color: #6c757d;
	border-color: #6c757d;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(108, 117, 125, 0.2);
}

/* Responsive */
@media (max-width: 767px) {
	.cta-inline {
		padding: 1.5rem !important;
	}

	.d-md-flex.align-items-center.justify-content-between {
		flex-direction: column;
		text-align: center;
	}

	.d-flex.gap-2.justify-content-center {
		width: 100%;
		margin-top: 1rem;
	}

	.btn-sm {
		flex: 1;
		margin: 0 0.25rem;
	}
}

:root {
	--grape-primary: #7A1E4F;
	--grape-hover: #5d1a3d;
	--grape-soft: rgba(122, 30, 79, 0.05);
	--grape-soft-md: rgba(122, 30, 79, 0.1);
	--text-navy: #343f52;
	--white: #ffffff;
	--light-gray: #f8f9fa;
	--gray: #6c757d;
}

/* Global Utilities */
.text-grape {
	color: var(--grape-primary) !important;
}

.btn-grape {
	background-color: var(--grape-primary) !important;
	border-color: var(--grape-primary) !important;
	color: var(--white) !important;
	font-weight: 700;
	padding: 0.75rem 2rem;
	transition: all 0.3s ease;
}

.btn-grape:hover {
	background-color: var(--grape-hover) !important;
	border-color: var(--grape-hover) !important;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(122, 30, 79, 0.2);
}

.btn-outline-grape {
	color: var(--grape-primary) !important;
	border-color: var(--grape-primary) !important;
	background: transparent !important;
	font-weight: 700;
	padding: 0.75rem 2rem;
}

.btn-outline-grape:hover {
	background-color: var(--grape-primary) !important;
	color: var(--white) !important;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(122, 30, 79, 0.2);
}

.hover-grape:hover {
	color: var(--grape-primary) !important;
}

.text-grape {
	color: var(--grape-primary) !important;
}

.btn-grape {
	background-color: var(--grape-primary);
	border-color: var(--grape-primary);
}

.btn-grape:hover {
	background-color: #5d1a3d;
	border-color: #5d1a3d;
}

.btn-outline-grape {
	color: var(--grape-primary);
	border-color: var(--grape-primary);
}

.btn-outline-grape:hover {
	background-color: var(--grape-primary);
	border-color: var(--grape-primary);
}

/* Background Gradient */
.bg-gradient {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bg-soft-grape {
	background-color: #fcf7f9 !important;
}

.bg-grape-light {
	background-color: rgba(122, 30, 79, 0.1) !important;
}

/* Modern Feature Cards */
.feature-card {
	transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(122, 30, 79, 0.15) !important;
}

.feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #7A1E4F 0%, #5d1a3d 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.feature-icon .icon-wrapper {
	transition: all 0.4s ease;
}

.feature-card:hover .icon-wrapper {
	transform: scale(1.1) rotate(5deg);
	background-color: #7A1E4F !important;
}

.feature-card:hover .icon-wrapper i {
	color: #ffffff !important;
	transform: scale(1.2);
}

/* Problems Grid */
.problems-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.problem-card {
	background: linear-gradient(135deg, #7A1E4F 0%, #5d173c 100%);
	border-radius: 1.25rem;
	padding: 3rem 2.5rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.5rem;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(122, 30, 79, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hover Effect: Lift & lighter shadow */
.problem-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(122, 30, 79, 0.4);
}

/* Decorative background circle */
.problem-card::after {
	content: "";
	position: absolute;
	top: -50px;
	right: -50px;
	width: 150px;
	height: 150px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	transition: all 0.5s ease;
}

.problem-card:hover::after {
	transform: scale(1.2);
	background: rgba(255, 255, 255, 0.08);
}

.problem-icon {
	width: 70px;
	height: 70px;
	background: rgba(255, 255, 255, 0.15);
	/* Semi-transparent white */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
	margin-bottom: 0.5rem;
	backdrop-filter: blur(5px);
}

.problem-card:hover .problem-icon {
	background: #ffffff;
	transform: rotate(360deg);
}

.problem-icon i {
	font-size: 1.8rem;
	color: #ffffff !important;
	opacity: 1;
	visibility: visible;
	transition: color 0.4s ease;
}

.problem-card:hover .problem-icon i {
	color: #7A1E4F !important;
	/* Icon turns grape on hover */
}

.problem-content h4 {
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: #ffffff;
	/* White text */
	letter-spacing: -0.01em;
}

.problem-content p {
	color: rgba(255, 255, 255, 0.85);
	/* Slightly muted white */
	line-height: 1.7;
	margin: 0;
	font-size: 1.05rem;
	font-weight: 400;
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.service-card {
	background: var(--white);
	border-radius: 1.25rem;
	padding: 2rem;
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(122, 30, 79, 0.12);
}

.service-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	background: var(--grape-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.service-card:hover .service-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 10px 25px rgba(122, 30, 79, 0.2);
}

.service-icon i {
	font-size: 1.75rem;
	color: var(--white);
}

.service-content h5 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--text-navy);
}

.service-content p {
	color: var(--gray);
	line-height: 1.6;
	margin: 0;
}

/* Process Flow - Modern Connected Timeline */
.process-flow {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	max-width: 100%;
	margin: 4rem auto 0;
	position: relative;
}

.flow-step {
	background: var(--white);
	border-radius: 1.25rem;
	padding: 2.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.5rem;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	position: relative;
	border: 1px solid rgba(0, 0, 0, 0.03);
	z-index: 2;
}

/* Connector Line (Desktop) */
.process-flow::before {
	content: "";
	position: absolute;
	top: 50px;
	/* Aligns with the circle center approximately */
	left: 10%;
	width: 80%;
	height: 2px;
	background: repeating-linear-gradient(to right,
			var(--grape-soft-md) 0,
			var(--grape-soft-md) 10px,
			transparent 10px,
			transparent 15px);
	z-index: 1;
}

.flow-step:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(122, 30, 79, 0.1);
	border-color: rgba(122, 30, 79, 0.1);
}

.step-number {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	background: var(--white);
	color: var(--grape-primary);
	border: 2px solid var(--grape-soft-md);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 800;
	transition: all 0.4s ease;
	position: relative;
	z-index: 3;
	/* Above the line */
}

.flow-step:hover .step-number {
	background: var(--grape-primary);
	color: var(--white);
	border-color: var(--grape-primary);
	transform: scale(1.1);
	box-shadow: 0 0 0 8px rgba(122, 30, 79, 0.1);
}

.step-content {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.step-content h4 {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
	color: var(--text-navy);
}

.step-content p {
	color: var(--gray);
	line-height: 1.6;
	margin: 0;
	font-size: 0.95rem;
}

/* Included Grid (Ghost to Card) */
.included-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}

.included-card {
	background: transparent;
	/* No background by default */
	border-radius: 1rem;
	padding: 1.5rem;
	display: flex;
	background: var(--white);
	border-radius: 2rem;
	padding: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	text-align: left;
	gap: 1.5rem;
	transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.5);
	height: 100%;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

/* Hover Effect: Scale & Lift */
.included-card:hover {
	transform: translateY(-8px) scale(1.01);
	box-shadow: 0 20px 60px rgba(122, 30, 79, 0.12);
	z-index: 2;
	border-color: rgba(122, 30, 79, 0.1);
}

/* Large Card Specifics - Flex Row if content permits, or just different padding */
.included-card:nth-child(1),
.included-card:nth-child(4),
.included-card:nth-child(6) {
	background: linear-gradient(145deg, #ffffff 0%, #fcf7f9 100%);
}

.included-icon {
	width: 70px;
	height: 70px;
	background: var(--grape-soft);
	border-radius: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
	margin-bottom: 0.5rem;
}

.included-card:hover .included-icon {
	background: var(--grape-primary);
	transform: rotate(10deg);
}

.included-icon i {
	font-size: 2rem;
	color: var(--grape-primary);
	opacity: 1;
	transition: all 0.4s ease;
}

.included-card:hover .included-icon i {
	color: #ffffff;
}

.included-content h5 {
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 0.75rem;
	color: var(--text-navy);
	letter-spacing: -0.02em;
}

.included-content p {
	color: var(--gray);
	line-height: 1.65;
	margin: 0;
	font-size: 1.05rem;
}

/* Case Study */
.case-showcase {
	background: var(--white);
	border-radius: 2rem;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
	margin-top: 3rem;
}

.case-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.case-image {
	height: 100%;
	min-height: 500px;
}

.case-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.case-content {
	padding: 4rem 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.case-label {
	display: inline-block;
	background: var(--grape-soft-md);
	color: var(--grape-primary);
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.case-content h4 {
	font-size: 1.75rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: var(--text-navy);
}

.case-content p {
	color: var(--gray);
	line-height: 1.7;
	margin-bottom: 2rem;
}

.results-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.result-card {
	text-align: center;
	padding: 1.5rem 1rem;
	background: var(--grape-soft);
	border-radius: 1rem;
}

.result-card h3 {
	font-size: 1.75rem;
	font-weight: 900;
	margin-bottom: 0.25rem;
	line-height: 1;
}

.result-card p {
	color: var(--gray);
	font-size: 0.85rem;
	font-weight: 500;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.025em;
}

.case-solutions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.solution-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.solution-item i {
	font-size: 1.25rem;
	flex-shrink: 0;
	margin-top: 2px;
}

.solution-item span {
	font-size: 0.95rem;
	color: var(--text-navy);
	line-height: 1.5;
}

/* CTA Modern */
.cta-modern {
	background: var(--white);
	border-radius: 2rem;
	padding: 4rem 3rem;
	text-align: center;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	margin-top: 3rem;
}

.cta-modern h2 {
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: var(--text-navy);
}

.cta-modern p {
	color: var(--gray);
	max-width: 600px;
	margin: 0 auto 2rem;
	line-height: 1.7;
}

.cta-benefits {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.cta-benefits li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1rem;
	color: var(--text-navy);
	text-align: left;
	width: 100%;
	justify-content: center;
}

.cta-benefits i {
	font-size: 1.25rem;
}

/* Modal Styling */
#modal-analysis .form-control:focus {
	border-color: var(--grape-primary);
	box-shadow: 0 0 0 0.25rem rgba(122, 30, 79, 0.1);
}

/* Responsive */
@media (max-width: 991px) {
	.case-grid {
		grid-template-columns: 1fr;
	}

	.case-content {
		padding: 3rem 2rem;
	}

	.results-grid {
		gap: 1rem;
	}

	.included-grid {
		grid-template-columns: 1fr;
		/* Stack vertically on tablet/mobile to avoid complex layout shifts */
		gap: 1.5rem;
	}

	.included-card:nth-child(n) {
		grid-column: auto;
		/* Reset spanning */
	}

	/* Process Flow Tablet/Mobile updates */
	.process-flow {
		grid-template-columns: repeat(2, 1fr);
		/* 2 columns on tablet */
		gap: 1.5rem;
	}

	.process-flow::before {
		display: none;
		/* Hide connector on smaller screens */
	}

	.flow-step {
		flex-direction: column;
		text-align: center;
		align-items: center;
		padding: 2rem;
	}

	.flow-step:hover {
		transform: translateY(-5px);
		/* Switch back to vertical lift */
	}

	.process-flow {
		max-width: 100%;
	}

	.flow-step {
		flex-direction: column;
		gap: 1rem;
	}

	.flow-step:hover {
		transform: none;
	}
}

@media (max-width: 991px) {
	.package-card .row {
		flex-direction: column-reverse;
		gap: 2rem;
	}

	.pricing-card {
		margin-top: 2rem;
	}

	.stat-card {
		margin-bottom: 1.5rem;
	}
}

@media (max-width: 767px) {

	.problems-grid,
	.services-grid,
	.included-grid {
		grid-template-columns: 1fr;
	}

	.process-flow {
		grid-template-columns: 1fr;
		/* 1 column on mobile */
	}

	.case-image {
		min-height: 300px;
	}

	.results-grid {
		grid-template-columns: 1fr;
	}

	.cta-modern {
		padding: 3rem 1.5rem;
	}

	.cta-benefits li {
		justify-content: flex-start;
		text-align: left;
	}

	.package-card {
		padding: 2rem 1.5rem !important;
	}

	.feature-item {
		padding: 0.75rem;
	}

	.cta-card .d-flex {
		flex-direction: column;
		gap: 1rem;
	}

	.cta-card .btn {
		width: 100%;
	}
}

/* ============================================
   SPIRAL NOTEBOOK DESIGN
   ============================================ */

.package-card {
	position: relative;
	background: #ffffff;
	box-shadow:
		0 2px 4px rgba(0, 0, 0, 0.08),
		0 8px 20px rgba(0, 0, 0, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Subtle paper texture (very light) */
.package-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		radial-gradient(circle at 20% 50%, rgba(122, 30, 79, 0.01) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(122, 30, 79, 0.01) 0%, transparent 50%);
	pointer-events: none;
	border-radius: inherit;
	z-index: 1;
}

/* Spiral binding area */
.package-card .card-body {
	position: relative;
	z-index: 2;
	padding-left: 5rem !important;
}

/* Individual spiral holes with grape color */
.features-grid {
	position: relative;
}

.features-grid::before {
	content: "";
	position: absolute;
	left: -3.5rem;
	top: 0;
	bottom: 0;
	width: 1.5rem;
	z-index: 5;
	background-image:
		radial-gradient(circle, #7A1E4F 35%, transparent 36%),
		radial-gradient(circle, #ffffff 40%, transparent 41%),
		radial-gradient(circle, rgba(122, 30, 79, 0.4) 35%, transparent 36%);
	background-size: 14px 14px, 14px 14px, 14px 14px;
	background-position:
		center 35px,
		center 35px,
		calc(center + 1px) calc(35px + 1px);
	background-repeat: repeat-y;
}

/* Spiral metal rings effect with grape color */
.features-grid::after {
	content: "";
	position: absolute;
	left: -3.5rem;
	top: 0;
	bottom: 0;
	width: 1.5rem;
	z-index: 4;
	background-image: repeating-linear-gradient(to bottom,
			transparent 0,
			transparent 28px,
			rgba(122, 30, 79, 0.08) 28px,
			rgba(122, 30, 79, 0.08) 42px,
			transparent 42px,
			transparent 70px);
}

/* Enhanced feature items for notebook look */
.feature-item {
	position: relative;
	z-index: 6;
	background: transparent;
	transition: all 0.2s ease;
}

.feature-item:hover {
	transform: translateX(3px);
}

/* Responsive adjustments for spiral notebook */
@media (max-width: 991px) {
	.package-card .card-body {
		padding-left: 4rem !important;
	}

	.features-grid::before,
	.features-grid::after {
		left: -2.5rem;
	}
}

@media (max-width: 767px) {
	.package-card .card-body {
		padding-left: 3rem !important;
	}

	.features-grid::before,
	.features-grid::after {
		left: -2rem;
		width: 1rem;
	}
}


/* Fix for Twitter/X Logo Visibility */
.uil-twitter::before,
.x-social-icon i::before {
	content: "\edc5" !important;
	/* The 'X' icon Unicode for Unicons */
	font-family: "unicons" !important;
	font-style: normal;
	font-weight: normal;
	display: inline-block;
	text-decoration: inherit;
	color: #ffffff;
	/* Ensures it's white */
	opacity: 1 !important;
}

/* Full-Service CRO Package - Redesigned */
.package-card {
	transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
	border: 1px solid rgba(0, 0, 0, 0.05) !important;
	position: relative;
}

.package-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(122, 30, 79, 0.15) !important;
	border-color: rgba(122, 30, 79, 0.1) !important;
}

/* Move the badge to be inside the pricing card to move with it on hover */
.pricing-card {
	transition: all 0.3s ease;
	position: relative;
}

.pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(122, 30, 79, 0.1) !important;
}

.features-grid {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.feature-item {
	transition: all 0.3s ease;
	padding: 1rem;
	border-radius: 12px;
}

.feature-item:hover {
	background: rgba(122, 30, 79, 0.03);
	transform: translateX(5px);
}

.feature-icon .icon-circle {
	transition: all 0.3s ease;
}

.feature-item:hover .icon-circle {
	transform: scale(1.1) rotate(5deg);
	background: #7A1E4F !important;
}

.feature-item:hover .icon-circle i {
	color: #ffffff !important;
}

.pricing-card {
	transition: all 0.3s ease;
}

.pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(122, 30, 79, 0.1) !important;
}

.stat-card {
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
	border-color: rgba(122, 30, 79, 0.1);
}

.stat-icon {
	transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
	transform: scale(1.1);
	box-shadow: 0 10px 25px rgba(122, 30, 79, 0.2);
}

.cta-card {
	background: linear-gradient(135deg, #7A1E4F 0%, #5d1a3d 100%) !important;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.cta-card::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%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.cta-card:hover::before {
	opacity: 1;
}

.cta-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(122, 30, 79, 0.3) !important;
}

/* Fix Space Inconsistency */
.offset-lg-1 {
	margin-left: 8.33333333% !important;
	/* Standard Bootstrap offset */
}

/* Ensure the container uses flexbox for alignment */
.nav.social.social-white {
	display: flex !important;
	align-items: center !important;
	gap: 20px !important;
	/* This creates exactly equal 20px space between every icon */
}

/* Reset anchor tags to ensure they don't have inherited margins */
.nav.social.social-white a {
	margin: 0 !important;
	padding: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: #ffffff !important;
	line-height: 1 !important;
}

/* Align the SVG Twitter-X icon perfectly with FontIcons */
.x-social-icon {
	height: 14px;
	/* Matches the SVG height for a tight bounding box */
}

.x-social-icon svg {
	display: block;
	fill: #ffffff !important;
	/* Ensures the X is white */
}

/* Ensure Unicons match the visual center */
.nav.social.social-white i {
	font-size: 1rem;
	display: block;
	line-height: 1;
}

.widget-title {
    margin-bottom: 1.25rem !important;
    font-size: 0.95rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    color: #ffffff !important;
}

footer .fs-sm,
footer address,
footer p,
footer li a {
    font-size: 0.85rem !important;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6) !important;
}
/* Hover effect */
.hover-grape:hover {
    color: #7a1e4f !important;
}
