@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--sap-primary: #EB6258;
	--sap-teal: #1C959E;
	--sap-dark-teal: #1a4441;
	--sap-gold: #FFD700;
	--sap-platinum: #4a4a4a;
	--sap-silver: #85929e;
	--sap-green: #28a745;
}

/* Global overrides */
body {
	font-family: "Poppins", sans-serif;
	position: relative;

}

/* Full Screen Loader */
.zr-fullscreen-loader {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(27, 19, 19, 0.9);
	display: flex;
	justify-content: center;
	align-items: start;
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.zr-fullscreen-loader.show {
	opacity: 1;
	visibility: visible;
}

.zr-fullscreen-loader img {
	width: 200px;
 }


.zr-loader-content {
    text-align: center;
    width: 100%;
    color: white;
    height: 100vh;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: fixed;
    display: flex;
    align-items: center;
}


.zr-loader-logo {
	display: block;
	margin: 0 auto 20px;
	opacity: 0.9;
}

.zr-loader-text {
	font-size: 18px;
	font-weight: 500;
	margin: 0;
}

.zr-loader-logo {
	display: block;
	margin: 0 auto 20px;
	width: 210px;
	height: auto;
}

.zr-cursor-pointer {
	cursor: pointer;
}

.letter-spacing-wide {
	letter-spacing: 0.1em;
}

.zr-main-heading {
	font-size: 45px;
	font-weight: 600;
	color: #333;
}

.zr-subtext {
	font-size: 16px;
	color: #555;
}

.fs-md-4 {
	font-size: 18px;
}

.zr-navbar-brand img {
	transition: transform 0.3s ease;
}

.zr-main-header {
	height: 108px;
}

.zr-navbar-brand img:hover {
	transform: scale(1.05);
}

.zr-next-step:disabled {
	cursor: not-allowed;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--sap-teal);
	box-shadow: 0 0 0 0.2rem rgba(32, 201, 151, 0.25);
}

/* Hero section */
.zr-hero-section {
	background-image: url('../img/banner-bg-img.webp');
	min-height: calc(100vh - 108px);
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.zr-hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(155deg, rgba(0, 0, 0, 0.849) 0%, rgba(2, 79, 86, 0.884) 54%, rgba(0, 0, 0, 0.801) 104%, rgba(0, 0, 0, 0.822) 44%, rgba(0, 0, 0, 1) 77%, rgba(0, 0, 0, 0.849) 71%);
	z-index: 1;
}

.zr-hero-section .container {
	position: relative;
	z-index: 2;
}

.zr-hero-content h1 {
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	font-weight: 700;
}

.zr-hero-content .zr-subtext {
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	font-size: 1.3rem;
}

.zr-hero-section .min-vh-100 {
	min-height: calc(100vh - 108px) !important;
}

.zr-form-note p {
	font-size: 11px;
	line-height: 14px;
	color: #555;
}

/* Enhanced form styling for new field structure */
.zr-form-note a {
	color: var(--sap-teal);
	text-decoration: none;
}

.zr-form-note a:hover {
	text-decoration: underline;
}

/* Enhanced checkbox styling */
.form-check-input:checked {
	background-color: var(--sap-teal);
	border-color: var(--sap-teal);
}

.form-check-input:focus {
	border-color: var(--sap-teal);
	box-shadow: 0 0 0 0.2rem rgba(32, 201, 151, 0.25);
}

.zr-banner-main-text {
	font-weight: 700;
	font-size: 56px;
}

