.nav-area .navbar-area .main-nav .navbar-brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: visible;
    isolation: isolate;
}

.nav-area .navbar-area .main-nav .navbar-brand::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(15, 97, 22, 0.08), rgba(211, 249, 54, 0.08));
    opacity: 0;
    transform: scaleX(0);
    transform-origin: bottom;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.nav-area .navbar-area .main-nav .navbar-brand:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.nav-area .navbar-area .main-nav .navbar-brand::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    width: calc(100% + 40px);
    height: 2px;
    background: linear-gradient(90deg, transparent, #01b94b, #d3f936, #01b94b, transparent);
    transform: scaleX(0) translateY(8px);
    transform-origin: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
    filter: blur(1px);
}

.nav-area .navbar-area .main-nav .navbar-brand:hover::after {
    opacity: 1;
    transform: scaleX(1) translateY(14px);
}

.nav-area .navbar-area .main-nav .navbar-brand:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(13, 116, 50, 0.15), 0 0 25px rgba(211, 249, 54, 0.3);
}

.nav-area .navbar-area .main-nav .navbar-brand .logo-nav {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 4px rgba(13, 116, 50, 0.2));
}

.nav-area .navbar-area .main-nav .navbar-brand:hover .logo-nav {
    transform: rotate(-12deg) scale(1.15);
    filter: drop-shadow(0 6px 16px rgba(13, 116, 50, 0.4)) drop-shadow(0 0 12px rgba(211, 249, 54, 0.5));
}

@keyframes brand-logo-spin {
    0% { transform: rotate(0deg) scale(1); }
    40% { transform: rotate(-25deg) scale(1.25); }
    70% { transform: rotate(-8deg) scale(1.1); }
    100% { transform: rotate(-12deg) scale(1.15); }
}

.nav-area .navbar-area .main-nav .navbar-brand .logo-nav.brand-logo-spin {
    animation: brand-logo-spin 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
    filter: drop-shadow(0 6px 16px rgba(13, 116, 50, 0.4)) drop-shadow(0 0 12px rgba(211, 249, 54, 0.5)) !important;
}

.nav-area .navbar-area .main-nav .navbar-brand .show-name {
    position: relative;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: linear-gradient(90deg, #1c1c1c, #1c1c1c);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-area .navbar-area .main-nav .navbar-brand:hover .show-name {
    background-image: linear-gradient(90deg, #0f6116, #01b94b, #d3f936, #01b94b, #0f6116);
    background-size: 300% auto;
    animation: brand-name-shimmer 2s linear infinite;
    letter-spacing: 0.03em;
    transform: translateY(-2px);
}

@keyframes brand-name-shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.show-name{
  color: rgba(28, 28, 28, 1);
  font-weight: 800;
}
.logo-nav{
  width: 45px;
  height: 45px;
  margin-right: 10px;
}
.why-item{
	border: 1px solid rgba(221, 220, 239, 1);
	border-radius: 16px;
	padding: 40px 20px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	background: #fff;
	isolation: isolate;
	transform-style: preserve-3d;
}

.why-item:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 25px 50px rgba(13, 116, 50, 0.15), 0 0 30px rgba(211, 249, 54, 0.2);
	border-color: rgba(15, 97, 22, 0.4);
}

.why-item::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(15, 97, 22, 0.05), rgba(211, 249, 54, 0.08));
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
}

.why-item:hover::before {
	opacity: 1;
}

.why-item::after {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent 30%,
		rgba(255, 255, 255, 0.5) 45%,
		rgba(255, 255, 255, 0.7) 50%,
		rgba(255, 255, 255, 0.5) 55%,
		transparent 70%
	);
	transform: translateX(-100%);
	pointer-events: none;
	z-index: 2;
}

.why-item:hover::after {
	animation: why-shimmer-sweep 0.8s ease forwards;
}

@keyframes why-shimmer-sweep {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}

.why-img {
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-img img {
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	filter: drop-shadow(0 2px 6px rgba(13, 116, 50, 0.1));
	animation: why-icon-idle 3s ease-in-out infinite;
}

@keyframes why-icon-idle {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-4px); }
}

.why-item:hover .why-img img {
	transform: scale(1.2) rotate(-8deg);
	animation: why-icon-bounce 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
	filter: drop-shadow(0 8px 20px rgba(13, 116, 50, 0.3)) drop-shadow(0 0 15px rgba(211, 249, 54, 0.4));
}

@keyframes why-icon-bounce {
	0% { transform: scale(1) rotate(0); }
	40% { transform: scale(1.35) rotate(-18deg); }
	70% { transform: scale(1.12) rotate(8deg); }
	100% { transform: scale(1.2) rotate(-8deg); }
}

.why-title.item-main-title {
	transition: all 0.4s ease;
	transform: translateZ(30px);
}

.why-item:hover .why-title.item-main-title {
	color: rgba(15, 97, 22, 1);
	transform: translateZ(30px) translateY(-2px);
	letter-spacing: 0.02em;
}

.why-desc.item-main-desc {
	transition: all 0.4s ease;
	transform: translateZ(20px);
}

.why-item:hover .why-desc.item-main-desc {
	color: rgba(28, 28, 28, 0.8);
	transform: translateZ(20px) translateY(2px);
}

.why-item .why-mouse-glow {
	position: absolute;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(211, 249, 54, 0.35) 0%,
		rgba(1, 185, 75, 0.15) 40%,
		transparent 70%
	);
	pointer-events: none;
	opacity: 0;
	transform: translate(-50%, -50%);
	z-index: 1;
	mix-blend-mode: screen;
	transition: opacity 0.3s ease;
}

.why-item:hover .why-mouse-glow {
	opacity: 1;
}

.why-item .why-bottom-line {
	position: absolute;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	border-radius: 2px;
	background: linear-gradient(90deg, #d3f936, #01b94b);
	box-shadow: 0 0 12px rgba(35, 184, 91, 0.6);
	transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	z-index: 3;
}

.why-item:hover .why-bottom-line {
	width: 60px;
}

.why-item .why-corner-tl,
.why-item .why-corner-tr {
	position: absolute;
	width: 24px;
	height: 24px;
	border: 2px solid rgba(15, 97, 22, 0.5);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 3;
}

.why-item .why-corner-tl {
	top: 10px; left: 10px;
	border-right: none;
	border-bottom: none;
	border-top-left-radius: 6px;
}

.why-item .why-corner-tr {
	top: 10px; right: 10px;
	border-left: none;
	border-bottom: none;
	border-top-right-radius: 6px;
}

.why-item:hover .why-corner-tl,
.why-item:hover .why-corner-tr {
	opacity: 1;
}

/* ============ IMG-SHOW COOL HOVER EFFECTS ============ */
.img-show {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	cursor: pointer;
	transform-style: preserve-3d;
	transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.img-show::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(15, 97, 22, 0.15), rgba(211, 249, 54, 0.12));
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 2;
	pointer-events: none;
}

.img-show:hover::before {
	opacity: 1;
}

.img-show::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.6),
		transparent
	);
	transform: skewX(-20deg);
	z-index: 3;
	pointer-events: none;
}

.img-show:hover::after {
	animation: img-shine-sweep 0.9s ease forwards;
}

@keyframes img-shine-sweep {
	0% { left: -100%; }
	100% { left: 150%; }
}

.img-show img {
	transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
	filter: drop-shadow(0 4px 12px rgba(13, 116, 50, 0.12));
	animation: img-idle-float 4s ease-in-out infinite;
}

@keyframes img-idle-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

.img-show:hover img {
	transform: scale(1.12) rotate(-1deg) translateZ(20px);
	animation: img-hover-bounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
	filter: drop-shadow(0 20px 40px rgba(13, 116, 50, 0.35)) drop-shadow(0 0 30px rgba(211, 249, 54, 0.4));
}

@keyframes img-hover-bounce {
	0% { transform: scale(1) rotate(0) translateZ(20px); }
	40% { transform: scale(1.22) rotate(-4deg) translateZ(30px); }
	70% { transform: scale(1.08) rotate(2deg) translateZ(15px); }
	100% { transform: scale(1.12) rotate(-1deg) translateZ(20px); }
}

.img-show .img-glow-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	border: 3px solid rgba(211, 249, 54, 0.6);
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 1;
	opacity: 0;
}

.img-show:hover .img-glow-ring {
	animation: img-ring-expand 1.2s ease-out forwards;
}

@keyframes img-ring-expand {
	0% {
		width: 0;
		height: 0;
		opacity: 0.8;
		border-width: 4px;
	}
	100% {
		width: 140%;
		height: 140%;
		opacity: 0;
		border-width: 1px;
	}
}

.img-show .img-corner-deco {
	position: absolute;
	width: 40px;
	height: 40px;
	border: 3px solid rgba(15, 97, 22, 0.6);
	z-index: 4;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.img-show .img-corner-tl {
	top: 12px; left: 12px;
	border-right: none;
	border-bottom: none;
	border-top-left-radius: 10px;
}

.img-show .img-corner-tr {
	top: 12px; right: 12px;
	border-left: none;
	border-bottom: none;
	border-top-right-radius: 10px;
}

.img-show:hover .img-corner-deco {
	opacity: 1;
}

.img-show .img-particles {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 5;
	overflow: hidden;
}

.img-show .img-particle {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	pointer-events: none;
	transition: all 1s ease-out;
}

.img-show .img-pulse-dot {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	background: rgba(211, 249, 54, 0.7);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	pointer-events: none;
}

.img-show:hover .img-pulse-dot {
	animation: img-pulse-ring 1.5s ease-out infinite;
}

@keyframes img-pulse-ring {
	0% {
		width: 10px;
		height: 10px;
		opacity: 1;
		box-shadow: 0 0 0 0 rgba(211, 249, 54, 0.7);
	}
	100% {
		width: 80px;
		height: 80px;
		opacity: 0;
		box-shadow: 0 0 0 30px rgba(211, 249, 54, 0);
	}
}
.main-item-top{
	margin-top: 20px;
}
.item-main-title{
	font-weight: 600;
	font-size: 18px;
	color: rgba(28, 28, 28, 1);
}
.item-main-desc{
	color: rgba(102, 102, 102, 1);
}
.why-desc{
	font-size: 14px;
}
.why-title{
	margin: 13px 0;
}
.how-item{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	padding: 20px;
	border-radius: 16px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	background: transparent;
	isolation: isolate;
}

.how-item:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: translateX(12px) scale(1.02);
	box-shadow: 0 20px 40px rgba(13, 116, 50, 0.15);
}

.how-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #d3f936, #01b94b, #0f6116);
	border-radius: 4px;
	transform: scaleY(0);
	transform-origin: top center;
	transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.how-item:hover::before {
	transform: scaleY(1);
}

.how-item::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
	transform: skewX(-15deg);
	pointer-events: none;
}

.how-item:hover::after {
	animation: how-item-shine 0.8s ease forwards;
}

@keyframes how-item-shine {
	0% { left: -100%; }
	100% { left: 150%; }
}

