/* Custom Styles for LongJack */
.blockRedLine3103 {
	display: none !important;
}

.popup-success {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 128, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
	z-index: 9999;
	animation: popFadeIn 0.4s ease-out;
}

.popup-content {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	color: #006600;
	border: 2px solid rgba(0, 128, 0, 0.3);
	padding: 35px 30px;
	border-radius: 16px;
	max-width: 450px;
	width: 90%;
	box-shadow: 0 0 20px rgba(0, 128, 0, 0.3);
	text-align: center;
	font-family: "Segoe UI", sans-serif;
	font-size: 1.1rem;
}

.popup-content p {
	margin: 0 0 20px 0;
	font-weight: 500;
	line-height: 1.6;
}

.popup-content button {
	padding: 14px 30px;
	background: #ff3333;
	color: white;
	font-size: 1rem;
	font-weight: bold;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.popup-content button:hover {
	background: #cc0000;
}

@keyframes popFadeIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.logo__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	background: rgba(139, 0, 0, 0.2);
}

.logo__text {
	margin-top: 20px;
	font-family: 'Montserrat', sans-serif;
	font-size: 52px;
	font-weight: 900;
	color: #ffffff;
	text-shadow:
		2px 2px 4px rgba(0, 0, 0, 0.8),
		0 0 10px rgba(255, 51, 51, 0.6),
		0 0 20px rgba(255, 51, 51, 0.4),
		0 0 30px rgba(255, 51, 51, 0.3);
	letter-spacing: 1.5px;
	animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
	from {
		text-shadow:
			0 0 10px rgba(255, 50, 50, 0.8),
			0 0 20px rgba(255, 30, 30, 0.7),
			0 0 30px rgba(255, 0, 0, 0.6),
			0 0 40px rgba(255, 0, 0, 0.5);
	}
	to {
		text-shadow:
			0 0 12px rgba(255, 60, 60, 1),
			0 0 24px rgba(255, 40, 40, 0.9),
			0 0 36px rgba(255, 10, 10, 0.8),
			0 0 48px rgba(255, 0, 0, 0.7);
	}
}

/* Form Section with White Dashed Border - Matching Image Style */
.section_7 .form-box {
	border: 3px dashed #ffffff;
	padding: 0px 5px;
	background: transparent;
	box-shadow: none;
	position: relative;
	max-width: 150%;
	width: 100%;
}

.section_7 .form-box__inner {
	position: relative;
	z-index: 1;
}

.section_7 .form-box__title {
	text-align: center;
	margin-bottom: 15px;
	padding-bottom: 0;
	border-bottom: none;
}

.section_7 .form-box__body {
	padding-top: 0;
}

/* Call to Action Text */
.form-call-to-action {
	color: #ffffff;
	font-size: 16px;
	text-align: center;
	margin-bottom: 20px;
	font-weight: 400;
	line-height: 1.5;
}

/* Form Inputs - White with Rounded Corners */
.section_7 .form-box .form-row .input {
	background: #ffffff !important;
	border: none !important;
	-webkit-border-radius: 8px !important;
	border-radius: 8px !important;
	padding: 18px 22px !important;
	font-size: 18px !important;
	color: #333 !important;
	width: 100%;
	height: auto !important;
	min-height: 55px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section_7 .form-box .form-row .input::placeholder {
	color: #999;
	opacity: 1;
}

.section_7 .form-box .form-row .input:focus {
	outline: none !important;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5), 0 2px 8px rgba(0, 0, 0, 0.15);
}


/* Order Button - Red with Rounded Corners */
.section_7 .form-box .butn {
	background: #ff3333 !important;
	background-image: none !important;
	border: none !important;
	-webkit-border-radius: 8px !important;
	border-radius: 8px !important;
	padding: 18px 30px !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	color: #ffffff !important;
	width: 100%;
	margin-top: 10px;
	box-shadow: 0 4px 10px rgba(255, 51, 51, 0.4) !important;
	transition: all 0.3s ease;
}

.section_7 .form-box .butn:hover {
	background: #cc0000 !important;
	background-image: none !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(255, 51, 51, 0.5) !important;
}

.section_7 .form-box .butn:active {
	transform: translateY(0);
}