/* Quote Process Steps */
.zr-quote-form {
	background: rgb(255 255 255 / 50%);
	border-radius: 16px 16px 0 0;
	padding: 2rem;
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.zr-step-container .zr-step-col {
	transition: all 0.3s ease;
	background: #F6F6F6;
	padding: 10px 10px;
	font-size: 20px;
	color: #7D7D7D;
	border-radius: 100px;
	cursor: not-allowed;
	font-weight: 500;
	position: relative;
}

.zr-step-form {
	animation: slideDown 0.3s ease-out;
	background: #ffffff80;
	border-radius: 10px;
	padding: 15px 20px;
	backdrop-filter: blur(2px);
	border: 1px solid #CFCFCF;
	text-align: left;
}

/* Step States */
.zr-step-container.zr-step-filled .zr-step-col {
	background-color: #1C959E;
	color: #fff;
	cursor: pointer;
}

.zr-step-container.zr-step-open .zr-step-col {
	cursor: pointer;
	background-color: #BEE3E5;
	color: #1C959E;
}

/* Hero Features */
.zr-hero-features {
	padding: 0 0px 30px 0;
}

.zr-feature-item {
	transition: transform 0.3s ease;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-self: end;
}

.zr-feature-item h3 span {
	display: block;
	font-size: 14px;
	font-weight: 300;
	font-style: normal;
	color: #ddd;
}

.zr-feature-item h3 {
	text-align: right;
	font-size: 20px;
	font-style: italic;
	font-weight: 600;
}

.zr-feature-item:hover {
	transform: translateY(-4px);
}

.zr-feature-icon {
	border-left: 1px solid #fff;
	padding-left: 9px;
	margin-left: 15px;
	transition: transform 0.2s ease;
}

.zr-hero-features.zr-hero-features-right img.zr-feature-icon {
	border-right: 1px solid #fff;
	border-left: 0;
	padding-left: 0;
	margin-left: 0;
	margin-right: 15px;
	padding-right: 9px;
}

.zr-hero-features.zr-hero-features-right {
	text-align: left;
}

.zr-hero-features.zr-hero-features-right .zr-feature-item {
	justify-self: start;
}

.zr-hero-features.zr-hero-features-right .zr-feature-item h3 {
	text-align: left;
}

.zr-hero-section .zr-subtext {
	font-weight: 300;
}

.pt-8 {
	padding-top: 8rem !important;
}

/* Form Styling */
.zr-step-form .form-control,
.zr-step-form .form-select {
	border-radius: 48px;
	border: 1px solid #ddd;
	padding: 14px 20px;
	font-size: 0.95rem;
}

.zr-step-form-group label {
	color: #333;
	font-size: 14px;
}

.zr-step-form .form-control:focus,
.zr-step-form .form-select:focus {
	border-color: var(--sap-teal);
	box-shadow: 0 0 0 0.2rem rgba(32, 201, 151, 0.25);
}

/* Form group spacing */
.zr-step-form-group {
	position: relative;
}

.zr-submit-quote:disabled {
	background-color: var(--sap-primary) !important;
}

#stepZip::after,
#stepCar::after,
#stepContact::after {
	content: "";
	position: absolute;
	right: 15px;
	width: 27px;
	height: 27px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	filter: contrast(0);
}

#stepZip::after {
	background-image: url(../img/zip-form-icon.svg);
}

#stepCar::after {
	background-image: url(../img/car-form-icon.svg);
}

#stepContact::after {
	background-image: url(../img/contact-form-icon.svg);
}

.zr-step-container.zr-step-filled #stepZip::after,
.zr-step-container.zr-step-filled #stepCar::after,
.zr-step-container.zr-step-filled #stepContact::after {
	filter: brightness(9);
}

.zr-step-container.zr-step-open #stepZip::after,
.zr-step-container.zr-step-open #stepCar::after,
.zr-step-container.zr-step-open #stepContact::after {
	filter: contrast(1);
}

.zr-step-form .zr-next-step i {
	transform: rotate(0deg);
	transition: transform 0.3s ease;
}

.zr-step-form .zr-next-step:hover i {
	transform: rotate(45deg);
	transition: transform 0.3s ease;
}

.zr-step-form .form-label {
	color: #333;
	margin-bottom: 4px;
}

.zr-form-status-icon {
	position: absolute;
	right: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 25px;
	width: 25px;
	top: 50%;
	transform: translateY(-50%);
}