.how-item .how-num {
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.how-item:hover .how-num {
	transform: scale(1.2) rotate(-10deg);
	box-shadow: 0 8px 20px rgba(1, 185, 75, 0.4);
	animation: how-num-pulse 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes how-num-pulse {
	0% { transform: scale(1) rotate(0); }
	50% { transform: scale(1.4) rotate(5deg); }
	100% { transform: scale(1.2) rotate(-10deg); }
}

.how-item .how-title {
	transition: all 0.4s ease;
}

.how-item:hover .how-title {
	color: rgba(15, 97, 22, 1);
	letter-spacing: 0.02em;
	transform: translateY(-2px);
}

.how-item .how-desc {
	transition: all 0.4s ease;
}

.how-item:hover .how-desc {
	color: rgba(28, 28, 28, 0.85);
	transform: translateY(2px);
}

.how-item .how-info {
	transition: transform 0.4s ease;
}

.how-item:hover .how-info {
	transform: translateX(6px);
}

.how-item .how-particles {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.how-item .how-particle {
	position: absolute;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	pointer-events: none;
	transition: all 0.8s ease-out;
}

.how-item .how-bottom-arc {
	position: absolute;
	bottom: 8px;
	right: 12px;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #d3f936, #01b94b);
	border-radius: 2px;
	transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 0 8px rgba(1, 185, 75, 0.5);
}

.how-item:hover .how-bottom-arc {
	width: 80px;
}
.how-num{
	margin-right: 20px;
	color: white;
	width: 30px;
	height: 30px;
	border-radius: 64px;
	background: linear-gradient(to bottom, rgba(211, 249, 54, 1), rgba(1, 185, 75, 1));
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-weight: 800;
}
.how-title{
	font-size: 18px;
	font-weight: 800;
	color: rgba(28, 28, 28, 1);
	margin-bottom: 10px;
}
.how-img img{
	width: 80%;
}
.index-privacy-item{
	display: flex;
	align-items: center;

	padding: 14px 18px;
	border-radius: 14px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	background: transparent;
	isolation: isolate;
}

.index-privacy-item:hover {
	background: rgba(255, 255, 255, 0.95);
	transform: translateX(10px) scale(1.03);
	box-shadow: 0 15px 35px rgba(13, 116, 50, 0.15);
}

.index-privacy-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #d3f936, #01b94b);
	border-radius: 4px;
	transform: scaleY(0);
	transform-origin: top center;
	transition: transform 0.4s ease;
}

.index-privacy-item:hover::before {
	transform: scaleY(1);
}

.index-privacy-item::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 40%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
	transform: skewX(-15deg);
	pointer-events: none;
}

.index-privacy-item:hover::after {
	animation: privacy-item-shine 0.7s ease forwards;
}

@keyframes privacy-item-shine {
	0% { left: -100%; }
	100% { left: 150%; }
}

.index-privacy-item .index-privacy-img {
	transition: all 0.4s ease;
}

.index-privacy-item:hover .index-privacy-img {
	transform: scale(1.3) rotate(-12deg);
}

.index-privacy-item:hover .index-privacy-img img {
	filter: drop-shadow(0 4px 10px rgba(15, 97, 22, 0.4));
}

.index-privacy-item .index-privacy-title {
	transition: all 0.4s ease;
}

.index-privacy-item:hover .index-privacy-title {
	color: rgba(15, 97, 22, 1);
	transform: translateX(4px);
	letter-spacing: 0.02em;
}

.index-privacy-item .privacy-particles {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.index-privacy-item .privacy-particle {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	pointer-events: none;
	transition: all 0.8s ease-out;
}
.index-privacy-all-title{
	font-weight: 600;
	color: black;
	font-size: 20px;
	margin: 15px 0;
}
.index-privacy-img img{
	width: 20px;
	height: 20px;
	margin-right: 10px;
}
.privacy-img img{
	width: 70%;
	margin-left: 15%;
}
.main-title-s{
    font-size: 40px;
    font-weight: 600;
    color: rgba(28, 28, 28, 1);
    margin-bottom: 30px;
}
.main-title-s1{
    font-size: 40px;
    font-weight: 600;
    color: rgba(28, 28, 28, 1);
    margin-top: 38px;
}
.main-p{
    color: rgba(102, 102, 102, 1);
    margin-bottom: 20px;
    line-height: 25px;
}
.story-img{
    width: 60%;
}
.value-item{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(228, 255, 235, 1);
    border-radius: 16px;
    border: 1px solid rgba(15, 97, 22, 1);
    padding: 34px 2px;
}
.value-title{
    margin: 12px 0;
}
.value-desc{
    text-align: center;
    color: rgba(102, 102, 102, 1);
}
/* Quartz Cash maximum credit highlight */
/* Quartz Cash maximum credit highlight */
			.qc-credit-limit {
				--qc-ink: #15562a;
				--qc-deep: #0d7432;
				position: relative;
				z-index: 4;
				width: min(1200px, calc(100% - 32px));
				margin: -58px auto 0;
				padding: 22px 30px 20px;
				border: 1px solid rgba(255, 255, 255, .8);
				border-radius: 16px;
				background: linear-gradient(115deg, rgba(242, 255, 190, 1) 0%, rgba(229, 255, 201, .98) 48%, rgba(210, 251, 221, 1) 100%);
				box-shadow: 0 18px 45px rgba(9, 93, 43, .18), 0 5px 15px rgba(13, 116, 50, .12), inset 0 1px 0 rgba(255, 255, 255, .95);
				overflow: hidden;
				isolation: isolate;
			}
			.qc-credit-limit::before,
			.qc-credit-limit::after { content: ""; position: absolute; pointer-events: none; z-index: -1; }
			.qc-credit-limit::before {
				inset: 0;
				background: linear-gradient(105deg, transparent 22%, rgba(255, 255, 255, .52) 44%, transparent 62%);
				transform: translateX(-115%);
				animation: qc-credit-shine 5.5s ease-in-out infinite;
			}
			.qc-credit-limit::after {
				width: 190px; height: 190px; right: -78px; top: -110px;
				border: 1px solid rgba(40, 161, 73, .18); border-radius: 50%;
				box-shadow: 0 0 0 16px rgba(40, 161, 73, .05), 0 0 0 32px rgba(40, 161, 73, .035);
				animation: qc-credit-orbit 9s linear infinite;
			}
			.qc-credit-limit .qc-credit-spark {
				position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #fff;
				box-shadow: 0 0 0 4px rgba(255, 255, 255, .3), 0 0 15px #fff;
				animation: qc-credit-twinkle 2.2s ease-in-out infinite;
			}
			.qc-credit-limit .qc-credit-spark-one { left: 13%; top: 22%; }
			.qc-credit-limit .qc-credit-spark-two { right: 19%; bottom: 18%; animation-delay: .8s; }
			.qc-credit-inner { position: relative; }
			.qc-credit-heading { position: relative; margin: 0 0 15px; text-align: center; }
			.qc-credit-heading::after {
				content: ""; display: block; width: 54px; height: 3px; margin: 11px auto 0;
				border-radius: 99px; background: linear-gradient(90deg, #b3ed32, #23b85b);
				box-shadow: 0 0 13px rgba(35, 184, 91, .35);
			}
			.qc-credit-heading .qc-credit-kicker {
				display: inline-block; margin-bottom: 3px; color: #398c40; font-size: 10px;
				font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
			}
			.qc-credit-heading h2 {
				margin: 0; color: var(--qc-ink); font-size: clamp(20px, 2.1vw, 28px);
				font-weight: 800; line-height: 1.15; letter-spacing: -.02em;
			}
			.qc-credit-heading p {
				max-width: 470px; margin: 6px auto 0; color: rgba(21, 86, 42, .72);
				font-size: 12px; line-height: 1.5;
			}
			.qc-credit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
			.qc-credit-card {
				position: relative; min-height: 116px; padding: 11px 7px 10px;
				/*border: 1px solid rgba(255, 255, 255, .68);*/ border-radius: 12px;
			/*	background: rgba(255, 255, 255, .28);*/ text-align: center;
				backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
			/*	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65), 0 5px 15px rgba(43, 143, 65, .06);*/
				top: 16px; opacity: 0;
				animation: qc-credit-rise .75s cubic-bezier(.2, .8, .2, 1) forwards;
				transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease;
			}
			.qc-credit-card:nth-child(1) { animation-delay: .12s; }
			.qc-credit-card:nth-child(2) { animation-delay: .24s; }
			.qc-credit-card:nth-child(3) { animation-delay: .36s; }
			.qc-credit-card:nth-child(4) { animation-delay: .48s; }
			.qc-credit-card::before {
				content: ""; position: absolute; left: 50%; bottom: -1px; width: 0; height: 3px;
				border-radius: 99px; background: #36ad4b; transform: translateX(-50%); transition: width .35s ease;
			}
			.qc-credit-card:hover {
				transform: translateY(-8px) scale(1.025); background: rgba(255, 255, 255, .58);
				box-shadow: 0 13px 22px rgba(24, 132, 57, .14), inset 0 1px 0 rgba(255, 255, 255, .92);
			}
			.qc-credit-card:hover::before { width: 42%; }
			.qc-credit-icon {
				display: grid; place-items: center; width: 45px; height: 45px; margin: -1px auto 7px;
				border-radius: 14px; background: rgba(255, 255, 255, .44);
				box-shadow: 0 0 0 5px rgba(255, 255, 255, .16), 0 8px 15px rgba(27, 122, 46, .12);
				animation: qc-credit-float 3.2s ease-in-out infinite;
			}
			.qc-credit-card:nth-child(2) .qc-credit-icon { animation-delay: .35s; }
			.qc-credit-card:nth-child(3) .qc-credit-icon { animation-delay: .7s; }
			.qc-credit-card:nth-child(4) .qc-credit-icon { animation-delay: 1.05s; }
			.qc-credit-icon img { width: 34px; height: 34px; object-fit: contain; }
			.qc-credit-label {
				display: block; min-height: 29px; color: rgba(28, 28, 28, 1); font-size: 10px;
				font-weight: 800; line-height: 1.35;
			}
			.qc-credit-value {
				display: block; margin-top: 4px; color: var(--qc-deep); font-size: clamp(12px, 1.25vw, 15px);
				font-weight: 900; line-height: 1.15; letter-spacing: .01em;
				text-shadow: 0 1px 0 rgba(255, 255, 255, .65);
			}
			@keyframes qc-credit-rise {
				0% { opacity: 0; top: 16px; transform: translateY(12px) scale(.94); }
				70% { opacity: 1; top: -3px; transform: translateY(-2px) scale(1.01); }
				100% { opacity: 1; top: 0; transform: translateY(0) scale(1); }
			}
			@keyframes qc-credit-float {
				0%, 100% { transform: translateY(0) rotate(-2deg); }
				50% { transform: translateY(-5px) rotate(2deg); }
			}
			@keyframes qc-credit-shine {
				0%, 25% { transform: translateX(-115%); }
				60%, 100% { transform: translateX(115%); }
			}
			@keyframes qc-credit-orbit {
				from { transform: rotate(0deg) scale(.85); } to { transform: rotate(360deg) scale(1.08); }
			}
			@keyframes qc-credit-twinkle {
				0%, 100% { opacity: .25; transform: scale(.6); } 50% { opacity: 1; transform: scale(1.15); }
			}
			@media (prefers-reduced-motion: reduce) {
				.qc-credit-limit *, .qc-credit-limit::before, .qc-credit-limit::after { animation: none !important; }
				.qc-credit-card { opacity: 1; top: 0; }
			}
			@media (max-width: 767px) {
				.qc-credit-limit { width: calc(100% - 24px); margin-top: -38px; padding: 19px 10px 12px; border-radius: 14px; }
				.qc-credit-heading { margin-bottom: 12px; }
				.qc-credit-heading p { font-size: 11px; }
				.qc-credit-grid { gap: 6px; }
				.qc-credit-card { min-height: 106px; padding: 9px 3px 8px; border-radius: 10px; }
				.qc-credit-icon { width: 36px; height: 36px; margin-bottom: 6px; border-radius: 11px; }
				.qc-credit-icon img { width: 28px; height: 28px; }
				.qc-credit-label { min-height: 28px; font-size: 8px; }
				.qc-credit-value { font-size: 10px; }
			}

/* ==================== FOOTER AREA ==================== */
.footer-area {
    position: relative;
    padding: 100px 0 30px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 105, 47, 0.85) 0%, rgba(21, 86, 42, 0.9) 50%, rgba(13, 116, 50, 0.85) 100%);
    z-index: 1;
}

.footer-area .container {
    position: relative;
    z-index: 2;
}

.footer-main {
    padding-bottom: 50px;
}

.footer-single {
    margin-bottom: 30px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 25px;
    position: relative;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    margin-right: 12px;
    animation: footer-pulse 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(211, 249, 54, 0.6));
    transition: transform 0.4s ease;
}

.footer-logo:hover img {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(211, 249, 54, 0.9));
}

.footer-logo span {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 15px rgba(211, 249, 54, 0.4);
    background: linear-gradient(120deg, #fff 0%, #d3f936 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: footer-shimmer 3s linear infinite;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.footer-brand:hover .footer-desc {
    color: #fff;
}

.footer-links h3,
.footer-support h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.footer-links h3::after,
.footer-support h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #d3f936, #01b94b);
    border-radius: 3px;
    animation: footer-bar 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(211, 249, 54, 0.6);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding-left: 18px;
    display: inline-block;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-links ul li a::before {
    content: "→";
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #d3f936;
}

.footer-links ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d3f936, transparent);
    transition: width 0.4s ease;
}

.footer-links ul li a:hover {
    color: #d3f936;
    transform: translateX(8px);
    text-shadow: 0 0 15px rgba(211, 249, 54, 0.5);
}

.footer-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links ul li a:hover::after {
    width: 100%;
}

.support-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.support-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 249, 54, 0.2), transparent);
    transition: left 0.6s ease;
}

.support-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(211, 249, 54, 0.4);
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.support-item:hover::before {
    left: 100%;
}

.support-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(211, 249, 54, 0.3), rgba(1, 185, 75, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    border: 2px solid rgba(211, 249, 54, 0.4);
    transition: all 0.4s ease;
    animation: footer-icon-pulse 2s ease-in-out infinite;
}

.support-item:hover .support-icon {
    transform: rotate(360deg) scale(1.2);
    background: linear-gradient(135deg, #d3f936, #01b94b);
    box-shadow: 0 0 20px rgba(211, 249, 54, 0.6);
    animation: none;
}

.support-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.support-item:hover .support-icon img {
    filter: none;
    animation: footer-bounce 0.6s ease;
}

.support-info a,
.support-info span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.support-info a {
    position: relative;
}

.support-info a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #d3f936;
    transition: width 0.4s ease;
}

.support-item:hover .support-info a,
.support-item:hover .support-info span {
    color: #d3f936;
    text-shadow: 0 0 10px rgba(211, 249, 54, 0.4);
}

.support-item:hover .support-info a::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.footer-bottom::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d3f936, transparent);
    animation: footer-line 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(211, 249, 54, 0.5);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-bottom:hover p {
    color: #d3f936;
}

/* Footer Animations */
@keyframes footer-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes footer-shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

@keyframes footer-bar {
    0%, 100% { width: 50px; opacity: 1; }
    50% { width: 70px; opacity: 0.7; }
}

@keyframes footer-icon-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(211, 249, 54, 0.6); }
    50% { box-shadow: 0 0 0 10px rgba(211, 249, 54, 0); }
}

@keyframes footer-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes footer-line {
    0%, 100% { opacity: 0.5; width: 150px; }
    50% { opacity: 1; width: 250px; }
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-area {
        padding: 80px 0 30px;
        background-attachment: scroll;
    }
}

@media (max-width: 767px) {
    .footer-area {
        padding: 60px 0 20px;
    }
    .footer-logo span {
        font-size: 22px;
    }
    .footer-links h3,
    .footer-support h3 {
        font-size: 20px;
    }
    .support-item {
        padding: 12px;
    }
}

/* ==================== PRIVACY PAGE AREA ==================== */
.main-privacy-area {
    position: relative;
    background-color: rgba(232, 250, 238, 1) !important;
    overflow: hidden;
    isolation: isolate;
}

/* Animated background decoration */
.privacy-bg-decor {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.privacy-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    mix-blend-mode: multiply;
}

.privacy-blob-1 {
    width: 480px; height: 480px;
    top: -120px; left: -120px;
    background: radial-gradient(circle, rgba(211, 249, 54, 0.55), rgba(1, 185, 75, 0.1));
    animation: privacy-blob-1 18s ease-in-out infinite;
}

.privacy-blob-2 {
    width: 420px; height: 420px;
    bottom: -100px; right: -80px;
    background: radial-gradient(circle, rgba(35, 184, 91, 0.5), rgba(155, 222, 99, 0.1));
    animation: privacy-blob-2 22s ease-in-out infinite;
}

.privacy-blob-3 {
    width: 360px; height: 360px;
    top: 45%; left: 55%;
    background: radial-gradient(circle, rgba(183, 228, 139, 0.5), rgba(232, 250, 238, 0.1));
    animation: privacy-blob-3 26s ease-in-out infinite;
}

.privacy-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(21, 86, 42, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 86, 42, 0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
    animation: privacy-grid-pan 30s linear infinite;
}

.privacy-spark {
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3), 0 0 18px rgba(211, 249, 54, 0.9);
    animation: privacy-twinkle 3.4s ease-in-out infinite;
}
.privacy-spark-1 { top: 14%; left: 12%; animation-delay: 0s; }
.privacy-spark-2 { top: 28%; right: 16%; animation-delay: 0.7s; }
.privacy-spark-3 { bottom: 22%; left: 22%; animation-delay: 1.4s; }
.privacy-spark-4 { bottom: 12%; right: 28%; animation-delay: 2.1s; }

.main-privacy-area .container {
    position: relative;
    z-index: 2;
}

/* Section title */
.main-privacy-title {
    text-align: center;
    margin-bottom: 50px;
}

.privacy-title-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.28em;
    color: #01b94b;
    padding: 7px 18px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(35, 184, 91, 0.25);
    box-shadow: 0 6px 18px rgba(13, 116, 50, 0.08);
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
    animation: privacy-kicker-glow 3s ease-in-out infinite;
}
.privacy-title-kicker::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.85) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: privacy-kicker-shine 4s ease-in-out infinite;
}