/* Section Spacing Improvements */
.section_5 {
	margin-top: -40px;
}

.section_3 {
	margin-top: -80px;
}

.section_6 {
	margin-top: -60px;
}

.section_7 {
	margin-top: -70px;
	background-color: #491b5c;
	padding: 40px 0;
}

/* Professional Text Styling */
.rules__item-title h3 {
	color: white;
	font-weight: 600;
	line-height: 1.4;
}

/* Rules Items - Dotted Borders and Enhanced Shadow Effects */
.section_5 .rules__item {
	border: 3px dashed rgba(255, 51, 51, 0.6) !important;
	box-shadow: 
		0 0 0 2px rgba(255, 51, 51, 0.2),
		0 4px 15px rgba(0, 0, 0, 0.4),
		0 8px 25px rgba(255, 51, 51, 0.3),
		inset 0 2px 10px rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.section_5 .rules__item::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	border: 2px dashed rgba(255, 51, 51, 0.4);
	pointer-events: none;
	z-index: 1;
}

.section_5 .rules__item:hover {
	transform: translateY(-5px);
	box-shadow: 
		0 0 0 2px rgba(255, 51, 51, 0.3),
		0 8px 25px rgba(0, 0, 0, 0.5),
		0 15px 35px rgba(255, 51, 51, 0.4),
		inset 0 2px 15px rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 51, 51, 0.8) !important;
}

.section_5 .rules__item-inner {
	position: relative;
	z-index: 2;
}

.section_5 .rules__item-title .text {
	text-shadow: 
		2px 2px 4px rgba(0, 0, 0, 0.6),
		0 0 10px rgba(255, 51, 51, 0.4),
		0 0 20px rgba(255, 51, 51, 0.2);
	font-weight: 700;
	letter-spacing: 0.5px;
}

/* Section 2 Side Left - Dotted Borders and Enhanced Shadow Effects */
.section_2 .side--left {
	border: 3px dashed rgba(255, 51, 51, 0.6);
	box-shadow: 
		0 0 0 2px rgba(255, 51, 51, 0.2),
		0 4px 15px rgba(0, 0, 0, 0.4),
		0 8px 25px rgba(255, 51, 51, 0.3),
		inset 0 2px 10px rgba(255, 255, 255, 0.1);
	padding: 30px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.section_2 .side--left::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	border: 2px dashed rgba(255, 51, 51, 0.4);
	pointer-events: none;
	z-index: 1;
}

.section_2 .side--left:hover {
	transform: translateY(-3px);
	box-shadow: 
		0 0 0 2px rgba(255, 51, 51, 0.3),
		0 8px 25px rgba(0, 0, 0, 0.5),
		0 15px 35px rgba(255, 51, 51, 0.4),
		inset 0 2px 15px rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 51, 51, 0.8);
}

.section_2 .side--left .title,
.section_2 .side--left .list {
	position: relative;
	z-index: 2;
}

.section_2 .side--left .title__text {
	text-shadow: 
		3px 3px 0px rgba(255, 51, 51, 0.3),
		6px 6px 10px rgba(0, 0, 0, 0.5),
		0 0 20px rgba(255, 51, 51, 0.2);
}

.section_2 .side--left .list__item {
	text-shadow: 
		2px 2px 4px rgba(0, 0, 0, 0.6),
		0 0 10px rgba(255, 51, 51, 0.4),
		0 0 20px rgba(255, 51, 51, 0.2);
	position: relative;
	padding: 10px 0;
}

/* Section 4 Background Color */
.section_4 {
	background-color: #2a1f3d;
}

/* Section 4 Image */
.section-4-image {
	margin-bottom: 30px;
	text-align: center;
}

.section-4-image__img {
	max-width: 100%;
	height: auto;
	border: 3px dashed rgba(255, 51, 51, 0.6);
	box-shadow: 
		0 0 0 2px rgba(255, 51, 51, 0.2),
		0 4px 15px rgba(0, 0, 0, 0.4),
		0 8px 25px rgba(255, 51, 51, 0.3);
	display: block;
	margin: 0 auto;
}

/* Section 4 Heading - Left Aligned with Shadow Effects */
.section_4 .s-title__inner {
	text-align: left;
	max-width: 100% !important;
	width: 100%;
	margin: 0 !important;
}

