/* Osteocare Stats Counter — Elementor Widget Styles */

.osc-stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	font-family: "Renner", sans-serif !important;
}

.osc-stat-card {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border-radius: 18px;
	padding: 36px 28px 32px;
	text-align: center;
	align-items: center;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
	will-change: transform;
	font-family: "Renner", sans-serif !important;
}

.osc-stat-card--full {
	grid-column: 1 / -1;
}

/* top gradient accent bar */
.osc-stat-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ef3b2d, #2e336b);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.45s ease;
}

.osc-stat-card:hover::before {
	transform: scaleX(1);
}

.osc-hover-lift-yes .osc-stat-card:hover {
	transform: translateY(-6px);
}

/* Icon */
.osc-stat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ef3b2d, #c9291d);
	margin-bottom: 18px;
	flex-shrink: 0;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.osc-stat-card:hover .osc-stat-icon {
	transform: scale(1.08) rotate(-4deg);
}

.osc-stat-icon i,
.osc-stat-icon svg {
	color: #ffffff;
	font-size: 22px;
	line-height: 1;
}

/* Number row */
.osc-stat-number-row {
	display: flex;
	align-items: baseline;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2px;
	margin-bottom: 12px;
	font-family: "Renner", sans-serif !important;
}

.osc-stat-number,
.osc-stat-prefix,
.osc-stat-suffix {
	font-family: "Renner", sans-serif !important;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.1;
}

.osc-stat-number,
.osc-stat-prefix {
	color: #2e336b;
}

.osc-stat-suffix {
	color: #ef3b2d;
	margin-left: 2px;
}

/* Label */
.osc-stat-label {
	font-family: "Renner", sans-serif !important;
	font-weight: 700;
	font-size: 12.5px;
	line-height: 1.5;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: #4a4e7c;
	max-width: 260px;
}

/* Icon-left layout variant */
.osc-icon-pos-left .osc-stat-card {
	flex-direction: row;
	align-items: center;
	text-align: left;
}

.osc-icon-pos-left .osc-stat-icon {
	margin-bottom: 0;
	margin-right: 18px;
}

.osc-icon-pos-left .osc-stat-number-row,
.osc-icon-pos-left .osc-stat-label {
	justify-content: flex-start;
	text-align: left;
	max-width: none;
}

.osc-icon-pos-left .osc-stat-card > div:last-child {
	flex: 1;
}

/* Responsive */
@media (max-width: 767px) {
	.osc-stats-grid {
		grid-template-columns: 1fr !important;
	}
	.osc-stat-card--full {
		grid-column: auto;
	}
}

/* =========================================================
 * Osteocare "Who We Are" content widget
 * ========================================================= */
.osc-wwa {
	font-family: "Renner", sans-serif !important;
}

.osc-wwa > *:last-child {
	margin-bottom: 0 !important;
}

/* Eyebrow */
.osc-wwa-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: "Renner", sans-serif !important;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #2e336b;
}

.osc-wwa-eyebrow--line::after {
	content: "";
	display: inline-block;
	width: 34px;
	height: 2px;
	background-color: #2e336b;
	border-radius: 2px;
}

/* Heading */
.osc-wwa-heading {
	display: flex;
	flex-direction: column;
	font-family: "Renner", sans-serif !important;
	font-weight: 700;
	font-size: 40px;
	line-height: 1.2;
	color: #2e336b;
	margin: 0;
}

.osc-wwa-heading-line {
	display: block;
}

.osc-wwa-heading-highlight {
	color: #ef3b2d;
}

/* Description */
.osc-wwa-description {
	font-family: "Renner", sans-serif !important;
	font-size: 15.5px;
	line-height: 1.7;
	color: #5b5f82;
	margin: 0;
}

/* Feature list */
.osc-wwa-features {
	display: flex;
	flex-direction: column;
}

.osc-wwa-feature-row {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	text-decoration: none;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid transparent;
	transition: transform 0.3s ease;
}

.osc-wwa-feature-row--divided {
	border-bottom-color: #e4e5f1;
}

.osc-wwa-feature-row:last-child {
	border-bottom-color: transparent !important;
	margin-bottom: 0;
	padding-bottom: 0;
}

.osc-wwa-feature-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 6px 16px rgba(46, 51, 107, 0.12);
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.osc-wwa-feature-icon i,
.osc-wwa-feature-icon svg {
	color: #ef3b2d;
	font-size: 18px;
	line-height: 1;
}

.osc-wwa-feature-hover-yes .osc-wwa-feature-row:hover .osc-wwa-feature-icon {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 10px 22px rgba(239, 59, 45, 0.25);
}

.osc-wwa-feature-text {
	flex: 1;
}

.osc-wwa-feature-title {
	font-family: "Renner", sans-serif !important;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.35;
	color: #2e336b;
	margin-bottom: 4px;
}

.osc-wwa-feature-description {
	font-family: "Renner", sans-serif !important;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.6;
	color: #6c6f94;
}

/* Buttons */
.osc-wwa-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.osc-wwa-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: "Renner", sans-serif !important;
	font-weight: 700;
	font-size: 14.5px;
	text-decoration: none;
	padding: 14px 30px;
	border-radius: 30px;
	border: 2px solid transparent;
	transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
	white-space: nowrap;
}

.osc-wwa-btn-icon {
	display: inline-flex;
	align-items: center;
	font-size: 0.95em;
}

.osc-wwa-btn--primary {
	background: #ef3b2d;
	color: #ffffff;
	border-color: #ef3b2d;
	box-shadow: 0 10px 24px rgba(239, 59, 45, 0.28);
}

.osc-wwa-btn--primary:hover {
	background: #2e336b;
	border-color: #2e336b;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(46, 51, 107, 0.3);
}

.osc-wwa-btn--secondary {
	background: transparent;
	color: #2e336b;
	border-color: #d6d8ea;
}

.osc-wwa-btn--secondary:hover {
	background: #2e336b;
	border-color: #2e336b;
	color: #ffffff;
	transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 767px) {
	.osc-wwa-heading {
		font-size: 30px;
	}
	.osc-wwa-feature-row {
		gap: 14px;
	}
}