.main-privacy-title h2 {
    font-size: clamp(32px, 4.5vw, 50px);
    font-weight: 900;
    color: #15562a;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 14px;
    position: relative;
    display: inline-block;
    background: linear-gradient(120deg, #15562a 0%, #01b94b 50%, #15562a 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: privacy-title-shimmer 5s linear infinite;
}
.main-privacy-title h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 99px;
    background: linear-gradient(90deg, #d3f936, #01b94b);
    box-shadow: 0 0 18px rgba(35, 184, 91, 0.5);
    animation: privacy-title-bar 2.5s ease-in-out infinite;
}

.privacy-title-sub {
    color: rgba(28, 28, 28, 0.65);
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

/* Main privacy content */
.main-privacy-content {
    max-width: 980px;
    margin: 0 auto;
}

.main-privacy-content p {
    color: rgba(28, 28, 28, 0.85);
    font-size: 15px;
    line-height: 1.85;
    margin: 0 0 14px;
}

/* Intro card */
.pp-intro-card {
    position: relative;
    padding: 38px 36px 32px;
    margin-bottom: 36px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(242, 255, 224, 0.75) 100%);
    border: 1px solid rgba(35, 184, 91, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 40px rgba(13, 116, 50, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pp-intro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(13, 116, 50, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(35, 184, 91, 0.35);
}
.pp-intro-glow {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(211, 249, 54, 0.12) 60deg, transparent 120deg, rgba(35, 184, 91, 0.1) 240deg, transparent 300deg);
    animation: privacy-intro-rotate 14s linear infinite;
    pointer-events: none;
    opacity: 0.7;
}
.pp-intro-card > * { position: relative; z-index: 1; }
.pp-intro-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #d3f936, #01b94b);
    box-shadow: 0 10px 25px rgba(35, 184, 91, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    animation: privacy-icon-float 3.5s ease-in-out infinite;
}
.pp-intro-icon i {
    font-size: 32px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.pp-intro-card p {
    font-size: 15px;
    color: rgba(28, 28, 28, 0.85);
    line-height: 1.9;
}

/* Section card */
.pp-section {
    position: relative;
    margin-bottom: 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(35, 184, 91, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 28px rgba(13, 116, 50, 0.08);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pp-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #d3f936, #01b94b);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.pp-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(13, 116, 50, 0.15);
    border-color: rgba(35, 184, 91, 0.3);
    background: rgba(255, 255, 255, 0.85);
}
.pp-section:hover::before { opacity: 1; }

.pp-section-head {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 26px 30px;
    border-bottom: 1px solid rgba(35, 184, 91, 0.1);
    position: relative;
}

.pp-section-num {
    flex-shrink: 0;
    width: 58px; height: 58px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #d3f936 0%, #01b94b 100%);
    box-shadow: 0 8px 20px rgba(35, 184, 91, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    animation: privacy-num-float 3s ease-in-out infinite;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pp-section-num::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    border: 2px solid rgba(211, 249, 54, 0.4);
    opacity: 0;
    animation: privacy-num-ring 2.5s ease-in-out infinite;
}
.pp-section:hover .pp-section-num {
    transform: rotate(-8deg) scale(1.08);
}

.pp-section-head-text { flex: 1; }
.pp-section-head-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: #15562a;
    margin: 0 0 6px;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.pp-section:hover .pp-section-head-text h3 {
    background: linear-gradient(120deg, #15562a, #01b94b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pp-section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #01b94b;
    padding: 3px 12px;
    border-radius: 99px;
    background: rgba(211, 249, 54, 0.18);
    border: 1px solid rgba(35, 184, 91, 0.25);
}

.pp-section-body {
    padding: 26px 30px 28px;
}
.pp-section-body .pp-lead {
    font-size: 15px;
    color: rgba(28, 28, 28, 0.8);
    line-height: 1.85;
    margin: 0 0 20px;
    padding-left: 16px;
    border-left: 3px solid rgba(35, 184, 91, 0.3);
}

/* Subsection */
.pp-subsection {
    padding: 18px 20px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: rgba(242, 255, 224, 0.55);
    border: 1px solid rgba(35, 184, 91, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.pp-subsection:hover {
    background: rgba(242, 255, 224, 0.85);
    border-color: rgba(35, 184, 91, 0.3);
    transform: translateX(4px);
    box-shadow: 0 6px 18px rgba(13, 116, 50, 0.1);
}

.pp-sub-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.pp-sub-num {
    flex-shrink: 0;
    min-width: 42px;
    height: 28px;
    padding: 0 10px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #01b94b;
    background: linear-gradient(135deg, rgba(211, 249, 54, 0.35), rgba(35, 184, 91, 0.2));
    border: 1px solid rgba(35, 184, 91, 0.25);
    transition: all 0.3s ease;
}
.pp-subsection:hover .pp-sub-num {
    background: linear-gradient(135deg, #d3f936, #01b94b);
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 4px 12px rgba(35, 184, 91, 0.35);
}
.pp-sub-head h4 {
    font-size: 17px;
    font-weight: 700;
    color: #15562a;
    margin: 0;
    transition: color 0.3s ease;
}
.pp-subsection:hover .pp-sub-head h4 { color: #01b94b; }

.pp-sub-body p {
    margin: 0 0 10px;
    font-size: 14.5px;
    line-height: 1.8;
    color: rgba(28, 28, 28, 0.82);
}
.pp-sub-body p:last-child { margin-bottom: 0; }

.pp-highlight {
    padding: 12px 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(211, 249, 54, 0.2), rgba(35, 184, 91, 0.1));
    border: 1px dashed rgba(35, 184, 91, 0.4);
    color: #0d7432 !important;
    font-weight: 600 !important;
    font-size: 14.5px !important;
}

/* Meta row (Purpose / Security) */
.pp-meta-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 14px;
    margin-top: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(35, 184, 91, 0.12);
    transition: all 0.3s ease;
}
.pp-meta-row:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateX(3px);
}
.pp-meta-label {
    flex-shrink: 0;
    min-width: 78px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    transition: all 0.3s ease;
}
.pp-meta-purpose {
    background: linear-gradient(135deg, #23b85b, #01b94b);
    box-shadow: 0 4px 10px rgba(35, 184, 91, 0.3);
}
.pp-meta-security {
    background: linear-gradient(135deg, #0d7432, #15562a);
    box-shadow: 0 4px 10px rgba(13, 116, 50, 0.3);
}
.pp-meta-row:hover .pp-meta-label { transform: scale(1.05); }
.pp-meta-row p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(28, 28, 28, 0.8);
}

/* Purpose grid */
.pp-purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    margin-top: 6px;
}
.pp-purpose-card {
    padding: 20px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(35, 184, 91, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.pp-purpose-card::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 249, 54, 0.18), transparent);
    transition: left 0.7s ease;
}
.pp-purpose-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(35, 184, 91, 0.35);
    box-shadow: 0 10px 25px rgba(13, 116, 50, 0.13);
}
.pp-purpose-card:hover::before { left: 100%; }
.pp-purpose-icon {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(211, 249, 54, 0.3), rgba(1, 185, 75, 0.25));
    border: 1px solid rgba(35, 184, 91, 0.25);
    transition: all 0.4s ease;
}
.pp-purpose-icon i {
    font-size: 22px;
    color: #01b94b;
    transition: all 0.4s ease;
}
.pp-purpose-card:hover .pp-purpose-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #d3f936, #01b94b);
    box-shadow: 0 6px 16px rgba(35, 184, 91, 0.4);
}
.pp-purpose-card:hover .pp-purpose-icon i { color: #fff; }
.pp-purpose-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(28, 28, 28, 0.82);
}
.pp-purpose-card p strong {
    color: #15562a;
    font-weight: 700;
}

/* List item */
.pp-list-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 18px;
    margin-bottom: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(35, 184, 91, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pp-list-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(35, 184, 91, 0.3);
    transform: translateX(6px);
}
.pp-list-bullet {
    flex-shrink: 0;
    width: 12px; height: 12px;
    margin-top: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d3f936, #01b94b);
    box-shadow: 0 0 0 4px rgba(211, 249, 54, 0.18);
    animation: privacy-bullet-pulse 2s ease-in-out infinite;
}
.pp-list-item p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.8;
    color: rgba(28, 28, 28, 0.82);
}
.pp-list-item p strong {
    color: #15562a;
    font-weight: 700;
}

/* Security grid */
.pp-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 6px;
}
.pp-security-card {
    padding: 22px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(242, 255, 224, 0.6));
    border: 1px solid rgba(35, 184, 91, 0.18);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.pp-security-card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 3px;
    background: linear-gradient(90deg, #d3f936, #01b94b);
    border-radius: 3px;
    transition: width 0.4s ease;
}
.pp-security-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(13, 116, 50, 0.15);
    border-color: rgba(35, 184, 91, 0.4);
}
.pp-security-card:hover::after { width: 60%; }
.pp-security-icon {
    display: flex; align-items: center; justify-content: center;
    width: 52px; height: 52px;
    margin: 0 auto 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #d3f936, #01b94b);
    box-shadow: 0 8px 20px rgba(35, 184, 91, 0.3);
    transition: all 0.4s ease;
    animation: privacy-icon-float 3.5s ease-in-out infinite;
}
.pp-security-card:hover .pp-security-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 10px 25px rgba(35, 184, 91, 0.45);
}
.pp-security-icon i {
    font-size: 26px;
    color: #fff;
}
.pp-security-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #15562a;
    margin: 0 0 8px;
    transition: color 0.3s ease;
}
.pp-security-card:hover h5 { color: #01b94b; }
.pp-security-card p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(28, 28, 28, 0.78);
}

/* Rights grid */
.pp-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    margin-top: 6px;
}
.pp-rights-card {
    padding: 22px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(35, 184, 91, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.pp-rights-card::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    background: radial-gradient(circle, rgba(211, 249, 54, 0.25), transparent 70%);
    transform: translate(40%, -40%);
    transition: transform 0.5s ease;
}
.pp-rights-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(35, 184, 91, 0.4);
    box-shadow: 0 14px 30px rgba(13, 116, 50, 0.14);
}
.pp-rights-card:hover::before { transform: translate(20%, -20%) scale(1.5); }
.pp-rights-num {
    display: inline-block;
    font-size: 14px;
    font-weight: 900;
    color: #01b94b;
    margin-bottom: 8px;
    padding: 3px 10px;
    border-radius: 99px;
    background: rgba(211, 249, 54, 0.25);
    border: 1px solid rgba(35, 184, 91, 0.3);
    transition: all 0.3s ease;
}
.pp-rights-card:hover .pp-rights-num {
    background: linear-gradient(135deg, #d3f936, #01b94b);
    color: #fff;
    transform: scale(1.1);
}
.pp-rights-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #15562a;
    margin: 0 0 8px;
    transition: color 0.3s ease;
}
.pp-rights-card:hover h5 { color: #01b94b; }
.pp-rights-card p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(28, 28, 28, 0.78);
}

/* Link */
.pp-link {
    color: #01b94b;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding: 1px 2px;
}
.pp-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, #d3f936, #01b94b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.pp-link:hover {
    color: #0d7432;
    text-shadow: 0 0 12px rgba(211, 249, 54, 0.5);
}
.pp-link:hover::after { transform: scaleX(1); }

/* Contact row */
.pp-contact-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 14px;
}
.pp-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(242, 255, 224, 0.7));
    border: 1px solid rgba(35, 184, 91, 0.2);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.pp-contact-card::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 249, 54, 0.25), transparent);
    transition: left 0.7s ease;
}
.pp-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(13, 116, 50, 0.16);
    border-color: rgba(35, 184, 91, 0.45);
}
.pp-contact-card:hover::before { left: 100%; }
.pp-contact-icon {
    display: flex; align-items: center; justify-content: center;
    width: 50px; height: 50px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #d3f936, #01b94b);
    box-shadow: 0 8px 18px rgba(35, 184, 91, 0.3);
    transition: all 0.4s ease;
    animation: privacy-icon-float 3.5s ease-in-out infinite;
}
.pp-contact-card:hover .pp-contact-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(35, 184, 91, 0.5);
}
.pp-contact-icon i {
    font-size: 24px;
    color: #fff;
}
.pp-contact-text { display: flex; flex-direction: column; }
.pp-contact-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(35, 184, 91, 0.9);
    margin-bottom: 4px;
}
.pp-contact-text strong {
    font-size: 15px;
    font-weight: 700;
    color: #15562a;
    transition: color 0.3s ease;
}
.pp-contact-card:hover .pp-contact-text strong { color: #01b94b; }

/* Privacy keyframes */
@keyframes privacy-blob-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, 80px) scale(1.1); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
}
@keyframes privacy-blob-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, -60px) scale(1.15); }
}
@keyframes privacy-blob-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-40px, 50px) scale(0.9); }
    75% { transform: translate(50px, -40px) scale(1.1); }
}
@keyframes privacy-grid-pan {
    0% { background-position: 0 0; }
    100% { background-position: 56px 56px; }
}
@keyframes privacy-twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.3); }
}
@keyframes privacy-kicker-glow {
    0%, 100% { box-shadow: 0 6px 18px rgba(13, 116, 50, 0.08); }
    50% { box-shadow: 0 8px 26px rgba(35, 184, 91, 0.25); }
}
@keyframes privacy-kicker-shine {
    0% { transform: translateX(-100%); }
    60%, 100% { transform: translateX(100%); }
}
@keyframes privacy-title-shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
@keyframes privacy-title-bar {
    0%, 100% { width: 80px; opacity: 1; }
    50% { width: 120px; opacity: 0.7; }
}
@keyframes privacy-intro-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes privacy-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@keyframes privacy-num-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
@keyframes privacy-num-ring {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}
@keyframes privacy-bullet-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(211, 249, 54, 0.18); }
    50% { box-shadow: 0 0 0 6px rgba(211, 249, 54, 0.05); }
}

/* Privacy Responsive */
@media (max-width: 991px) {
    .pp-section-head { padding: 22px 24px; }
    .pp-section-body { padding: 22px 24px 24px; }
    .pp-section-head-text h3 { font-size: 20px; }
    .pp-section-num { width: 50px; height: 50px; font-size: 19px; }
}

@media (max-width: 767px) {
    .main-privacy-title h2 { font-size: 30px; }
    .privacy-title-sub { font-size: 14px; }
    .pp-intro-card { padding: 28px 22px 24px; }
    .pp-intro-icon { width: 54px; height: 54px; }
    .pp-intro-icon i { font-size: 28px; }
    .pp-section { margin-bottom: 22px; }
    .pp-section-head {
        padding: 18px 18px;
        gap: 14px;
        flex-wrap: wrap;
    }
    .pp-section-num { width: 44px; height: 44px; font-size: 16px; border-radius: 12px; }
    .pp-section-head-text h3 { font-size: 17px; }
    .pp-section-tag { font-size: 10px; }
    .pp-section-body { padding: 18px 18px 20px; }
    .pp-section-body .pp-lead { font-size: 14px; padding-left: 12px; }
    .pp-subsection { padding: 14px 14px; }
    .pp-sub-head h4 { font-size: 16px; }
    .pp-sub-body p { font-size: 13.5px; }
    .pp-meta-row { flex-wrap: wrap; padding: 10px 12px; }
    .pp-meta-label { min-width: auto; }
    .pp-meta-row p { font-size: 13px; }
    .pp-purpose-grid,
    .pp-security-grid,
    .pp-rights-grid { grid-template-columns: 1fr; }
    .pp-contact-row { grid-template-columns: 1fr; }
    .pp-contact-card { padding: 16px 18px; }
    .privacy-blob { filter: blur(60px); }
    .privacy-blob-1 { width: 320px; height: 320px; }
    .privacy-blob-2 { width: 280px; height: 280px; }
    .privacy-blob-3 { width: 240px; height: 240px; }
}

@media (prefers-reduced-motion: reduce) {
    .privacy-blob,
    .privacy-grid,
    .privacy-spark,
    .pp-intro-glow,
    .pp-intro-icon,
    .pp-section-num,
    .pp-section-num::before,
    .pp-list-bullet,
    .pp-security-icon,
    .pp-contact-icon,
    .privacy-title-kicker,
    .privacy-title-kicker::before,
    .main-privacy-title h2,
    .main-privacy-title h2::after {
        animation: none !important;
    }
}

/* ==================== FAQ AREA ==================== */
.faq-main-area {
    position: relative;
    padding: 90px 0 110px;
    background-color: rgba(232, 250, 238, 1);
    overflow: hidden;
    isolation: isolate;
}

/* Background decorations */
.faq-bg-decor {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.faq-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    opacity: 0.4;
    mix-blend-mode: multiply;
}
.faq-blob-1 {
    width: 420px; height: 420px;
    top: -100px; right: -80px;
    background: radial-gradient(circle, rgba(211, 249, 54, 0.5), rgba(35, 184, 91, 0.05));
    animation: faq-blob-1 20s ease-in-out infinite;
}
.faq-blob-2 {
    width: 360px; height: 360px;
    bottom: -80px; left: -60px;
    background: radial-gradient(circle, rgba(1, 185, 75, 0.45), rgba(155, 222, 99, 0.05));
    animation: faq-blob-2 24s ease-in-out infinite;
}
.faq-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(21, 86, 42, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 86, 42, 0.05) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 65% 55% at 50% 35%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 35%, #000 30%, transparent 75%);
    animation: faq-grid-pan 32s linear infinite;
}
.faq-spark {
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25), 0 0 14px rgba(211, 249, 54, 0.85);
    animation: faq-twinkle 3.2s ease-in-out infinite;
}
.faq-spark-1 { top: 18%; left: 8%; animation-delay: 0s; }
.faq-spark-2 { top: 42%; right: 12%; animation-delay: 1.1s; }
.faq-spark-3 { bottom: 30%; left: 18%; animation-delay: 2.2s; }

