/* Existing Calculator Styles */
.qura-calculator-container {
	background: #f1f1f1;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	padding: 30px;
}

.qura-calculator-container h2 {
	text-align: center;
	color: #2c3e50;
	margin-bottom: 30px;
}

.qura-calc-layout-split {
	display: flex;
	gap: 30px;
}

.qura-calc-layout-split .qura-calc-left {
	width: 60%;
}

@media (max-width: 767px) {
	.qura-calc-layout-split {
		flex-wrap: wrap;
	}

	.qura-calc-layout-split .qura-calc-left,
	.qura-calc-layout-split .qura-calc-right {
		width: 100%
	}
}

.qura-result-content {
	width: 70%;
}

/* Inputs */
.qura-form-group {
	margin-bottom: 20px;
}

.qura-form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #555;
}

.qura-input-row {
	display: flex;
	align-items: center;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 5px 10px;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.qura-input-row:focus-within {
	border-color: #011E48;
	box-shadow: 0 2px 8px rgba(1, 30, 72, 0.1);
}

.qura-input {
	border: none;
	background: transparent;
	width: 100%;
	padding: 8px;
	font-size: 16px;
	color: #333;
}

.qura-input:focus {
	outline: none;
}

.qura-unit-prefix {
	color: #333;
	font-weight: 600;
	margin-right: 5px;
	font-size: 16px;
}

.qura-unit-suffix {
	color: #888;
	font-weight: 600;
	margin-left: 5px;
}

/* Sliders */
.qura-slider-wrapper {
	display: flex;
	align-items: center;
	margin-top: 10px;
}

.qura-range-slider {
	flex-grow: 1;
	-webkit-appearance: none;
	appearance: none;
	height: 6px;
	background: #e0e0e0;
	border-radius: 3px;
	outline: none;
}

.qura-range-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	background: #3498db;
	border-radius: 50%;
	cursor: pointer;
	transition: background .15s ease-in-out;
}

.qura-range-slider::-webkit-slider-thumb:hover {
	background: #2980b9;
}

.qura-slider-percent {
	margin-left: 10px;
	min-width: 40px;
	text-align: right;
	font-size: 14px;
	color: #777;
}

/* Results Box */
.qura-calc-right {
	width: 40%;
	background: #011e48;
	border-radius: 10px;
	padding: 25px;
	position: relative;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.qura-loading-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.9);
	z-index: 10;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
}

.qura-spinner {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3498db;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	margin-bottom: 10px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.qura-result-big {
	text-align: center;
	margin-bottom: 30px;
}

.qura-result-number {
	display: block;
	font-size: 42px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
}

.qura-result-label {
	display: block;
	font-size: 14px;
	color: #7F90A8;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-top: 5px;
}

.qura-result-breakdown {
	width: 100%;
}

.qura-breakdown-row {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	color: #afc9ec;
}

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

.qura-breakdown-row span:last-child {
	font-weight: 600;
	color: #ffffff;
}

/* Buttons */
.qura-calc-layout-split .qura-calc-left .qura-calculate-btn {
	padding: 12px 30px;
	background: #011E48;
	color: #ffffff;
	cursor: pointer;
	transition: background 0.2s;
}

.qura-calc-layout-split .qura-calc-left .qura-calculate-btn:hover {
	background: #024069;
}

.qura-email-group {
	display: flex;
	gap: 10px;
}

.qura-email-group input {
	flex-grow: 1;
}

.qura-email-group button {
	width: auto;
	white-space: nowrap;
}

.qura-footer-msg {
	text-align: center;
	font-size: 13px;
	color: #999;
	margin-top: 20px;
}

/* =========================================
   GRID & SINGLE VIEW STYLES
   ========================================= */
.qura-calculator-grid-wrapper {
	gap: 40px;
	display: flex;
	flex-direction: column;
}

.qura-calculator-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
}

.qura-grid-category-title {
	text-align: center;
	font-size: 28px;
	color: #2c3e50;
	margin-top: 40px;
	margin-bottom: 30px !important;
	position: relative;
	padding-bottom: 15px;
}

.qura-grid-category-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: #3498db;
	border-radius: 2px;
}

.qura-card {
	display: flex;
	flex-direction: column;
}

.qura-card {
	background: #fff;
	padding: 30px 20px;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	border-left: 2px solid #011E48;
	border-radius: 20px;
}

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

.qura-card p {
	color: #565656;
	margin: 0;
}

.qura-single-header-v2 {
	margin-bottom: 40px;
}

.qura-calculator-grid-wrapper .qura-calculator-grid .qura-card-title {
	color: #011E48;
}

.qura-single-icon-logo {
	color: #e91e63;
	margin-bottom: 10px;
}

.qura-single-icon-logo .dashicons {
	font-size: 24px;
	width: 24px;
	height: 24px;
}

.qura-single-title-black {
	font-size: 36px;
	font-weight: 800;
	color: #011E48;
	margin: 0;
	text-transform: capitalize;
}

.qura-single-header-simple {
	margin-bottom: 30px;
	border-bottom: 2px solid #eee;
	padding-bottom: 15px;
}

.qura-calc-layout-split .qura-calc-left .qura-back-btn {
	display: inline-block;
	margin: 20px 0;
	color: #3498db;
	text-decoration: none;
	font-weight: 600;
}

.qura-back-btn:hover {
	color: #011E48;
	text-decoration: underline;
}

.qura-input-row input {
	border: none !important;
}