.zr-step-form .form-check-input:checked {
	background-color: var(--sap-teal);
	border-color: var(--sap-teal);
}

.zr-step-form .form-check-label {
	color: #6c757d;
	font-size: 0.9rem;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.zr-custom-btn {
	font-size: 18px;
	border: none;
	font-weight: 500;
	border-radius: 80px;
	padding: 12px 40px;
	color: #fff;
	text-decoration: none;
	background: #E76055;
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
}

.zr-custom-btn::before {
	content: '';
	width: 0px;
	height: 0px;
	background: #0f95a0;
	border: 1px solid #0f95a0;
	display: block;
	position: absolute;
	inset: 0;
	border-radius: 80px;
	margin: auto;
	transition: .5s;
	opacity: 0;
	z-index: -1;
}

.zr-custom-btn:hover {
	color: #fff;
	background: #E76055;

}

.zr-custom-btn:hover:before {
	width: 100%;
	height: 100%;
	opacity: 1;
}

.zr-custom-btn.zr-call-btn {
	padding: 8px 20px 8px 10px;
	font-size: 24px;
	display: flex;
	align-items: center;
	line-height: normal;
}

.zr-hero-content>p {
	color: #fff;
	font-size: 22px;
	font-weight: 300;
	margin-bottom: 12px;
}

/* Plans Section */
.zr-plans-section {
	padding: 100px 0;
	position: relative;
}

.zr-plans-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
	pointer-events: none;
}

.zr-plans-section .container {
	position: relative;
	z-index: 2;
}

.zr-plans-section .zr-subtext {
	margin-bottom: 60px !important;
}

.zr-plan-card {
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	overflow: hidden;
	border-radius: 50px 50px 20px 20px;
	border: .5px solid #dbdbdb;
	background: #fff;
}

.zr-plan-card h4 {
	color: #555;
}

.zr-platinum-card {
	background: #0F95A0;
	border: 0;
	box-shadow: none;
}

.zr-platinum-card .zr-plan-body li span {
	color: #fff;
}