.faq-main-area .container {
    position: relative;
    z-index: 2;
}

/* Layout */
.faq-layout {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 60px;
}
.faq-left {
    flex: 0 0 45%;
    max-width: 45%;
}
.faq-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Title block */
.faq-title-block {
    position: relative;
}
.faq-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: #01b94b;
    padding: 7px 18px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(35, 184, 91, 0.25);
    box-shadow: 0 6px 18px rgba(13, 116, 50, 0.08);
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
    animation: faq-kicker-glow 3s ease-in-out infinite;
}
.faq-kicker::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.8) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: faq-kicker-shine 4s ease-in-out infinite;
}
.faq-title-block h1 {
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 900;
    color: #15562a;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 18px;
    background: linear-gradient(120deg, #15562a 0%, #01b94b 50%, #15562a 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: faq-title-shimmer 5s linear infinite;
}
.faq-title-block h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin: 20px 0 0;
    border-radius: 99px;
    background: linear-gradient(90deg, #d3f936, #01b94b);
    box-shadow: 0 0 18px rgba(35, 184, 91, 0.5);
    animation: faq-title-bar 2.5s ease-in-out infinite;
}
.faq-subtitle {
    color: rgba(28, 28, 28, 0.65);
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
    max-width: 440px;
}

/* Image wrap */
.faq-img-wrap {
    position: relative;
    width: 380px;
    max-width: 100%;
}
.faq-img-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 110%; height: 110%;
    background: radial-gradient(circle, rgba(211, 249, 54, 0.25), transparent 65%);
    border-radius: 50%;
    animation: faq-img-glow 4s ease-in-out infinite;
    z-index: -1;
}
.faq-main-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(13, 116, 50, 0.2));
    animation: faq-img-float 5s ease-in-out infinite;
    transition: transform 0.5s ease;
}
.faq-img-wrap:hover .faq-main-img {
    transform: scale(1.04);
}

/* Floating badges */
.faq-floating-badge {
    position: absolute;
    width: 58px; height: 58px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 25px rgba(13, 116, 50, 0.18);
    border: 2px solid rgba(211, 249, 54, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.faq-floating-badge .faq-badge-icon {
    width: 32px; height: 32px;
}
.faq-fb-1 {
    top: 10%;
    left: -20px;
    animation: faq-badge-1 4s ease-in-out infinite;
}
.faq-fb-2 {
    bottom: 15%;
    right: -15px;
    animation: faq-badge-2 4.5s ease-in-out infinite;
}
.faq-floating-badge:hover {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 35px rgba(13, 116, 50, 0.25);
    border-color: rgba(211, 249, 54, 0.8);
}

/* Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    position: relative;
    margin-bottom: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.75);
    border: 1.5px solid rgba(35, 184, 91, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(13, 116, 50, 0.08);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.faq-item::before {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #d3f936, #01b94b);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.faq-item:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 32px rgba(13, 116, 50, 0.14);
    border-color: rgba(35, 184, 91, 0.3);
}
.faq-item:hover::before {
    opacity: 1;
}
.faq-item.faq-active {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(35, 184, 91, 0.4);
    box-shadow: 0 14px 40px rgba(13, 116, 50, 0.16);
    transform: translateX(8px);
}
.faq-item.faq-active::before {
    opacity: 1;
    animation: faq-active-bar 2s ease-in-out infinite;
}

/* Question button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.faq-question::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(211, 249, 54, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}
.faq-item:hover .faq-question::after {
    transform: translateX(100%);
}

.faq-q-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(211, 249, 54, 0.3), rgba(1, 185, 75, 0.2));
    border: 1.5px solid rgba(35, 184, 91, 0.25);
    transition: all 0.4s ease;
    animation: faq-q-icon-pulse 2.5s ease-in-out infinite;
}
.faq-q-icon img {
    width: 20px; height: 20px;
}
.faq-item:hover .faq-q-icon,
.faq-item.faq-active .faq-q-icon {
    background: linear-gradient(135deg, #d3f936, #01b94b);
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 6px 14px rgba(35, 184, 91, 0.35);
    animation: none;
}

.faq-q-text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #15562a;
    line-height: 1.5;
    transition: color 0.3s ease;
}
.faq-item:hover .faq-q-text,
.faq-item.faq-active .faq-q-text {
    color: #0d7432;
}

/* Toggle icon area */
.faq-toggle {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    background: rgba(211, 249, 54, 0.15);
    border: 1.5px solid rgba(35, 184, 91, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.faq-toggle img {
    width: 16px; height: 16px;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}
.faq-icon-minus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg) scale(0.3);
}
.faq-item.faq-active .faq-toggle {
    background: linear-gradient(135deg, #d3f936, #01b94b);
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(35, 184, 91, 0.35);
    transform: rotate(180deg);
}
.faq-item.faq-active .faq-icon-plus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scale(0.3);
}
.faq-item.faq-active .faq-icon-minus {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
}
.faq-toggle:hover {
    transform: rotate(90deg) scale(1.1);
}
.faq-item.faq-active .faq-toggle:hover {
    transform: rotate(180deg) scale(1.1);
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease;
    opacity: 0;
}
.faq-item.faq-active .faq-answer {
    max-height: 300px;
    opacity: 1;
}
.faq-answer-inner {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 0 24px 22px;
}
.faq-a-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(211, 249, 54, 0.3), rgba(13, 116, 50, 0.15));
    border: 1.5px solid rgba(211, 249, 54, 0.3);
    animation: faq-a-icon-pulse 3s ease-in-out infinite;
}
.faq-a-icon img {
    width: 18px; height: 18px;
}
.faq-answer-inner p {
    flex: 1;
    margin: 0;
    padding-top: 6px;
    font-size: 14.5px;
    line-height: 1.8;
    color: rgba(28, 28, 28, 0.82);
}

/* FAQ Keyframes */
@keyframes faq-blob-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, 60px) scale(1.08); }
    66% { transform: translate(30px, 40px) scale(0.95); }
}
@keyframes faq-blob-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(70px, -50px) scale(1.1); }
}
@keyframes faq-grid-pan {
    0% { background-position: 0 0; }
    100% { background-position: 52px 52px; }
}
@keyframes faq-twinkle {
    0%, 100% { opacity: 0.15; transform: scale(0.4); }
    50% { opacity: 1; transform: scale(1.2); }
}
@keyframes faq-kicker-glow {
    0%, 100% { box-shadow: 0 6px 18px rgba(13, 116, 50, 0.08); }
    50% { box-shadow: 0 8px 26px rgba(35, 184, 91, 0.25); }
}
@keyframes faq-kicker-shine {
    0% { transform: translateX(-100%); }
    60%, 100% { transform: translateX(100%); }
}
@keyframes faq-title-shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
@keyframes faq-title-bar {
    0%, 100% { width: 80px; opacity: 1; }
    50% { width: 120px; opacity: 0.7; }
}
@keyframes faq-img-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}
@keyframes faq-img-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes faq-badge-1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
}
@keyframes faq-badge-2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}
@keyframes faq-q-icon-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(211, 249, 54, 0.3); }
    50% { box-shadow: 0 0 0 5px rgba(211, 249, 54, 0); }
}
@keyframes faq-a-icon-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(1, 185, 75, 0.25); }
    50% { box-shadow: 0 0 0 5px rgba(1, 185, 75, 0); }
}
@keyframes faq-active-bar {
    0%, 100% { opacity: 1; height: 100%; }
    50% { opacity: 0.6; height: 85%; }
}

/* FAQ Responsive */
@media (max-width: 991px) {
    .faq-main-area {
        padding: 70px 0 80px;
    }
    .faq-layout {
        flex-direction: column-reverse;
        gap: 40px;
    }
    .faq-left {
        flex: 1;
        max-width: 100%;
    }
    .faq-right {
        justify-content: center;
    }
    .faq-img-wrap {
        width: 280px;
        margin: 0 auto;
    }
    .faq-title-block h1 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .faq-main-area {
        padding: 50px 0 60px;
    }
    .faq-img-wrap {
        width: 220px;
    }
    .faq-floating-badge {
        width: 46px; height: 46px;
    }
    .faq-floating-badge .faq-badge-icon {
        width: 24px; height: 24px;
    }
    .faq-title-block h1 {
        font-size: 28px;
    }
    .faq-subtitle {
        font-size: 14px;
    }
    .faq-question {
        padding: 16px 18px;
        gap: 12px;
    }
    .faq-q-icon {
        width: 32px; height: 32px;
    }
    .faq-q-icon img {
        width: 18px; height: 18px;
    }
    .faq-q-text {
        font-size: 14px;
    }
    .faq-toggle {
        width: 28px; height: 28px;
    }
    .faq-toggle img {
        width: 14px; height: 14px;
    }
    .faq-answer-inner {
        padding: 0 18px 18px;
        gap: 12px;
    }
    .faq-a-icon {
        width: 28px; height: 28px;
    }
    .faq-a-icon img {
        width: 16px; height: 16px;
    }
    .faq-answer-inner p {
        font-size: 13.5px;
    }
    .faq-blob {
        filter: blur(60px);
    }
    .faq-blob-1 { width: 280px; height: 280px; }
    .faq-blob-2 { width: 240px; height: 240px; }
}

@media (prefers-reduced-motion: reduce) {
    .faq-blob,
    .faq-grid,
    .faq-spark,
    .faq-kicker,
    .faq-kicker::before,
    .faq-title-block h1,
    .faq-title-block h1::after,
    .faq-img-glow,
    .faq-main-img,
    .faq-floating-badge,
    .faq-q-icon,
    .faq-a-icon {
        animation: none !important;
    }
    .faq-item,
    .faq-floating-badge,
    .faq-img-wrap:hover .faq-main-img {
        transform: none !important;
    }
}

/* ==================== DELETE DATA AREA ==================== */
.delete-main-area {
    position: relative;
    padding: 90px 0 110px;
    background-color: rgba(232, 250, 238, 1);
    overflow: hidden;
    isolation: isolate;
}

/* Background decorations */
.delete-bg-decor {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.delete-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    mix-blend-mode: multiply;
}
.delete-blob-1 {
    width: 460px; height: 460px;
    top: -120px; left: -100px;
    background: radial-gradient(circle, rgba(211, 249, 54, 0.5), rgba(35, 184, 91, 0.05));
    animation: delete-blob-1 22s ease-in-out infinite;
}
.delete-blob-2 {
    width: 380px; height: 380px;
    bottom: -80px; right: -60px;
    background: radial-gradient(circle, rgba(1, 185, 75, 0.4), rgba(155, 222, 99, 0.05));
    animation: delete-blob-2 26s ease-in-out infinite;
}
.delete-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(21, 86, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 86, 42, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
    animation: delete-grid-pan 35s linear infinite;
}
.delete-spark {
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2), 0 0 16px rgba(211, 249, 54, 0.85);
    animation: delete-twinkle 3.5s ease-in-out infinite;
}
.delete-spark-1 { top: 15%; left: 10%; animation-delay: 0s; }
.delete-spark-2 { top: 35%; right: 8%; animation-delay: 0.9s; }
.delete-spark-3 { bottom: 35%; left: 20%; animation-delay: 1.8s; }
.delete-spark-4 { bottom: 12%; right: 18%; animation-delay: 2.7s; }

.delete-main-area .container {
    position: relative;
    z-index: 2;
}

/* Layout */
.delete-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}
.delete-left {
    flex: 0 0 48%;
    max-width: 48%;
}
.delete-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Text block */
.delete-text-block {
    position: relative;
}
.delete-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: #01b94b;
    padding: 7px 18px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(35, 184, 91, 0.25);
    box-shadow: 0 6px 18px rgba(13, 116, 50, 0.08);
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
    animation: delete-kicker-glow 3s ease-in-out infinite;
}
.delete-kicker::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.8) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: delete-kicker-shine 4s ease-in-out infinite;
}
.delete-text-block h1 {
    font-size: clamp(36px, 4.8vw, 56px);
    font-weight: 900;
    color: #15562a;
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin: 0 0 14px;
    background: linear-gradient(120deg, #15562a 0%, #01b94b 50%, #15562a 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: delete-title-shimmer 5s linear infinite;
}
.delete-subheading {
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 700;
    color: #0d7432;
    line-height: 1.3;
    margin: 0 0 20px;
    position: relative;
    display: inline-block;
}
.delete-subheading::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin-top: 14px;
    border-radius: 99px;
    background: linear-gradient(90deg, #d3f936, #01b94b);
    box-shadow: 0 0 14px rgba(35, 184, 91, 0.5);
    animation: delete-title-bar 2.5s ease-in-out infinite;
}
.delete-desc {
    color: rgba(28, 28, 28, 0.7);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 28px;
    max-width: 500px;
}

/* Feature list */
.delete-feature-list {
    margin-bottom: 32px;
}
.delete-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 12px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(35, 184, 91, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.delete-feature-item::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 249, 54, 0.18), transparent);
    transition: left 0.6s ease;
}
.delete-feature-item:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(35, 184, 91, 0.3);
    box-shadow: 0 6px 18px rgba(13, 116, 50, 0.1);
}
.delete-feature-item:hover::before { left: 100%; }
.delete-feature-icon {
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d3f936, #01b94b);
    box-shadow: 0 4px 10px rgba(35, 184, 91, 0.3);
    transition: all 0.4s ease;
}
.delete-feature-icon i {
    font-size: 18px;
    color: #fff;
}
.delete-feature-item:hover .delete-feature-icon {
    transform: scale(1.15) rotate(10deg);
}
.delete-feature-text {
    font-size: 15px;
    font-weight: 500;
    color: rgba(28, 28, 28, 0.85);
}

/* Action buttons */
.delete-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.delete-btn-primary,
.delete-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}
.delete-btn-primary {
    background: linear-gradient(135deg, #d3f936 0%, #01b94b 100%);
    color: #fff;
    box-shadow: 0 8px 22px rgba(35, 184, 91, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.delete-btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.delete-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(35, 184, 91, 0.45), 0 0 24px rgba(211, 249, 54, 0.3);
}
.delete-btn-primary:hover::before { transform: translateX(100%); }
.delete-btn-primary i {
    font-size: 20px;
}

.delete-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #15562a;
    border: 2px solid rgba(35, 184, 91, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.delete-btn-secondary:hover {
    background: linear-gradient(135deg, rgba(211, 249, 54, 0.3), rgba(1, 185, 75, 0.2));
    border-color: rgba(35, 184, 91, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 116, 50, 0.15);
    color: #0d7432;
}
.delete-btn-secondary i {
    font-size: 20px;
    color: #01b94b;
}

/* Image wrap */
.delete-img-wrap {
    position: relative;
    width: 400px;
    max-width: 100%;
}
.delete-img-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 115%; height: 115%;
    background: radial-gradient(circle, rgba(211, 249, 54, 0.22), transparent 65%);
    border-radius: 50%;
    animation: delete-img-glow 4s ease-in-out infinite;
    z-index: -1;
}
.delete-img-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 105%; height: 105%;
    border: 2px dashed rgba(35, 184, 91, 0.35);
    border-radius: 50%;
    animation: delete-img-ring 18s linear infinite;
    z-index: -1;
}
.delete-main-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(13, 116, 50, 0.2));
    animation: delete-img-float 5s ease-in-out infinite;
    transition: transform 0.5s ease;
}
.delete-img-wrap:hover .delete-main-img {
    transform: scale(1.05) rotate(-2deg);
}