.section_4 .s-title__text {
	text-align: left !important;
	text-shadow: 
		3px 3px 0px rgba(255, 51, 51, 0.3),
		6px 6px 10px rgba(0, 0, 0, 0.5),
		0 0 20px rgba(255, 51, 51, 0.2);
	font-weight: 900;
	letter-spacing: 1px;
	width: 100%;
}

/* Section 6 Background Color */
.section_6 {
	background-color: #491b5c;
	padding: 40px 0;
}

/* Testimonials Section */
.section_testimonials {
	background-color: #2a1f3d;
	padding: 60px 0;
}

.testimonials-image {
	margin-bottom: 30px;
	text-align: center;
}

.testimonials-image__img {
	max-width: 100%;
	height: auto;
	border: 3px dashed rgba(255, 255, 255, 0.6);
	box-shadow: 
		0 0 0 2px rgba(255, 255, 255, 0.2),
		0 4px 15px rgba(0, 0, 0, 0.4),
		0 8px 25px rgba(255, 255, 255, 0.2);
	display: block;
	margin: 0 auto;
}

.section_testimonials .s-title__text {
	color: #ffffff;
	text-shadow: 
		3px 3px 0px rgba(255, 51, 51, 0.3),
		6px 6px 10px rgba(0, 0, 0, 0.5),
		0 0 20px rgba(255, 51, 51, 0.2);
	text-align: center;
	margin-bottom: 40px;
}

.testimonials__row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
	align-items: stretch;
}

.testimonial__item {
	position: relative;
	display: flex;
}

.testimonial__inner {
	border: 3px dashed rgba(255, 255, 255, 0.6);
	box-shadow: 
		0 0 0 2px rgba(255, 255, 255, 0.2),
		0 4px 15px rgba(0, 0, 0, 0.4),
		0 8px 25px rgba(255, 255, 255, 0.2),
		inset 0 2px 10px rgba(255, 255, 255, 0.1);
	padding: 30px 25px;
	background: rgba(255, 255, 255, 0.05);
	transition: all 0.3s ease;
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.testimonial__inner::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	border: 2px dashed rgba(255, 255, 255, 0.4);
	pointer-events: none;
}

.testimonial__inner:hover {
	transform: translateY(-5px);
	box-shadow: 
		0 0 0 2px rgba(255, 255, 255, 0.3),
		0 8px 25px rgba(0, 0, 0, 0.5),
		0 15px 35px rgba(255, 255, 255, 0.3),
		inset 0 2px 15px rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.9);
}

.testimonial__content {
	position: relative;
	z-index: 2;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.testimonial__text {
	color: #ffffff;
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 20px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	font-style: italic;
	flex: 1;
}

.testimonial__author {
	color: #ff3333;
	font-size: 14px;
	font-weight: 700;
	text-align: right;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	margin-top: auto;
}

@media (max-width: 992px) {
	.testimonials__row {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

@media (max-width: 768px) {
	.testimonials__row {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.testimonial__item {
		width: 100%;
	}

	.testimonial__inner {
		padding: 25px 20px;
	}
}

/* Rules Image Section */
.section_5 .rules-image {
	margin-top: 40px;
	text-align: center;
}

.rules-image__img {
	max-width: 100%;
	height: auto;
	border: 3px dashed rgba(255, 51, 51, 0.6);
	box-shadow: 
		0 0 0 2px rgba(255, 51, 51, 0.2),
		0 4px 15px rgba(0, 0, 0, 0.4),
		0 8px 25px rgba(255, 51, 51, 0.3);
	display: block;
	margin: 0 auto;
}

/* Tests Image Section */
.section_tests {
	background-color: #2a1f3d;
	padding: 40px 0;
	text-align: center;
}

.tests-image {
	margin: 0 auto;
	max-width: 100%;
}

.tests-image__img {
	max-width: 100%;
	height: auto;
	border: 3px dashed rgba(255, 255, 255, 0.6);
	box-shadow: 
		0 0 0 2px rgba(255, 255, 255, 0.2),
		0 4px 15px rgba(0, 0, 0, 0.4),
		0 8px 25px rgba(255, 255, 255, 0.2);
	display: block;
	margin: 0 auto;
}