.zr-platinum-card::after {
	background: linear-gradient(155deg, #e73a2c8f 0%, #e34e428c 50%, #e760556e 100%);
}


.zr-plan-header {
	padding: 10px 12px;
	position: relative;
	overflow: hidden;
}

.zr-plan-header h3 {
	position: relative;
	z-index: 2;
	font-size: 35px;
	margin: 0;
	font-weight: 300;
	text-transform: uppercase;
}

.zr-plan-platinum {
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.zr-plan-platinum,
.zr-plan-gold,
.zr-plan-silver {
	background-image: repeating-linear-gradient(-135deg, #a2682a 0%, #daa44f 8%, #d1a257 18%, #d3b15f 27%, #ebe08d 35%, #bb8b44 40%, #dacf81 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #dda351 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
	background-size: 150%;
	font-size: 80px;
	font-weight: 300;
	animation: MoveBackgroundPosition 6s ease-in-out infinite;
	margin: 20px;
	border-radius: 80px;
	z-index: 9;
}

.zr-plan-platinum {
	background-image: repeating-linear-gradient(-135deg, #afafaf 0%, rgb(196, 196, 196) 8%, #999999 18%, #a5a5a5 27%, #9c9c9c 35%, #b1b1b1 40%, #929292 50%, #adadad 58%, #c5c5c5 67%, #a1a1a1 77%, #acabab 83%, #a0a0a0 88%, #aaaaaa 93%, #808080 100%);
}

.zr-plan-silver {
	background-image: repeating-linear-gradient(-135deg, #7e7e7e 0%, #696969 8%, #494949 18%, #6b6b6b 27%, #585858 35%, #5a5a5a 40%, #474747 50%, #616161 58%, #868686 67%, #555555 77%, #555555 83%, #7C7C7C 88%, #555555 93%, #3b3b3b 100%);
}

@keyframes MoveBackgroundPosition {
	0% {
		background-position: 0% 50%
	}

	50% {
		background-position: 100% 50%
	}

	100% {
		background-position: 0% 50%
	}
}

.zr-plan-body {
	padding: .5rem 1rem 0rem;
	margin: 0px 20px 20px 20px;
	border-radius: 10px;
	z-index: 9;
}

.zr-plan-body::before {
	/* content: ''; */
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	height: 50px;
	z-index: 1;
}

.zr-plan-body h4 {
	position: relative;
	z-index: 2;
	font-size: 1.4rem;
	margin-bottom: 2rem;
}

.zr-plan-features {
	position: relative;
	z-index: 2;
}

.zr-plan-features li img {
	width: 22px !important;
	height: 22px !important;
	margin-right: 6px;
	filter: brightness(.4);
}

.zr-platinum-card .zr-plan-features li img {
	filter: brightness(1);
}

.zr-plan-features li {
	transition: all 0.3s ease;
}

.zr-plan-features li div {
	font-size: 18px;
	transition: all 0.3s ease;
	padding: 6px 10px;
	border-radius: 8px;
	margin-bottom: 6px;
}

ul.zr-plan-loadMore-list {
	list-style: none;
	padding: 0;
}

li.zr-plan-exclude-item>div::after {
	content: "";
	width: 100%;
	position: absolute;
	height: .5px;
	left: 0;
	right: 0;
	top: 50%;
	background: #333;
	transform: translateY(-50%);
}

.zr-plan-features li:hover {
	padding-left: 1rem;
	transition: all 0.3s ease;
}

.zr-plan-loadMore-list.show li.zr-plan-exclude-item {
	opacity: .7;
}

.zr-plan-features li span {
	font-weight: 400;
	color: #555;
}

.zr-load-more-btn {
	position: relative;
	z-index: 2;
	background: transparent;
	color: #fff;
	border: none;
	border-bottom: 1px solid #fff;
	border-radius: 0;
	padding: 0.8rem 1rem;
	font-weight: 500;
	font-size: 16px;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
}

.zr-load-more-btn:hover {
	background: transparent;
	color: white;
	transform: translateY(-2px);
}

/* =============================================
   LOAD MORE FUNCTIONALITY STYLES
============================================= */

.zr-plan-loadMore-list {
	list-style: none;
	padding: 0;
	margin: 0;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.4s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
}

.zr-plan-loadMore-list.show {
	max-height: 600px;
	opacity: 1;
	padding-top: 0.5rem;
	transition: max-height 0.4s ease-in, opacity 0.3s ease-in, padding 0.3s ease-in;
}

.zr-plan-loadMore-list li {
	transform: translateY(-10px);
	opacity: 0;
	transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.zr-plan-loadMore-list.show li {
	transform: translateY(0);
	opacity: 1;
}

.zr-plan-loadMore-list li {
	margin-bottom: 8px;
}

.zr-plan-loadMore-list li:last-child {
	margin-bottom: 0;
}

.zr-plan-loadMore-list.show {
	display: block !important;
	animation: slideDown 0.3s ease-out;
}

.zr-plan-exclude-item {
	opacity: 0.6;
	text-decoration: line-through;
}

.zr-plan-exclude-item img {
	filter: grayscale(100%);
}

.plans-carousel .owl-dots {
	margin-top: 20px !important;
	text-align: center;
}

.plans-carousel .owl-dots .owl-dot span {
	background: var(--sap-teal) !important;
	width: 12px !important;
	height: 12px !important;
	border-radius: 50% !important;
	transition: all 0.3s ease !important;
}

.plans-carousel .owl-dots .owl-dot.active span,
.plans-carousel .owl-dots .owl-dot:hover span {
	background: var(--sap-primary) !important;
	transform: scale(1.2);
	outline: 1px solid #fff;
}

.plans-carousel .item {
	width: 100%;
}

/* Benefits Section */
.zr-benefits-section {
	padding: 100px 0;
	background-image: url(../img/cover-repair-bg-img.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}

.zr-benefits-section::after {
	content: "";
	background: #ffffffd9;
	position: absolute;
	inset: 0;
	z-index: 0;
}

.zr-benefits-section .container {
	z-index: 9;
	position: relative;
}

.zr-benefits-section .display-5 {
	color: #2c3e50;
	font-weight: 700;
}

.zr-benefits-image-container {
	overflow: hidden;
	border-radius: 20px;
}

.zr-benefits-image-container img {
	transition: transform 0.3s ease;
	border-radius: 20px !important;
	object-fit: cover;
	height: 100%;
}

.zr-benefits-image-container::after {
	content: "";
	border: 3px solid #ffffff;
	position: absolute;
	z-index: 9;
	height: calc(100% - 30px);
	width: calc(100% - 30px);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 15px;
}

.zr-benefits-image-container:hover img {
	transform: scale(1.02);
}

.zr-image-overlay {
	border-radius: 20px !important;
	pointer-events: none;
}

.zr-benefits-grid {
	padding-left: 1rem;
}

.zr-benefit-item {
	transition: all 0.3s ease;
	flex-direction: column;
	gap: 15px;
}

.zr-icon-wrapper {
	transition: all 0.3s ease;
	border: 2px solid transparent;
	background: transparent !important;
	border-radius: 6px;
}

.zr-benefit-item:hover .zr-icon-wrapper {
	transform: scale(1.1);
}

.zr-benefit-icon-img {
	transition: all 0.3s ease;
	filter: none;
}

.zr-benefit-item:hover .zr-benefit-icon-img {
	transform: scale(1.1);
}

.zr-benefit-item:nth-child(1) .zr-icon-wrapper,
.zr-benefit-item:nth-child(2) .zr-icon-wrapper,
.zr-benefit-item:nth-child(3) .zr-icon-wrapper,
.zr-benefit-item:nth-child(4) .zr-icon-wrapper {
	background: #E4F0F2 !important;
}

.zr-benefit-item:nth-child(1):hover .zr-icon-wrapper,
.zr-benefit-item:nth-child(2):hover .zr-icon-wrapper,
.zr-benefit-item:nth-child(3):hover .zr-icon-wrapper,
.zr-benefit-item:nth-child(4):hover .zr-icon-wrapper {
	background: #E4F0F2 !important;
	border-color: #E4F0F2;
}

.zr-benefits-section::before {
	content: "";
	position: absolute;
	right: 50px;
	bottom: 40px;
	width: 260px;
	height: 260px;
	background: url(../img/logo-water-mark.png) no-repeat center/contain;
	z-index: 1;
	opacity: 0.2;
}

.zr-benefit-content h3 {
	color: #2c3e50;
	font-weight: 600;
	font-size: 22px;
}

.zr-benefit-content p {
	font-size: 16px;
}

/* =============================================
   VERTICAL AUTOPLAY REVIEW SLIDER - CSS
   ============================================= */

.zr-reviews-section {
	padding: 100px 0;
	background-image: url(../img/Review-img-bg.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}

.zr-reviews-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	background: rgb(232 235 242 / 85%);
}

.zr-reviews-section .container {
	position: relative;
	z-index: 9;
}

.reviews-content h2 span {
	color: var(--sap-teal);
}

.rating-summary {
	border-radius: 100px;
}

.stars i {
	font-size: 1.3rem;
	margin-right: 2px;
}

.trust-indicators .badge {
	font-size: 0.85rem;
	padding: 0.5rem 0.75rem;
	border-radius: 20px;
}

.zr-google-icon {
	border-right: 2px solid #333;
	padding-right: 15px;
	margin-right: 15px;
}

.vertical-review-slider-container {
	height: 600px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.vertical-review-slider {
	position: relative;
	height: 100%;
	width: 100%;
}

/* =============================================
   REVIEW SLIDES - 3 VISIBLE LAYOUT
   ============================================= */

.review-slide {
	position: absolute;
	left: 0%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
	transform-origin: center center;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
}

.review-slide:nth-child(1) {
	top: 40px;
	opacity: 0.6;
	transform: scale(1);
	filter: blur(1.5px);
	visibility: visible;
	z-index: 5;
}

.review-slide:nth-child(2) {
	top: 210px;
	opacity: 1;
	transform: scale(1);
	filter: blur(0);
	visibility: visible;
	z-index: 10;
}

.review-slide:nth-child(3) {
	top: 360px;
	opacity: 0.6;
	transform: scale(1);
	filter: blur(1.5px);
	visibility: visible;
	z-index: 5;
}

.review-slide:nth-child(4),
.review-slide:nth-child(5) {
	top: 510px;
	opacity: 0;
	transform: scale(0.6);
	filter: blur(3px);
	visibility: hidden;
	z-index: 1;
}

.review-slide.active {
	top: 160px !important;
	opacity: 1 !important;
	transform: scale(1) !important;
	filter: blur(0) !important;
	visibility: visible !important;
	z-index: 10 !important;
	pointer-events: auto;
	box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
}

.review-slide.prev {
	top: 0px !important;
	opacity: 0.6 !important;
	transform: scale(1) !important;
	filter: blur(1.5px) !important;
	visibility: visible !important;
	z-index: 5 !important;
	pointer-events: none;
	opacity: .8;
}

.review-slide.next {
	top: 320px !important;
	opacity: 0.6 !important;
	transform: scale(1) !important;
	filter: blur(1.5px) !important;
	visibility: visible !important;
	z-index: 5 !important;
	opacity: .8;
	pointer-events: none;
}

.review-slide.next .quote-icon img,
.review-slide.prev .quote-icon img {
	filter: saturate(0);
}

.quote-icon {
	position: absolute;
	top: 10px;
	right: 20px;
}

.review-slide.hidden {
	top: -250px !important;
	opacity: 0 !important;
	transform: scale(0.6) !important;
	filter: blur(3px) !important;
	visibility: hidden !important;
	z-index: 1 !important;
	pointer-events: none;
}

/* =============================================
   REVIEW CARD DESIGN
   ============================================= */

.review-card {
	width: 100%;
	height: 100%;
	background: white;
	padding: 1.5rem;
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.review-slide.active .review-card {
	border-left: 5px solid var(--sap-primary);
	transform: translateY(0);
}

.zr-reviewer-photo {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #fff;
}

.zr-reviewer-name {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
	display: block;
}

.zr-review-rating i {
	font-size: 15px;
	margin-right: 1px;
}

.zr-review-text {
	color: #333;
	font-size: 16px;
	line-height: 1.6;
	font-style: italic;
}

.review-arrow {
	display: none;
}

.zr-review-block {
	min-height: 120px;
}

.zr-cta-section {
	padding: 120px 0 15px 0;
	background-image: url(../img/cta-bg.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}

.zr-cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	background: linear-gradient(0deg, rgb(25 165 177 / 88%) 0%, rgb(9 117 124 / 87%) 100%);
}

.zr-cta-section .container {
	position: relative;
	z-index: 2;
}

.zr-cta-section .btn-danger {
	background-color: var(--sap-primary);
	border-color: var(--sap-primary);
	font-weight: 600;
	padding: 14px 50px;
	border-radius: 50px;
	transition: all 0.3s ease;
	margin-right: 1rem;
	margin-bottom: 1rem;
}

.zr-cta-section .btn-outline-light {
	border-width: 2px;
	font-weight: 600;
	padding: 14px 28px;
	border-radius: 50px;
	transition: all 0.3s ease;
	color: white;
	border-color: white;
	margin-bottom: 1rem;
}

.zr-cta-section .btn-outline-light:hover {
	background-color: white;
	color: var(--sap-teal);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.zr-cta-feature {
	transition: transform 0.3s ease;
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.zr-cta-feature:hover {
	transform: translateY(-4px);
}

.zr-cta-feature img {
	filter: brightness(0) invert(1);
	border-right: 1px solid #fff;
	padding-right: 12px;
	margin-right: 12px;
}

.zr-cta-feature strong {
	font-size: 18px;
	display: block;
	margin-bottom: 0;
	font-weight: 600;
}

.zr-cta-feature .small {
	font-size: 14px;
}

.zr-copyright-text {
	padding-top: 60px;
	color: #fff;
	font-size: 14px;
}

.zr-copyright-text p a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid #fff;
	padding-bottom: 2px;
}

.zr-cta-buttons button {
	padding: 8px 40px 8px 10px;
	text-align: left;
	display: flex;
	align-items: center;
	line-height: normal;
	width: 250px;
}

.zr-cta-buttons .zr-custom-dark-btn {
	background: #333;
}

.zr-cta-buttons .zr-custom-btn a {
	display: flex;
	align-items: center;
}

.zr-cta-buttons .zr-custom-btn::before {
	background: #fff;
	border-color: #fff;
}

.zr-cta-buttons .zr-custom-btn:hover a {
	color: #fff !important;
	position: relative;
	z-index: 9;
	transition: .2s all ease-in-out;
}

.zr-cta-buttons .zr-custom-btn:hover a {
	color: #333 !important;
	position: relative;
	z-index: 9;
	transition: .2s all ease-in-out;
}


.zr-cta-buttons .zr-custom-btn img {
	transition: .2s all ease-in-out;
}

.zr-cta-buttons .zr-custom-btn:hover img {
	filter: brightness(0);
	transition: .8s all ease-in-out;
}

/* =============================================
   PLANS SECTION GLOBAL STYLES
============================================= */

.plans-mobile-carousel {
	display: block;
}

.plans-desktop-grid {
	display: none;
}

.plans-carousel .zr-plan-card {
	margin: 0 auto;
	max-width: 100%;
}

.plans-carousel .owl-item {
	display: flex;
}

.plans-carousel .owl-item .zr-plan-card {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.plans-carousel .zr-plan-body {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.plans-carousel .zr-plan-features {
	flex: 1;
	margin-bottom: 0;
}

/* =============================================
   GLOBAL UTILITY CLASSES
============================================= */

.btn:focus,
.form-control:focus,
.form-select:focus {
	outline: 1px solid var(--sap-teal);
	outline-offset: 2px;
}

.js-loading {
	opacity: 0.6;
	pointer-events: none;
}

html {
	scroll-behavior: smooth;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideUp {
	from {
		opacity: 1;
		transform: translateY(0);
	}

	to {
		opacity: 0;
		transform: translateY(-10px);
	}
}

.load-more-item-enter {
	animation: slideDown 0.3s ease-out;
}

.load-more-item-exit {
	animation: slideUp 0.3s ease-in;
}

@keyframes onAutoFillStart {
	from {}

	to {}
}

input:-webkit-autofill {
	animation-name: onAutoFillStart;
	animation-duration: 0.001s;
}

select:-webkit-autofill {
	animation-name: onAutoFillStart;
	animation-duration: 0.001s;
}
 

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Validation Error Styles */
.is-invalid {
	border-color: #E76156 !important;
	box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.invalid-feedback {
	display: none;
	width: 100%;
	margin-top: 0.25rem;
	font-size: 0.875rem;
	color: #E76156;
}

.invalid-feedback.d-block {
	display: block !important;
}

/* Form field focus states with validation */
.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
	border-color: #E76156;
	box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-check-input.is-invalid {
	border-color: #E76156;
}

.form-check-input.is-invalid:checked {
	background-color: #E76156;
	border-color: #E76156;
}

.form-check-input.is-invalid:focus {
	box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* video.zr-loader-video {
    width: 300px;
    height: 300px;
    background: #5e4856;
    border-radius: 50%;
} */