/* Floating cards on image */
.delete-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 25px rgba(13, 116, 50, 0.15);
    border: 1.5px solid rgba(35, 184, 91, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 13px;
    font-weight: 600;
    color: #15562a;
}
.delete-floating-card i {
    font-size: 22px;
    color: #01b94b;
    transition: all 0.4s ease;
}
.delete-fc-1 {
    top: 15%;
    left: -30px;
    animation: delete-fc-1 4.5s ease-in-out infinite;
}
.delete-fc-2 {
    bottom: 12%;
    right: -20px;
    animation: delete-fc-2 5s ease-in-out infinite;
}
.delete-floating-card:hover {
    transform: scale(1.08) rotate(3deg);
    border-color: rgba(35, 184, 91, 0.5);
    box-shadow: 0 15px 35px rgba(13, 116, 50, 0.22);
}
.delete-floating-card:hover i {
    transform: rotate(360deg);
}

/* Floating particles */
.delete-floating-particle {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d3f936, #01b94b);
    box-shadow: 0 0 12px rgba(211, 249, 54, 0.6);
}
.delete-p-1 {
    top: 25%; right: 10%;
    width: 8px; height: 8px;
    animation: delete-particle-1 4s ease-in-out infinite;
}
.delete-p-2 {
    top: 50%; left: 5%;
    width: 6px; height: 6px;
    animation: delete-particle-2 5s ease-in-out infinite;
    animation-delay: 1s;
}
.delete-p-3 {
    bottom: 30%; right: 25%;
    width: 10px; height: 10px;
    animation: delete-particle-3 4.5s ease-in-out infinite;
    animation-delay: 2s;
}

/* Process steps */
.delete-process {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
}
.delete-step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1.5px solid rgba(35, 184, 91, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(13, 116, 50, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}
.delete-step::after {
    content: "";
    position: absolute;
    top: -1.5px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d3f936, transparent);
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.delete-step:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(35, 184, 91, 0.35);
    box-shadow: 0 18px 40px rgba(13, 116, 50, 0.15);
}
.delete-step:hover::after { opacity: 1; }
.delete-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, #d3f936, #01b94b);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 16px;
    box-shadow: 0 6px 16px rgba(35, 184, 91, 0.3);
    animation: delete-step-num 3s ease-in-out infinite;
}
.delete-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    margin: 0 auto 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(211, 249, 54, 0.3), rgba(1, 185, 75, 0.2));
    border: 2px solid rgba(35, 184, 91, 0.25);
    transition: all 0.4s ease;
}
.delete-step-icon i {
    font-size: 28px;
    color: #01b94b;
}
.delete-step:hover .delete-step-icon {
    background: linear-gradient(135deg, #d3f936, #01b94b);
    border-color: transparent;
    transform: rotate(-6deg) scale(1.1);
    box-shadow: 0 10px 22px rgba(35, 184, 91, 0.4);
}
.delete-step:hover .delete-step-icon i {
    color: #fff;
}
.delete-step h4 {
    font-size: 17px;
    font-weight: 700;
    color: #15562a;
    margin: 0 0 8px;
    transition: color 0.3s ease;
}
.delete-step:hover h4 { color: #0d7432; }
.delete-step p {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(28, 28, 28, 0.7);
    margin: 0;
}
.delete-step-line {
    width: 30px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.delete-step-line::before {
    content: "";
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(35, 184, 91, 0.4), transparent);
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: delete-line-pulse 2s ease-in-out infinite;
}
.delete-step-line::after {
    content: "\203A";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 700;
    color: #01b94b;
    background: rgba(232, 250, 238, 1);
    padding: 0 4px;
    animation: delete-arrow-pulse 2s ease-in-out infinite;
}

/* Delete Keyframes */
@keyframes delete-blob-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, 70px) scale(1.08); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
}
@keyframes delete-blob-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-60px, -40px) scale(1.12); }
}
@keyframes delete-grid-pan {
    0% { background-position: 0 0; }
    100% { background-position: 48px 48px; }
}
@keyframes delete-twinkle {
    0%, 100% { opacity: 0.15; transform: scale(0.4); }
    50% { opacity: 1; transform: scale(1.2); }
}
@keyframes delete-kicker-glow {
    0%, 100% { box-shadow: 0 6px 18px rgba(13, 116, 50, 0.08); }
    50% { box-shadow: 0 8px 26px rgba(35, 184, 91, 0.25); }
}
@keyframes delete-kicker-shine {
    0% { transform: translateX(-100%); }
    60%, 100% { transform: translateX(100%); }
}
@keyframes delete-title-shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
@keyframes delete-title-bar {
    0%, 100% { width: 60px; opacity: 1; }
    50% { width: 90px; opacity: 0.7; }
}
@keyframes delete-img-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.9; }
}
@keyframes delete-img-ring {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes delete-img-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
@keyframes delete-fc-1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(-4deg); }
}
@keyframes delete-fc-2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(4deg); }
}
@keyframes delete-particle-1 {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
    50% { transform: translateY(-18px) scale(1.3); opacity: 1; }
}
@keyframes delete-particle-2 {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-14px) scale(1.2); opacity: 1; }
}
@keyframes delete-particle-3 {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-16px) scale(1.4); opacity: 1; }
}
@keyframes delete-step-num {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
@keyframes delete-line-pulse {
    0%, 100% { opacity: 0.5; height: 2px; }
    50% { opacity: 1; height: 4px; }
}
@keyframes delete-arrow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

/* Delete Responsive */
@media (max-width: 991px) {
    .delete-main-area {
        padding: 70px 0 80px;
    }
    .delete-layout {
        flex-direction: column-reverse;
        gap: 50px;
    }
    .delete-left {
        flex: 1;
        max-width: 100%;
    }
    .delete-right {
        justify-content: center;
    }
    .delete-img-wrap {
        width: 320px;
        margin: 0 auto;
    }
    .delete-process {
        flex-wrap: wrap;
        gap: 30px;
    }
    .delete-step {
        flex: 0 0 calc(50% - 15px);
    }
    .delete-step-line {
        display: none;
    }
}

@media (max-width: 767px) {
    .delete-main-area {
        padding: 50px 0 60px;
    }
    .delete-img-wrap {
        width: 250px;
    }
    .delete-floating-card {
        font-size: 11px;
        padding: 8px 12px;
        gap: 6px;
    }
    .delete-floating-card i {
        font-size: 18px;
    }
    .delete-fc-1 { left: -10px; }
    .delete-fc-2 { right: -10px; }
    .delete-text-block h1 { font-size: 30px; }
    .delete-subheading { font-size: 20px; }
    .delete-desc { font-size: 14px; }
    .delete-feature-item { padding: 10px 14px; }
    .delete-feature-text { font-size: 14px; }
    .delete-actions { flex-direction: column; }
    .delete-btn-primary,
    .delete-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .delete-process {
        flex-direction: column;
        gap: 20px;
    }
    .delete-step {
        flex: 1;
    }
    .delete-blob {
        filter: blur(60px);
    }
    .delete-blob-1 { width: 300px; height: 300px; }
    .delete-blob-2 { width: 260px; height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
    .delete-blob,
    .delete-grid,
    .delete-spark,
    .delete-kicker,
    .delete-kicker::before,
    .delete-text-block h1,
    .delete-subheading::after,
    .delete-img-glow,
    .delete-img-ring,
    .delete-main-img,
    .delete-floating-card,
    .delete-floating-particle,
    .delete-step-num,
    .delete-step-line::before,
    .delete-step-line::after {
        animation: none !important;
    }
    .delete-feature-item,
    .delete-btn-primary,
    .delete-btn-secondary,
    .delete-step,
    .delete-img-wrap:hover .delete-main-img {
        transform: none !important;
    }
}

/* ==================== DELETION PROCESS AREA ==================== */
.delete-process-area {
    position: relative;
    padding: 80px 0 120px;
    background: linear-gradient(180deg, rgba(232, 250, 238, 1) 0%, rgba(220, 247, 228, 1) 50%, rgba(232, 250, 238, 1) 100%);
    overflow: visible;
}
.delete-process-area::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
    pointer-events: none;
}

/* Header */
.delete-process-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}
.delete-process-header h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 900;
    color: #15562a;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    background: linear-gradient(120deg, #15562a 0%, #01b94b 50%, #15562a 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: dp-title-shimmer 5s linear infinite;
    position: relative;
    display: inline-block;
}
.delete-process-header h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin: 16px auto 0;
    border-radius: 99px;
    background: linear-gradient(90deg, #d3f936, #01b94b);
    box-shadow: 0 0 16px rgba(35, 184, 91, 0.5);
    animation: dp-title-bar 2.5s ease-in-out infinite;
}
.delete-process-header p {
    color: rgba(28, 28, 28, 0.65);
    font-size: 16px;
    margin: 0;
    max-width: 520px;
    margin: 0 auto;
}

/* Steps layout */
.delete-process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    overflow: visible;
    padding: 30px 20px 40px;
}

/* Step card */
.delete-process-step {
    flex-shrink: 0;
    width: 280px;
    text-align: center;
    overflow: visible;
    position: relative;
}

.dps-card {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(242, 255, 224, 0.9));
    border: 2.5px solid rgba(35, 184, 91, 0.2);
    box-shadow: 0 12px 32px rgba(13, 116, 50, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}
.dps-card::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(35, 184, 91, 0.3);
    animation: dps-ring-rotate 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}
.dps-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(35, 184, 91, 0.5);
    box-shadow: 0 20px 45px rgba(13, 116, 50, 0.2);
}
.dps-card:hover::before {
    animation-duration: 8s;
    border-color: rgba(211, 249, 54, 0.6);
}

.dps-img-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dps-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(13, 116, 50, 0.15));
    animation: dps-img-float 4s ease-in-out infinite;
    transition: transform 0.5s ease;
}
.dps-card:hover .dps-img {
    transform: scale(1.1) rotate(5deg);
    animation-duration: 2s;
}
.dps-img-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 130%; height: 130%;
    background: radial-gradient(circle, rgba(211, 249, 54, 0.2), transparent 65%);
    border-radius: 50%;
    animation: dps-glow-pulse 3s ease-in-out infinite;
    z-index: -1;
}
.dps-circle-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 115px;
    height: 115px;
    border-radius: 50%;
    border: 2px solid rgba(35, 184, 91, 0.15);
    animation: dps-ring-pulse 3s ease-in-out infinite;
    pointer-events: none;
}
.dps-badge {
    position: relative;
    display: inline-block;
    margin: -14px auto 0;
    padding: 7px 22px;
    border-radius: 99px;
    background: linear-gradient(135deg, #d3f936, #01b94b);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    box-shadow: 0 6px 16px rgba(35, 184, 91, 0.35);
    white-space: nowrap;
    animation: dps-badge-pulse 2.5s ease-in-out infinite;
    z-index: 10;
}

.dps-badge::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 12px;
    background: radial-gradient(ellipse at center bottom, rgba(35, 184, 91, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.dps-info {
    margin-top: 18px;
}

.dps-info h4 {
    font-size: 20px;
    font-weight: 800;
    color: #15562a;
    margin: 0 0 10px;
    transition: color 0.3s ease;
}
.delete-process-step:hover .dps-info h4 {
    color: #0d7432;
}
.dps-info p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(28, 28, 28, 0.7);
    margin: 0;
    max-width: 280px;
}

/* Connector */
.dps-connector {
    flex-shrink: 0;
    width: 60px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.dps-connector-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(35, 184, 91, 0.4), rgba(211, 249, 54, 0.5), rgba(35, 184, 91, 0.4));
    border-radius: 3px;
    overflow: hidden;
}
.dps-connector-line::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    animation: dps-line-flow 2s linear infinite;
}
.dps-connector-arrow {
    position: relative;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #d3f936, #01b94b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(35, 184, 91, 0.4);
    animation: dps-arrow-pulse 2s ease-in-out infinite;
}
.dps-connector-arrow::after {
    content: "\203A";
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

/* Keyframes */
@keyframes dp-title-shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
@keyframes dp-title-bar {
    0%, 100% { width: 70px; opacity: 1; }
    50% { width: 100px; opacity: 0.7; }
}
@keyframes dps-img-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes dps-glow-pulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}
@keyframes dps-ring-pulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
}
@keyframes dps-ring-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes dps-badge-pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.06); }
}
@keyframes dps-line-flow {
    0% { left: -100%; }
    100% { left: 100%; }
}
@keyframes dps-arrow-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Responsive */
@media (max-width: 991px) {
    .delete-process-area {
        padding: 60px 0 80px;
    }
    .delete-process-steps {
        flex-wrap: wrap;
        gap: 30px;
    }
    .delete-process-step {
        width: calc(50% - 15px);
        min-width: 260px;
    }
    .dps-connector {
        display: none;
    }
}

@media (max-width: 767px) {
    .delete-process-area {
        padding: 40px 0 60px;
    }
    .delete-process-header {
        margin-bottom: 50px;
    }
    .delete-process-header h2 {
        font-size: 26px;
    }
    .delete-process-header p {
        font-size: 14px;
    }
    .delete-process-steps {
        flex-direction: column;
        gap: 40px;
    }
    .delete-process-step {
        width: 100%;
        max-width: 300px;
    }
    .dps-card {
        width: 130px;
        height: 130px;
    }
    .dps-img {
        width: 64px;
        height: 64px;
    }
    .dps-img-wrap {
        width: 80px;
        height: 80px;
    }
    .dps-circle-ring {
        width: 95px;
        height: 95px;
    }
    .dps-info h4 {
        font-size: 17px;
    }
    .dps-info p {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .delete-process-header h2,
    .delete-process-header h2::after,
    .dps-img,
    .dps-img-glow,
    .dps-circle-ring,
    .dps-card::before,
    .dps-badge,
    .dps-connector-line::before,
    .dps-connector-arrow {
        animation: none !important;
    }
    .dps-card,
    .dps-card:hover .dps-img {
        transform: none !important;
    }
}

/* ==================== GET IN TOUCH AREA ==================== */
.get-touch-area {
    position: relative;
    padding: 80px 0 110px;
    background: linear-gradient(180deg, rgba(232, 250, 238, 1) 0%, rgba(240, 252, 244, 1) 100%);
    overflow: visible;
    z-index: 100;
}
.get-touch-area::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(15, 97, 22, 0.08), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    animation: gt-blob-float 8s ease-in-out infinite;
}
.get-touch-area::after {
    content: "";
    position: absolute;
    bottom: 0; right: 0;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(211, 249, 54, 0.12), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    animation: gt-blob-float 10s ease-in-out infinite reverse;
}

@keyframes gt-blob-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.get-touch-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(13, 116, 50, 0.1);
    border: 1px solid rgba(15, 97, 22, 0.06);
    overflow: visible;
}

/* Left Info */
.gt-contact-info {
    flex: 1;
    padding: 50px 45px;
    background: linear-gradient(135deg, #f8fdf9 0%, #effaf1 100%);
    position: relative;
    overflow: hidden;
}
.gt-contact-info::before {
    content: "";
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(15, 97, 22, 0.04), transparent 40%);
    animation: gt-bg-shift 12s ease-in-out infinite;
    pointer-events: none;
}
@keyframes gt-bg-shift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -10px); }
}

.gt-title {
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 900;
    color: rgba(15, 97, 22, 1);
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    position: relative;
    display: inline-block;
    text-transform: none !important;
}
.gt-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    margin-top: 12px;
    border-radius: 99px;
    background: linear-gradient(90deg, rgba(15, 97, 22, 1), rgba(211, 249, 54, 0.8));
    box-shadow: 0 0 12px rgba(15, 97, 22, 0.3);
    animation: gt-title-bar 2.5s ease-in-out infinite;
}
@keyframes gt-title-bar {
    0%, 100% { width: 50px; opacity: 1; }
    50% { width: 80px; opacity: 0.7; }
}

.gt-desc {
    color: rgba(28, 28, 28, 0.6);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 36px;
    position: relative;
}

.gt-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
}

.gt-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 97, 22, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.gt-info-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 97, 22, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gt-info-item:hover {
    transform: translateX(8px);
    border-color: rgba(15, 97, 22, 0.2);
    box-shadow: 0 10px 24px rgba(15, 97, 22, 0.08);
}
.gt-info-item:hover::before {
    opacity: 1;
}

.gt-info-icon {
    position: relative;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(15, 97, 22, 0.1), rgba(211, 249, 54, 0.12));
    border: 1.5px solid rgba(15, 97, 22, 0.12);
    transition: all 0.4s ease;
}
.gt-info-item:hover .gt-info-icon {
    transform: rotate(-8deg) scale(1.08);
    background: linear-gradient(135deg, rgba(15, 97, 22, 0.15), rgba(211, 249, 54, 0.2));
    border-color: rgba(15, 97, 22, 0.25);
}

.gt-icon-img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: drop-shadow(0 3px 6px rgba(15, 97, 22, 0.15));
    animation: gt-icon-float 3.5s ease-in-out infinite;
    transition: transform 0.4s ease;
}
.gt-info-item:hover .gt-icon-img {
    animation-duration: 1.5s;
    transform: scale(1.15);
}
@keyframes gt-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.gt-icon-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 140%; height: 140%;
    background: radial-gradient(circle, rgba(15, 97, 22, 0.12), transparent 65%);
    border-radius: 50%;
    animation: gt-glow-pulse 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes gt-glow-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

.gt-info-content h4 {
    font-size: 16px;
    font-weight: 800;
    color: rgba(15, 97, 22, 1);
    margin: 0 0 5px;
    position: relative;
}
.gt-info-content p {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.6);
    margin: 0;
    line-height: 1.5;
    position: relative;
}

/* Right Form */
.gt-form-wrap {
    flex: 1.2;
    padding: 50px 50px;
    display: flex;
    align-items: center;
    background: #fff;
    position: relative;
}
.gt-form-wrap::before {
    content: "";
    position: absolute;
    top: 20px; left: 20px; right: 20px; bottom: 20px;
    border-radius: 16px;
    border: 1px dashed rgba(15, 97, 22, 0.08);
    pointer-events: none;
}

.gt-delete-form {
    width: 100%;
    position: relative;
}

.gt-form-group {
    margin-bottom: 22px;
    position: relative;
}

.gt-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: rgba(28, 28, 28, 0.85);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.gt-input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-size: 15px;
    color: rgba(28, 28, 28, 0.9);
    background: #fff;
    border: 2px solid rgba(15, 97, 22, 0.12);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}
.gt-input::placeholder {
    color: rgba(28, 28, 28, 0.35);
}
.gt-input:hover {
    border-color: rgba(15, 97, 22, 0.25);
    box-shadow: 0 4px 12px rgba(15, 97, 22, 0.06);
}
.gt-input:focus {
    border-color: rgba(15, 97, 22, 1);
    box-shadow: 0 0 0 4px rgba(15, 97, 22, 0.08), 0 4px 16px rgba(15, 97, 22, 0.1);
}

.gt-phone-row {
    display: flex;
    align-items: center;
    height: 48px;
    border: 2px solid rgba(15, 97, 22, 0.12);
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    overflow: hidden;
}
.gt-phone-row:hover {
    border-color: rgba(15, 97, 22, 0.25);
    box-shadow: 0 4px 12px rgba(15, 97, 22, 0.06);
}
.gt-phone-row:focus-within {
    border-color: rgba(15, 97, 22, 1);
    box-shadow: 0 0 0 4px rgba(15, 97, 22, 0.08), 0 4px 16px rgba(15, 97, 22, 0.1);
}
.gt-country-code {
    padding: 0 14px;
    font-size: 15px;
    font-weight: 700;
    color: rgba(15, 97, 22, 1);
    white-space: nowrap;
}
.gt-phone-sep {
    color: rgba(15, 97, 22, 0.2);
    margin-right: 8px;
}
.gt-phone-input {
    flex: 1;
    border: none;
    height: 100%;
    padding-left: 0;
}
.gt-phone-input:focus {
    box-shadow: none;
}

/* Custom searchable select */
.gt-custom-select {
    position: relative;
    width: 100%;
    z-index: 9999;
}

.gt-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    padding: 0 16px;
    background: #fff;
    border: 2px solid rgba(15, 97, 22, 0.12);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    user-select: none;
}
.gt-select-trigger:hover {
    border-color: rgba(15, 97, 22, 0.25);
    box-shadow: 0 4px 12px rgba(15, 97, 22, 0.06);
}
.gt-custom-select.gt-select-open .gt-select-trigger {
    border-color: rgba(15, 97, 22, 1);
    box-shadow: 0 0 0 4px rgba(15, 97, 22, 0.08), 0 4px 16px rgba(15, 97, 22, 0.1);
}

.gt-select-selected {
    font-size: 15px;
    color: rgba(28, 28, 28, 0.9);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}
.gt-select-selected.gt-placeholder {
    color: rgba(28, 28, 28, 0.35);
}

.gt-select-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(15, 97, 22, 1);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}
.gt-custom-select.gt-select-open .gt-select-arrow {
    transform: rotate(180deg);
}

.gt-select-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid rgba(15, 97, 22, 0.12);
    border-radius: 14px;
    box-shadow: 0 12px 36px rgba(13, 116, 50, 0.15), 0 0 0 1px rgba(255,255,255,0.5);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition: opacity 0.25s ease,
                transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}
.gt-custom-select.gt-select-open .gt-select-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.gt-select-search-wrap,
.gt-select-search,
.gt-select-search-icon {
    display: none;
}

.gt-select-options {
    max-height: 380px;
    overflow-y: auto;
    padding: 6px 6px 6px 18px;
    direction: rtl;
    scrollbar-width: thin;
    scrollbar-color: rgba(15, 97, 22, 0.3) transparent;
}
.gt-select-options::-webkit-scrollbar {
    width: 6px;
    position: absolute;
    left: 2px;
}
.gt-select-options::-webkit-scrollbar-track {
    background: transparent;
}
.gt-select-options::-webkit-scrollbar-thumb {
    background: rgba(15, 97, 22, 0.25);
    border-radius: 3px;
}
.gt-select-options::-webkit-scrollbar-thumb:hover {
    background: rgba(15, 97, 22, 0.4);
}

.gt-select-option {
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(28, 28, 28, 0.85);
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    margin: 2px 0;
    word-break: break-word;
    direction: ltr;
}
.gt-select-option:hover {
    background: rgba(15, 97, 22, 0.06);
    color: rgba(15, 97, 22, 1);
    transform: translateX(4px);
}
.gt-select-option.gt-option-selected {
    background: linear-gradient(135deg, rgba(15, 97, 22, 0.1), rgba(211, 249, 54, 0.12));
    color: rgba(15, 97, 22, 1);
    font-weight: 700;
}
.gt-select-option.gt-option-selected::after {
    content: "✓";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(15, 97, 22, 1);
    font-weight: 900;
}
.gt-select-option.gt-placeholder {
    color: rgba(28, 28, 28, 0.35);
    font-style: italic;
}
.gt-select-option.gt-option-hidden {
    display: none;
}
.gt-select-option.gt-option-highlight {
    background: rgba(211, 249, 54, 0.2);
}

.gt-select-empty {
    padding: 20px 14px;
    text-align: center;
    color: rgba(28, 28, 28, 0.4);
    font-size: 14px;
}

/* Error state for custom select */
.gt-custom-select.gt-select-error .gt-select-trigger {
    border-color: rgba(220, 38, 38, 0.7);
    animation: gt-shake-input 0.5s ease-in-out;
}
@keyframes gt-shake-input {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

@media (max-width: 767px) {
    .gt-select-panel {
        max-height: 320px;
    }
    .gt-select-options {
        max-height: 200px;
    }
    .gt-select-option {
        padding: 10px 12px;
        font-size: 13px;
    }
}

.gt-submit-btn {
    width: 100%;
    height: 52px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
    background: rgba(15, 97, 22, 1);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(15, 97, 22, 0.35);
}
.gt-submit-btn::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}
.gt-submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 32px rgba(15, 97, 22, 0.45);
    background: linear-gradient(135deg, rgba(15, 97, 22, 1), rgba(20, 130, 35, 1));
}
.gt-submit-btn:hover::before {
    left: 100%;
}
.gt-submit-btn:active {
    transform: translateY(0) scale(0.99);
    box-shadow: 0 4px 12px rgba(15, 97, 22, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .get-touch-area {
        padding: 60px 0 80px;
    }
    .get-touch-wrap {
        flex-direction: column;
        gap: 0;
    }
    .gt-contact-info {
        padding: 40px 35px;
    }
    .gt-form-wrap {
        padding: 40px 35px;
    }
}

@media (max-width: 767px) {
    .get-touch-area {
        padding: 40px 0 60px;
    }
    .get-touch-wrap {
        border-radius: 18px;
    }
    .gt-contact-info {
        padding: 30px 25px;
    }
    .gt-title {
        font-size: 26px;
    }
    .gt-form-wrap {
        padding: 30px 25px;
    }
    .gt-input,
    .gt-phone-row {
        height: 44px;
    }
    .gt-submit-btn {
        height: 48px;
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .get-touch-area::before,
    .get-touch-area::after,
    .gt-contact-info::before,
    .gt-title::after,
    .gt-icon-img,
    .gt-icon-glow,
    .gt-submit-btn::before {
        animation: none !important;
    }
    .gt-info-item,
    .gt-info-icon,
    .gt-submit-btn {
        transform: none !important;
    }
}

/* ==================== TOAST SYSTEM ==================== */
.gt-toast-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gt-toast-container.gt-toast-show {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.gt-toast-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.gt-toast-overlay.gt-overlay-show {
    opacity: 1;
    pointer-events: auto;
}

.gt-toast {
    position: relative;
    width: 480px;
    max-width: calc(100vw - 40px);
    padding: 50px 44px 40px;
    border-radius: 28px;
    overflow: visible;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    animation: gt-toast-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gt-toast-bg-decor {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 28px;
    pointer-events: none;
}
.gt-toast-bg-decor::before,
.gt-toast-bg-decor::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}
.gt-toast-bg-decor::before {
    top: -60px; left: -60px;
    width: 220px; height: 220px;
    background: rgba(255, 255, 255, 0.35);
    filter: blur(30px);
    animation: gt-blob-drift 6s ease-in-out infinite;
}
.gt-toast-bg-decor::after {
    bottom: -80px; right: -40px;
    width: 200px; height: 200px;
    background: rgba(255, 255, 255, 0.25);
    filter: blur(35px);
    animation: gt-blob-drift 7s ease-in-out infinite reverse;
}
@keyframes gt-blob-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, -15px) scale(1.08); }
}

.gt-toast-error {
    background: rgba(228, 255, 235, 1);
    border: 2.5px solid rgba(15, 97, 22, 0.15);
}
.gt-toast-error .gt-toast-icon-wrap {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 1));
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.35);
}
.gt-toast-error .gt-toast-title {
    color: #991b1b;
}
.gt-toast-error .gt-toast-message {
    color: rgba(127, 29, 29, 0.85);
}
.gt-toast-error .gt-toast-close-btn {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 1));
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.35);
}
.gt-toast-error .gt-toast-shine {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.1));
}

.gt-toast-success {
    background: rgba(15, 97, 22, 1);
    border: 2.5px solid rgba(211, 249, 54, 0.3);
}
.gt-toast-success .gt-toast-icon-wrap {
    background: linear-gradient(135deg, #d3f936, #a3e635);
    box-shadow: 0 10px 30px rgba(211, 249, 54, 0.45);
}
.gt-toast-success .gt-toast-title {
    color: #fff;
}
.gt-toast-success .gt-toast-message {
    color: rgba(255, 255, 255, 0.85);
}
.gt-toast-success .gt-toast-close-btn {
    background: linear-gradient(135deg, #d3f936, #a3e635);
    color: rgba(15, 97, 22, 1);
    box-shadow: 0 8px 20px rgba(211, 249, 54, 0.4);
}
.gt-toast-success .gt-toast-shine {
    background: linear-gradient(135deg, rgba(211, 249, 54, 0.15), rgba(163, 230, 53, 0.1));
}

.gt-toast-ring {
    position: absolute;
    inset: -4px;
    border-radius: 30px;
    border: 2px solid transparent;
    background: linear-gradient(45deg, rgba(211, 249, 54, 0.6), rgba(15, 97, 22, 0.5), rgba(211, 249, 54, 0.6)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    animation: gt-ring-rotate 4s linear infinite;
    pointer-events: none;
}
@keyframes gt-ring-rotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.gt-toast-icon-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: gt-icon-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both, gt-icon-float 3s ease-in-out infinite 0.8s;
}
.gt-toast-icon-wrap::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    animation: gt-ring-spin 12s linear infinite;
}
.gt-toast-icon-wrap::after {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    animation: gt-glow-breathe 2.5s ease-in-out infinite;
    pointer-events: none;
}

.gt-toast-icon-svg {
    width: 44px;
    height: 44px;
    stroke: #fff;
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.gt-toast-icon-check path {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: gt-draw-check 0.5s ease-out 0.4s forwards;
}
.gt-toast-icon-error path {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: gt-draw-cross 0.5s ease-out 0.4s forwards;
}

@keyframes gt-icon-pop {
    0% { transform: scale(0) rotate(-180deg); opacity: 0; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes gt-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes gt-ring-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes gt-glow-breathe {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}
@keyframes gt-draw-check {
    to { stroke-dashoffset: 0; }
}
@keyframes gt-draw-cross {
    to { stroke-dashoffset: 0; }
}

.gt-toast-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 80%;
    height: 100%;
    transform: skewX(-20deg);
    animation: gt-shine-sweep 2.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes gt-shine-sweep {
    0% { left: -100%; opacity: 0; }
    50% { opacity: 0.5; }
    100% { left: 150%; opacity: 0; }
}

.gt-toast-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: visible;
}
.gt-toast-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    animation: gt-particle-burst 1.2s ease-out forwards;
}

.gt-toast-title {
    position: relative;
    font-size: 26px;
    font-weight: 900;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    animation: gt-text-in 0.5s ease-out 0.3s both;
}
.gt-toast-message {
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    animation: gt-text-in 0.5s ease-out 0.4s both;
}
@keyframes gt-text-in {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

.gt-toast-close-btn {
    position: relative;
    margin-top: 32px;
    padding: 14px 56px;
    border: none;
    border-radius: 99px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    text-transform: uppercase;
    animation: gt-btn-in 0.5s ease-out 0.5s both;
}
.gt-toast-close-btn::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.6s ease;
}
.gt-toast-close-btn:hover {
    transform: translateY(-3px) scale(1.04);
}
.gt-toast-close-btn:hover::before {
    left: 100%;
}
@keyframes gt-btn-in {
    0% { opacity: 0; transform: translateY(12px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes gt-toast-pop {
    0% { transform: scale(0.4) rotate(-8deg); opacity: 0; }
    60% { transform: scale(1.06) rotate(2deg); }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

@keyframes gt-particle-burst {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

.gt-toast-error.gt-toast-shake {
    animation: gt-toast-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), gt-shake 0.6s ease-in-out 0.5s;
}
@keyframes gt-shake {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    10%, 30%, 50%, 70%, 90% { transform: translate(calc(-50% - 6px), -50%) scale(1.01); }
    20%, 40%, 60%, 80% { transform: translate(calc(-50% + 6px), -50%) scale(1.01); }
}

@media (max-width: 575px) {
    .gt-toast {
        width: calc(100vw - 32px);
        padding: 40px 28px 32px;
    }
    .gt-toast-title {
        font-size: 22px;
    }
    .gt-toast-message {
        font-size: 14px;
    }
    .gt-toast-icon-wrap {
        width: 75px;
        height: 75px;
    }
    .gt-toast-icon-svg {
        width: 36px;
        height: 36px;
    }
    .gt-toast-close-btn {
        padding: 12px 42px;
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gt-toast-container,
    .gt-toast-overlay,
    .gt-toast-bg-decor::before,
    .gt-toast-bg-decor::after,
    .gt-toast-icon-wrap,
    .gt-toast-icon-wrap::before,
    .gt-toast-icon-wrap::after,
    .gt-toast-ring,
    .gt-toast-shine,
    .gt-toast-close-btn::before,
    .gt-toast-icon-check path,
    .gt-toast-icon-error path {
        animation: none !important;
    }
    .gt-toast {
        animation: none !important;
    }
}

/* ==================== GLOBAL PAGE ANIMATION ENHANCEMENTS ==================== */

/* Scroll reveal for all major sections */
.delete-main-area,
.Story-area,
.delete-process-area,
.get-touch-area {
    position: relative;
}

/* Animated background particles - hero area */
.delete-main-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(15, 97, 22, 0.15) 1px, transparent 1px),
        radial-gradient(circle, rgba(211, 249, 54, 0.2) 1px, transparent 1px);
    background-size: 80px 80px, 140px 140px;
    background-position: 0 0, 40px 40px;
    animation: particle-drift 30s linear infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

@keyframes particle-drift {
    0% { background-position: 0 0, 40px 40px; }
    100% { background-position: 80px 80px, 180px 180px; }
}

/* Floating decorative shapes across all sections */
.floating-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* Hero text animation */
.delete-text-block h1 {
    animation: hero-title-entrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

@keyframes hero-title-entrance {
    0% { opacity: 0; transform: translateY(40px) scale(0.95); filter: blur(10px); }
    60% { filter: blur(0); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.delete-text-block .delete-subheading {
    animation: hero-sub-entrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}

@keyframes hero-sub-entrance {
    0% { opacity: 0; transform: translateY(30px) scaleX(0.9); transform-origin: left; }
    100% { opacity: 1; transform: translateY(0) scaleX(1); }
}

.delete-text-block .delete-desc {
    animation: hero-desc-entrance 0.8s ease 0.7s both;
}

@keyframes hero-desc-entrance {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 0.7; transform: translateY(0); }
}

/* Hero image interactive tilt */
.delete-img-wrap {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.delete-img-wrap:hover {
    transform: perspective(800px) rotateY(-5deg) rotateX(3deg) scale(1.03);
}
.delete-main-img {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: hero-img-float 6s ease-in-out infinite;
}
.delete-img-wrap:hover .delete-main-img {
    animation-play-state: paused;
    transform: scale(1.05);
}

@keyframes hero-img-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(1deg); }
    50% { transform: translateY(-8px) rotate(-1deg); }
    75% { transform: translateY(-20px) rotate(0.5deg); }
}

/* Glow pulsing behind hero image */
.delete-img-glow {
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

.delete-img-ring {
    animation: ring-rotate 12s linear infinite;
}

@keyframes ring-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Floating particles in hero */
.delete-floating-particle {
    animation: particle-float 5s ease-in-out infinite;
}
.delete-p-1 { animation-delay: 0s; }
.delete-p-2 { animation-delay: 1s; }
.delete-p-3 { animation-delay: 2s; }

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

/* ============ STORY AREA ENHANCEMENTS ============ */

.Story-area {
    background: linear-gradient(180deg, rgba(240, 252, 244, 1) 0%, rgba(232, 250, 238, 1) 100%);
    position: relative;
    overflow: hidden;
}

.Story-area::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(211, 249, 54, 0.15), transparent 70%);
    border-radius: 50%;
    animation: story-blob 18s ease-in-out infinite;
    pointer-events: none;
}

.Story-area::after {
    content: "";
    position: absolute;
    bottom: -80px; left: -80px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(1, 185, 75, 0.12), transparent 70%);
    border-radius: 50%;
    animation: story-blob 22s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes story-blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 25px) scale(0.95); }
}

/* Value item card 3D tilt - ENHANCED */
.value-item.main-item1 {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #f7fff9 100%);
    border-radius: 20px;
    padding: 40px 12px;
    text-align: center;
    border: 2px solid rgba(15, 97, 22, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    isolation: isolate;
    box-shadow: 0 4px 20px rgba(13, 116, 50, 0.06);
}

/* Animated gradient border */
.value-item.main-item1::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    background: conic-gradient(
        from var(--angle, 0deg),
        rgba(15, 97, 22, 0.8),
        rgba(211, 249, 54, 0.8),
        rgba(1, 185, 75, 0.8),
        rgba(15, 97, 22, 0.8)
    );
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: main-item-border-rotate 4s linear infinite;
}

@keyframes main-item-border-rotate {
    to { --angle: 360deg; }
}

.value-item.main-item1:hover::before {
    opacity: 1;
}

/* Shimmer sweep overlay */
.value-item.main-item1::after {
    content: "";
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.5) 45%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.5) 55%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.8s ease;
    pointer-events: none;
    z-index: 2;
}

.value-item.main-item1:hover::after {
    transform: translateX(100%);
}

/* Content wrapper for 3D depth */
.value-item.main-item1 .value-img {
    transform: translateZ(40px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-item.main-item1:hover .value-img {
    transform: translateZ(60px) scale(1.08);
}

.value-item.main-item1 .item-main-title {
    transform: translateZ(25px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-item.main-item1:hover .item-main-title {
    transform: translateZ(35px);
}

.value-item.main-item1 .item-main-desc {
    transform: translateZ(15px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-item.main-item1:hover .item-main-desc {
    transform: translateZ(25px);
}

/* Main hover state */
.value-item.main-item1:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(13, 116, 50, 0.2),
        0 0 0 1px rgba(15, 97, 22, 0.15),
        0 0 40px rgba(211, 249, 54, 0.25);
    border-color: rgba(15, 97, 22, 0.3);
}

/* Glow that follows mouse */
.value-item.main-item1 .mi-mouse-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(211, 249, 54, 0.4) 0%,
        rgba(1, 185, 75, 0.2) 40%,
        transparent 70%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(-50%, -50%);
    z-index: 1;
    mix-blend-mode: screen;
}

.value-item.main-item1:hover .mi-mouse-glow {
    opacity: 1;
}

/* Sparkle particles inside card */
.value-item.main-item1 .mi-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(211, 249, 54, 0.9);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: 3;
    box-shadow: 0 0 8px rgba(211, 249, 54, 0.8);
}

.value-item.main-item1:hover .mi-sparkle {
    animation: mi-sparkle 0.8s ease-out forwards;
}

@keyframes mi-sparkle {
    0% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0) translateY(-30px); }
}

/* Icon hover explosion */
.value-item.main-item1 .value-img {
    position: relative;
}

.value-item.main-item1 .value-img::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(211, 249, 54, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.value-item.main-item1:hover .value-img::before {
    opacity: 1;
    animation: mi-icon-pulse 1.2s ease-in-out infinite;
}

@keyframes mi-icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Card icon enhanced bounce */
.value-item.main-item1 .value-img img {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: icon-idle 4s ease-in-out infinite;
}

.value-item.main-item1:hover .value-img img {
    animation: icon-bounce-rotate 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes icon-bounce-rotate {
    0% { transform: scale(1) rotate(0); }
    30% { transform: scale(1.3) rotate(-15deg); }
    60% { transform: scale(1.1) rotate(8deg); }
    100% { transform: scale(1.15) rotate(0); }
}

@keyframes icon-idle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Title with letter hover lift */
.item-main-title {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #15562a, #01b94b, #15562a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: title-shimmer 3s linear infinite;
    transition: transform 0.3s ease, letter-spacing 0.3s ease;
}

.value-item.main-item1:hover .item-main-title {
    letter-spacing: 0.02em;
    transform: translateY(-3px);
}

/* Description fade in/out */
.item-main-desc {
    transition: color 0.3s ease, transform 0.3s ease;
}

.value-item.main-item1:hover .item-main-desc {
    color: rgba(28, 28, 28, 0.85);
    transform: translateY(2px);
}

/* Bottom gradient line reveal */
.value-item.main-item1 .mi-bottom-line {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #d3f936, #01b94b);
    box-shadow: 0 0 15px rgba(35, 184, 91, 0.6);
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 3;
}

.value-item.main-item1:hover .mi-bottom-line {
    width: 80px;
}

/* Corner decorations */
.value-item.main-item1 .mi-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(15, 97, 22, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.value-item.main-item1 .mi-corner-tl {
    top: 12px; left: 12px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 8px;
}

.value-item.main-item1 .mi-corner-tr {
    top: 12px; right: 12px;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 8px;
}

.value-item.main-item1:hover .mi-corner {
    opacity: 1;
    animation: mi-corner-appear 0.5s ease forwards;
}

@keyframes mi-corner-appear {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

/* Ripple on hover (CSS only) */
.value-item.main-item1 .mi-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(211, 249, 54, 0.25);
    transform: scale(0);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
}

.value-item.main-item1:hover .mi-ripple {
    animation: mi-ripple-expand 0.8s ease-out forwards;
}

@keyframes mi-ripple-expand {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(4); opacity: 0; }
}

/* Shake on rapid hover leave */
.value-item.main-item1.mi-shake {
    animation: mi-card-shake 0.4s ease;
}

@keyframes mi-card-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Sparkle burst on leave */
.value-item.main-item1 .mi-sparkle {
    --dx: 0px;
    --dy: 0px;
    --size: 8px;
}

@keyframes mi-sparkle-burst {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--dx), var(--dy)) scale(0);
    }
}

.value-item.main-item1:hover .mi-sparkle {
    animation: mi-sparkle-burst 0.8s ease-out forwards;
}

/* Title shimmer keyframes */
@keyframes title-shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}



@keyframes bar-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* ============ PROCESS AREA ENHANCEMENTS ============ */

.delete-process-area {
    background: linear-gradient(180deg, rgba(232, 250, 238, 1) 0%, rgba(240, 252, 244, 1) 100%);
    position: relative;
    overflow: visible;
}

.delete-process-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(15, 97, 22, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(211, 249, 54, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

/* Process header title glow */
.delete-process-header h2 {
    background: linear-gradient(120deg, #15562a, #01b94b, #d3f936, #01b94b, #15562a);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: process-title-flow 5s linear infinite;
}

@keyframes process-title-flow {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.delete-process-header h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 5px;
    margin: 18px auto 0;
    border-radius: 99px;
    background: linear-gradient(90deg, #d3f936, #01b94b);
    box-shadow: 0 0 24px rgba(35, 184, 91, 0.6);
    animation: header-bar-pulse 2s ease-in-out infinite;
}

@keyframes header-bar-pulse {
    0%, 100% { transform: scaleX(1); opacity: 0.8; }
    50% { transform: scaleX(1.1); opacity: 1; }
}

/* Step card enhanced */
.delete-process-step .dps-card {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.delete-process-step .dps-img-wrap {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.delete-process-step:hover .dps-img-wrap {
    transform: translateY(-8px) scale(1.05);
}

.delete-process-step:hover .dps-img-glow {
    opacity: 0.6;
    transform: scale(1.3);
}

.delete-process-step .dps-img {
    animation: step-img-float 4s ease-in-out infinite;
}

.delete-process-step:hover .dps-img {
    animation-play-state: paused;
    transform: scale(1.1) rotate(5deg);
}

@keyframes step-img-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.delete-process-step .dps-circle-ring {
    animation: ring-spin 15s linear infinite;
}

@keyframes ring-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.delete-process-step .dps-badge {
    animation: badge-breathe 3s ease-in-out infinite;
}

@keyframes badge-breathe {
    0%, 100% { box-shadow: 0 4px 12px rgba(15, 97, 22, 0.3); }
    50% { box-shadow: 0 4px 24px rgba(15, 97, 22, 0.6); }
}

/* Connector line flow */
.dps-connector-line {
    background: linear-gradient(90deg, transparent 0%, #01b94b 50%, transparent 100%);
    background-size: 200% 100%;
    animation: connector-flow 2s linear infinite;
}

@keyframes connector-flow {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.dps-connector-arrow {
    animation: arrow-bounce 1.5s ease-in-out infinite;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

/* Step info text entrance */
.dps-info h4 {
    position: relative;
    overflow: hidden;
}

.dps-info h4::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(211, 249, 54, 0.3), transparent);
    transform: translateX(-100%);
    animation: info-shine 3s ease-in-out infinite;
}

@keyframes info-shine {
    0%, 30% { transform: translateX(-100%); }
    70%, 100% { transform: translateX(100%); }
}

/* ============ GET IN TOUCH AREA ENHANCEMENTS ============ */

.get-touch-area::before {
    animation: gt-blob-move 20s ease-in-out infinite;
}

.get-touch-area::after {
    animation: gt-blob-move 24s ease-in-out infinite reverse;
}

@keyframes gt-blob-move {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(40px, -30px); }
    66% { transform: translate(-30px, 20px); }
}

/* Contact info enhanced */
.gt-contact-info::before {
    animation: gt-info-bg 6s ease-in-out infinite;
}

@keyframes gt-info-bg {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.gt-title {
    background: linear-gradient(120deg, #15562a, #01b94b, #15562a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: title-shimmer 4s linear infinite;
}

.gt-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin-top: 14px;
    border-radius: 99px;
    background: linear-gradient(90deg, #d3f936, #01b94b);
    box-shadow: 0 0 16px rgba(35, 184, 91, 0.5);
    animation: bar-flow 3s linear infinite;
}

/* Info item hover elevation */
.gt-info-item {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gt-info-item:hover {
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(13, 116, 50, 0.12);
}

.gt-info-icon {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gt-info-item:hover .gt-info-icon {
    transform: rotate(-8deg) scale(1.15);
}

.gt-icon-img {
    animation: gt-icon-float 3.5s ease-in-out infinite;
}

.gt-info-item:hover .gt-icon-img {
    animation: gt-icon-bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes gt-icon-bounce {
    0%, 100% { transform: translateY(0) rotate(0); }
    30% { transform: translateY(-12px) rotate(-10deg); }
    60% { transform: translateY(-4px) rotate(5deg); }
}

/* Form input ripple on focus */
.gt-input {
    position: relative;
    transition: all 0.3s ease;
}

.gt-input:focus {
    animation: input-pulse 0.4s ease;
}

@keyframes input-pulse {
    0% { box-shadow: 0 0 0 0 rgba(15, 97, 22, 0.4); }
    100% { box-shadow: 0 0 0 6px rgba(15, 97, 22, 0); }
}

/* Form group label float */
.gt-form-group label {
    transition: all 0.3s ease;
}

.gt-form-group:focus-within label {
    color: rgba(15, 97, 22, 1);
    transform: translateY(-2px);
}

/* Submit button particle burst */
.gt-submit-btn {
    position: relative;
    isolation: isolate;
}

.gt-submit-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(211, 249, 54, 0.4), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.gt-submit-btn:hover::after {
    opacity: 1;
}

/* ============ FOOTER ENHANCEMENTS ============ */

.footer-area {
    position: relative;
}

.footer-logo img {
    animation: footer-logo-float 4s ease-in-out infinite;
}

@keyframes footer-logo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.footer-links ul li a,
.footer-support a {
    position: relative;
    transition: all 0.3s ease;
}

.footer-links ul li a::before,
.footer-support a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d3f936, #01b94b);
    transition: width 0.4s ease;
}

.footer-links ul li a:hover::before,
.footer-support a:hover::before {
    width: 100%;
}

.footer-links ul li a:hover,
.footer-support a:hover {
    transform: translateX(6px);
    color: #01b94b;
}

.footer-bottom p {
    position: relative;
    display: inline-block;
}

.footer-bottom p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #01b94b, transparent);
    background-size: 200% 100%;
    animation: bar-flow 4s linear infinite;
}

/* ============ PAGE ENTRANCE ANIMATION ============ */

body {
    animation: page-fade-in 0.8s ease 0.2s both;
}

@keyframes page-fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Stagger section entrances */
.delete-main-area {
    animation: section-slide-up 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.Story-area {
    animation: section-slide-up 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}

.delete-process-area {
    animation: section-slide-up 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s both;
}

.get-touch-area {
    animation: section-slide-up 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s both;
}

@keyframes section-slide-up {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered micro-interactions */
.delete-main-area .container,
.Story-area .container,
.delete-process-area .container,
.get-touch-area .container {
    will-change: transform;
}

/* Reduced motion overrides */
@media (prefers-reduced-motion: reduce) {
    .delete-main-area,
    .Story-area,
    .delete-process-area,
    .get-touch-area,
    body {
        animation: none !important;
    }
    .delete-main-area::before,
    .Story-area::before,
    .Story-area::after,
    .delete-process-area::before,
    .get-touch-area::before,
    .get-touch-area::after {
        animation: none !important;
    }
    .delete-text-block h1,
    .delete-subheading,
    .delete-desc,
    .delete-main-img,
    .delete-img-glow,
    .delete-img-ring,
    .delete-floating-particle,
    .value-item.main-item1,
    .value-item.main-item1 .value-img img,
    .item-main-title,
    .section-title h2,
    .delete-process-header h2,
    .delete-process-step .dps-img,
    .delete-process-step .dps-circle-ring,
    .delete-process-step .dps-badge,
    .dps-connector-line,
    .dps-connector-arrow,
    .gt-icon-img,
    .gt-title,
    .footer-logo img {
        animation: none !important;
    }
    .delete-img-wrap:hover,
    .delete-main-img:hover {
        transform: none !important;
    }
    .value-item.main-item1:hover,
    .gt-info-item:hover,
    .gt-info-icon:hover {
        transform: none !important;
    }
}

/* ============ CURSOR TRAIL / MOUSE GLOW ============ */

.glow-cursor {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 97, 22, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
    mix-blend-mode: multiply;
}

/* ============ PROGRESS SCROLL BAR ============ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 99999;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #d3f936, #01b94b, #d3f936);
    background-size: 200% 100%;
    width: 0;
    transition: width 0.1s linear;
    animation: scroll-bar-flow 2s linear infinite;
    box-shadow: 0 0 10px rgba(35, 184, 91, 0.6);
}

@keyframes scroll-bar-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* ==================== 3D TILT CARD EFFECT ==================== */

.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    will-change: transform;
}

.tilt-card .tilt-inner {
    transform: translateZ(30px);
    transform-style: preserve-3d;
}

.tilt-card .tilt-shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 20%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.tilt-card:hover .tilt-shine {
    opacity: 1;
}

.tilt-card .tilt-glow {
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(211, 249, 54, 0.4) 0%,
        rgba(1, 185, 75, 0.3) 30%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(15px);
}

.tilt-card:hover .tilt-glow {
    opacity: 1;
}

/* Apply tilt to story cards */
.value-item.main-item1 {
    transform-style: preserve-3d;
    will-change: transform;
}

.value-item.main-item1 .value-img {
    transform: translateZ(40px);
}

.value-item.main-item1 .item-main-title {
    transform: translateZ(25px);
}

.value-item.main-item1 .item-main-desc {
    transform: translateZ(15px);
}

/* Apply tilt to process step cards */
.delete-process-step .dps-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.delete-process-step .dps-img-wrap {
    transform: translateZ(40px);
}

.delete-process-step .dps-info {
    transform: translateZ(20px);
}

/* ==================== CLICK RIPPLE EFFECT ==================== */

.ripple-container {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(211, 249, 54, 0.5);
    pointer-events: none;
    animation: ripple-anim 0.8s ease-out forwards;
}

@keyframes ripple-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ==================== PARTICLE TRAIL ==================== */

.mouse-particle {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    mix-blend-mode: screen;
}

@keyframes particle-trail {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--dx), var(--dy)) scale(0);
        opacity: 0;
    }
}

@keyframes particle-fade {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0); }
}

/* ==================== MAGNETIC BUTTON ==================== */

.magnetic-btn {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.magnetic-btn .magnetic-inner {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==================== IMAGE HOOM ZOOM ==================== */

.img-hover-zoom {
    overflow: hidden;
    position: relative;
}

.img-hover-zoom img {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.12);
    filter: saturate(1.1) brightness(1.05);
}

.img-hover-zoom::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 97, 22, 0) 0%, rgba(15, 97, 22, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.img-hover-zoom:hover::after {
    opacity: 1;
}

/* ==================== CARD GLOW BORDER HOVER ==================== */

.glow-border-card {
    position: relative;
    isolation: isolate;
}

.glow-border-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(
        var(--glow-angle, 0deg),
        rgba(15, 97, 22, 0.8),
        rgba(211, 249, 54, 0.8),
        rgba(1, 185, 75, 0.8),
        rgba(15, 97, 22, 0.8)
    );
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: glow-border-rotate 3s linear infinite;
    z-index: -1;
}

.glow-border-card:hover::before {
    opacity: 1;
}

@keyframes glow-border-rotate {
    0% { --glow-angle: 0deg; }
    100% { --glow-angle: 360deg; }
}

/* ==================== TEXT SCRAMBLE HOVER ==================== */

.text-scramble {
    display: inline-block;
    position: relative;
}

.text-scramble::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #d3f936, #01b94b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.text-scramble:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== HOVER LIFT EFFECT ==================== */

.hover-lift {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 116, 50, 0.15);
}

/* ==================== NEON PULSE HOVER ==================== */

.neon-hover {
    transition: all 0.3s ease;
}

.neon-hover:hover {
    box-shadow:
        0 0 10px rgba(1, 185, 75, 0.5),
        0 0 20px rgba(1, 185, 75, 0.3),
        0 0 40px rgba(1, 185, 75, 0.2),
        inset 0 0 10px rgba(211, 249, 54, 0.1);
}

/* ==================== HOVER UNDERLINE ANIMATION ==================== */

.hover-underline {
    position: relative;
    display: inline-block;
}

.hover-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #d3f936, #01b94b);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-underline:hover::after {
    width: 100%;
}

/* ==================== PERSPECTIVE IMAGE CARD ==================== */

.perspective-img-card {
    perspective: 1000px;
    overflow: hidden;
}

.perspective-img-card img {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.perspective-img-card:hover img {
    transform: rotateY(-8deg) rotateX(5deg) scale(1.1);
}

/* ==================== HOVER STICKY NOTE EFFECT ==================== */

.sticky-note {
    position: relative;
    transition: all 0.4s ease;
}

.sticky-note:hover {
    transform: rotate(-2deg) scale(1.02);
}

/* ==================== PROGRESSIVE REVEAL ON HOVER ==================== */

.reveal-hover {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-hover:hover {
    clip-path: inset(0 0 0 0);
}

/* ==================== GLITCH TEXT EFFECT ==================== */

.glitch-hover {
    position: relative;
    display: inline-block;
}

.glitch-hover::before,
.glitch-hover::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
}

.glitch-hover::before {
    color: rgba(211, 249, 54, 0.8);
    transform: translate(-2px, 0);
}

.glitch-hover::after {
    color: rgba(1, 185, 75, 0.8);
    transform: translate(2px, 0);
}

.glitch-hover:hover::before {
    opacity: 1;
    animation: glitch-1 0.5s linear infinite;
}

.glitch-hover:hover::after {
    opacity: 1;
    animation: glitch-2 0.5s linear infinite;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(-2px, 0); }
    20% { transform: translate(-4px, 1px); }
    40% { transform: translate(1px, -1px); }
    60% { transform: translate(-3px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(2px, 0); }
    20% { transform: translate(4px, -1px); }
    40% { transform: translate(-1px, 1px); }
    60% { transform: translate(3px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

/* ==================== HOVER SHAKE ==================== */

.shake-hover {
    transition: transform 0.3s ease;
}

.shake-hover:hover {
    animation: shake-anim 0.5s ease-in-out;
}

@keyframes shake-anim {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}

/* ==================== EXPAND ON HOVER ==================== */

.expand-hover {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.expand-hover-parent:hover .expand-hover {
    max-height: 200px;
    opacity: 1;
}

/* ==================== FLOATING LABEL HOVER ==================== */

.float-label {
    position: relative;
}

.float-label label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 4px;
    color: rgba(28, 28, 28, 0.5);
}

.float-label input:focus + label,
.float-label input:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
    background: #fff;
    color: rgba(15, 97, 22, 1);
}

/* ==================== ROTATE ON HOVER ==================== */

.rotate-hover {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rotate-hover:hover {
    transform: rotate(5deg) scale(1.05);
}

/* ==================== SCALE ON HOVER ==================== */

.scale-hover {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scale-hover:hover {
    transform: scale(1.05);
}

/* ==================== COLOR FILL ANIMATION ==================== */

.color-fill {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.color-fill::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(211, 249, 54, 0.15), rgba(1, 185, 75, 0.15));
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: inherit;
    z-index: -1;
}

.color-fill:hover::before {
    transform: scale(1);
}

/* ==================== WAVE ANIMATION HOVER ==================== */

.wave-hover {
    position: relative;
    overflow: hidden;
}

.wave-hover::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(211, 249, 54, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.wave-hover:hover::before {
    width: 300px;
    height: 300px;
}

/* ==================== TYPEWRITER HOVER ==================== */

.typewriter-hover {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid transparent;
    transition: border-color 0.3s;
}

.typewriter-hover:hover {
    animation: typing 2s steps(30, end), blink-caret 0.5s step-end infinite;
    border-right-color: rgba(15, 97, 22, 1);
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: rgba(15, 97, 22, 1); }
}

/* ==================== SPLIT TEXT HOVER ==================== */

.split-text {
    display: inline-flex;
    text-transform: none !important;
}

.split-text span {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: none !important;
}

.split-text:hover span {
    animation: letter-bounce 0.5s ease forwards;
}

.split-text span:nth-child(1) { animation-delay: 0.05s; }
.split-text span:nth-child(2) { animation-delay: 0.1s; }
.split-text span:nth-child(3) { animation-delay: 0.15s; }
.split-text span:nth-child(4) { animation-delay: 0.2s; }
.split-text span:nth-child(5) { animation-delay: 0.25s; }
.split-text span:nth-child(6) { animation-delay: 0.3s; }
.split-text span:nth-child(7) { animation-delay: 0.35s; }
.split-text span:nth-child(8) { animation-delay: 0.4s; }
.split-text span:nth-child(9) { animation-delay: 0.45s; }
.split-text span:nth-child(10) { animation-delay: 0.5s; }

@keyframes letter-bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    100% { transform: translateY(0); }
}

/* ==================== 3D FLIP CARD ==================== */

.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
}

/* ==================== PULSE RING HOVER ==================== */

.pulse-ring {
    position: relative;
}

.pulse-ring::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(15, 97, 22, 0.5);
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
}

.pulse-ring:hover::after {
    animation: pulse-ring-anim 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes pulse-ring-anim {
    0% { transform: scale(0.95); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

/* ==================== DRAG HOVER ==================== */

.drag-hover {
    transition: cursor 0.2s;
    cursor: grab;
}

.drag-hover:active {
    cursor: grabbing;
}

/* ==================== CARD STACK HOVER ==================== */

.stack-hover {
    position: relative;
}

.stack-hover::before,
.stack-hover::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    opacity: 0.6;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.stack-hover:hover::before {
    transform: translate(-8px, 8px) rotate(-2deg);
}

.stack-hover:hover::after {
    transform: translate(-4px, 4px) rotate(-1deg);
}

/* ==================== HOVER MASK REVEAL ==================== */

.mask-reveal {
    position: relative;
    overflow: hidden;
}

.mask-reveal::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 97, 22, 0.85), rgba(1, 185, 75, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 3;
}

.mask-reveal:hover::before {
    transform: translateY(0);
}

/* ==================== ENHANCED EXISTING ELEMENTS ==================== */

/* Section title h2 - large, bold, no uppercase, full display */
.section-title {
    max-width: none !important;
    width: 100% !important;
}

.section-title h2 {
    display: block !important;
    width: 100% !important;
    font-size: 32px !important;
    font-weight: 900 !important;
    text-transform: none !important;
    text-align: center !important;
    letter-spacing: 0.05em !important;
    line-height: 1.08 !important;
    margin: 0 auto 18px !important;
    padding: 0 10px !important;
    white-space: normal !important;
    word-break: keep-all !important;
    -webkit-text-stroke: 0.8px rgba(15, 97, 22, 0.12) !important;
    background: linear-gradient(120deg, #0f6116, #01b94b, #15562a, #01b94b, #0f6116) !important;
    background-size: 300% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: title-shimmer 4s linear infinite !important;
    filter: drop-shadow(0 3px 6px rgba(13, 116, 50, 0.12)) !important;
    transition: color 0.4s ease, transform 0.4s ease, filter 0.4s ease !important;
}

.section-title h2:hover {
    color: rgba(15, 97, 22, 1) !important;
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: rgba(15, 97, 22, 1) !important;
    animation: none !important;
    transform: scale(1.02) !important;
    filter: drop-shadow(0 6px 18px rgba(15, 97, 22, 0.35)) !important;
}

.section-title h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 5px;
    margin: 18px auto 0;
    border-radius: 99px;
    background: linear-gradient(90deg, #d3f936, #01b94b, #d3f936);
    background-size: 200% 100%;
    animation: title-shimmer 3s linear infinite;
    box-shadow: 0 0 12px rgba(35, 184, 91, 0.5);
}

.section-title p {
    font-size: 17px !important;
    line-height: 1.7 !important;
    color: rgba(28, 28, 28, 0.7) !important;
    max-width: 700px;
    margin: 0 auto;
}

/* Delete title glitch hover */
#delete-title {
    position: relative;
    display: inline-block;
}

#delete-title:hover {
    animation: title-glitch 0.4s ease;
}

@keyframes title-glitch {
    0%, 100% { text-shadow: none; }
    20% { text-shadow: 2px 0 rgba(211, 249, 54, 0.8), -2px 0 rgba(1, 185, 75, 0.8); }
    40% { text-shadow: -2px 0 rgba(211, 249, 54, 0.8), 2px 0 rgba(1, 185, 75, 0.8); }
    60% { text-shadow: 2px 2px rgba(211, 249, 54, 0.6), -2px -2px rgba(1, 185, 75, 0.6); }
    80% { text-shadow: 0 0 rgba(211, 249, 54, 0.4), 0 0 rgba(1, 185, 75, 0.4); }
}

/* Submit button magnetic */
.gt-submit-btn {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

/* Footer logo spin on hover */
.footer-logo img {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-logo:hover img {
    transform: rotate(360deg) scale(1.1);
    animation: none;
}

/* Nav link hover underline grow */
.navbar-area .nav-link,
.navbar-area a.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.navbar-area .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #d3f936, #01b94b);
    border-radius: 2px;
    transition: width 0.3s ease, left 0.3s ease;
}

.navbar-area .nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Mobile touch optimization */
@media (hover: none) {
    .tilt-card:hover .tilt-shine,
    .tilt-card:hover .tilt-glow,
    .glow-border-card:hover::before,
    .text-scramble:hover::after,
    .mask-reveal:hover::before {
        opacity: 0 !important;
        transform: none !important;
    }
    .flip-card:hover .flip-card-inner {
        transform: none !important;
    }
}


