/* =========================
   OUR MAIN FOCUS - ULTRA PREMIUM
========================= */
.dr1055moto {
	position: relative;
	width: 100%;
	padding: 110px 20px;
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 18%, rgba(0, 255, 213, 0.07), transparent 28%),
		radial-gradient(circle at 88% 20%, rgba(126, 249, 255, 0.08), transparent 30%),
		radial-gradient(circle at 50% 92%, rgba(255, 211, 106, 0.07), transparent 32%),
		linear-gradient(180deg, #f7fbff 0%, #eef7fb 48%, #f8fcff 100%);
	color: #0f2027;
	isolation: isolate;
}

/* Background glow orbs */
.dr1055moto .moto-bg-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.45;
	pointer-events: none;
	z-index: 0;
	animation: dr1055MotoOrbFloat 16s ease-in-out infinite alternate;
}

.dr1055moto .moto-orb-1 {
	width: 260px;
	height: 260px;
	background: rgba(0, 255, 213, 0.10);
	top: 40px;
	left: -70px;
}

.dr1055moto .moto-orb-2 {
	width: 320px;
	height: 320px;
	background: rgba(126, 249, 255, 0.10);
	right: -90px;
	top: 70px;
	animation-duration: 19s;
}

.dr1055moto .moto-orb-3 {
	width: 280px;
	height: 280px;
	background: rgba(255, 211, 106, 0.10);
	left: 50%;
	bottom: -80px;
	transform: translateX(-50%);
	animation-duration: 17s;
}

.dr1055moto .section-container {
	position: relative;
	z-index: 2;
	max-width: 1320px;
	margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.dr1055moto .moto-header {
	max-width: 900px;
	margin: 0 auto 34px;
	text-align: center;
}

.dr1055moto .moto-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border-radius: 999px;
	margin-bottom: 18px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #0b5d6b;
	background: rgba(0, 255, 213, 0.10);
	border: 1px solid rgba(0, 255, 213, 0.18);
	box-shadow:
		0 8px 20px rgba(0, 255, 213, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.dr1055moto .moto-header h2 {
	margin: 0 0 16px;
	font-size: clamp(30px, 4vw, 52px);
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: -0.5px;
	color: #0c1f2b;
}

.dr1055moto .moto-header p {
	margin: 0 auto;
	max-width: 780px;
	font-size: 16px;
	line-height: 1.85;
	color: #506674;
}

/* =========================
   INTRO BANNER
========================= */
.dr1055moto .moto-intro-banner {
	position: relative;
	display: flex;
	align-items: center;
	gap: 18px;
	max-width: 980px;
	margin: 0 auto 34px;
	padding: 22px 22px;
	border-radius: 24px;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.90),
		rgba(255, 255, 255, 0.76)
	);
	border: 1px solid rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow:
		0 22px 50px rgba(13, 38, 59, 0.08),
		0 10px 22px rgba(0, 0, 0, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.85);
	overflow: hidden;
}

.dr1055moto .moto-intro-banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 20px;
	right: 20px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, #00ffd5, #7ef9ff, #ffd36a);
}

.dr1055moto .moto-intro-icon {
	width: 76px;
	height: 76px;
	flex-shrink: 0;
	border-radius: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: #0b3948;
	background: linear-gradient(
		135deg,
		rgba(126, 249, 255, 0.25),
		rgba(0, 255, 213, 0.12),
		rgba(255, 211, 106, 0.16)
	);
	border: 1px solid rgba(0, 255, 213, 0.14);
	box-shadow:
		0 14px 28px rgba(0, 255, 213, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.dr1055moto .moto-intro-content h3 {
	margin: 0 0 6px;
	font-size: 24px;
	line-height: 1.25;
	font-weight: 800;
	color: #102635;
}

.dr1055moto .moto-intro-content p {
	margin: 0;
	font-size: 15px;
	line-height: 1.75;
	color: #5a7080;
}

/* =========================
   MAIN GRID
========================= */
.dr1055moto .moto-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	align-items: stretch;
}

/* =========================
   PREMIUM CARDS
========================= */
.dr1055moto .moto-card {
	position: relative;
	padding: 28px 24px 24px;
	border-radius: 26px;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.90),
		rgba(255, 255, 255, 0.74)
	);
	border: 1px solid rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow:
		0 22px 48px rgba(13, 38, 59, 0.08),
		0 10px 22px rgba(0, 0, 0, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.88);
	overflow: hidden;
	transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.dr1055moto .moto-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 18px;
	right: 18px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, #00ffd5, #7ef9ff, #ffd36a);
	opacity: 0.95;
	z-index: 2;
}

.dr1055moto .moto-card:hover {
	transform: translateY(-8px);
	border-color: rgba(0, 255, 213, 0.14);
	box-shadow:
		0 30px 60px rgba(13, 38, 59, 0.11),
		0 10px 24px rgba(0, 255, 213, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.dr1055moto .moto-card-top {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
	position: relative;
	z-index: 2;
}

.dr1055moto .moto-icon {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #0b3948;
	background: linear-gradient(
		135deg,
		rgba(126, 249, 255, 0.25),
		rgba(0, 255, 213, 0.12),
		rgba(255, 211, 106, 0.16)
	);
	border: 1px solid rgba(0, 255, 213, 0.14);
	box-shadow:
		0 14px 28px rgba(0, 255, 213, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.dr1055moto .moto-label {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: #0b5d6b;
	background: rgba(0, 255, 213, 0.08);
	border: 1px solid rgba(0, 255, 213, 0.14);
}

.dr1055moto .moto-card h3 {
	position: relative;
	z-index: 2;
	margin: 0 0 12px;
	font-size: 24px;
	line-height: 1.28;
	font-weight: 800;
	color: #102635;
	letter-spacing: -0.3px;
}

.dr1055moto .moto-card p {
	position: relative;
	z-index: 2;
	margin: 0;
	font-size: 15px;
	line-height: 1.9;
	color: #556c79;
}

.dr1055moto .moto-card strong {
	color: #0b5d6b;
	font-weight: 800;
}

/* soft hover glow */
.dr1055moto .moto-card-glow {
	position: absolute;
	width: 180px;
	height: 180px;
	right: -50px;
	bottom: -50px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 255, 213, 0.10), transparent 65%);
	filter: blur(18px);
	opacity: 0;
	transition: opacity 0.45s ease;
	pointer-events: none;
}

.dr1055moto .moto-card:hover .moto-card-glow {
	opacity: 1;
}

/* =========================
   QUOTE BOX
========================= */
.dr1055moto .moto-quote-box {
	position: relative;
	max-width: 980px;
	margin: 34px auto 0;
	padding: 24px 22px 22px;
	border-radius: 24px;
	background: linear-gradient(
		135deg,
		rgba(12, 31, 43, 0.96),
		rgba(16, 41, 56, 0.94)
	);
	color: #ffffff;
	box-shadow:
		0 18px 36px rgba(12, 31, 43, 0.16),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	overflow: hidden;
	text-align: center;
}

.dr1055moto .moto-quote-box::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 15% 20%, rgba(0, 255, 213, 0.08), transparent 35%),
		radial-gradient(circle at 85% 30%, rgba(255, 211, 106, 0.08), transparent 35%);
	pointer-events: none;
}

.dr1055moto .moto-quote-icon {
	position: relative;
	z-index: 1;
	width: 54px;
	height: 54px;
	margin: 0 auto 14px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: #092532;
	background: linear-gradient(135deg, #7ef9ff, #00ffd5);
	box-shadow: 0 12px 24px rgba(0, 255, 213, 0.18);
}

.dr1055moto .moto-quote-box p {
	position: relative;
	z-index: 1;
	margin: 0;
	font-size: 16px;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.92);
	font-weight: 500;
}

/* =========================
   REVEAL ANIMATION BASE
========================= */
.dr1055moto .reveal-up,
.dr1055moto .reveal-left,
.dr1055moto .reveal-right {
	opacity: 0;
	transform: translateY(35px);
	transition: opacity 0.9s ease, transform 0.9s ease;
	will-change: transform, opacity;
}

.dr1055moto .reveal-left {
	transform: translateX(-40px);
}

.dr1055moto .reveal-right {
	transform: translateX(40px);
}

.dr1055moto .reveal-visible {
	opacity: 1;
	transform: translate(0, 0);
}

/* =========================
   KEYFRAMES
========================= */
@keyframes dr1055MotoOrbFloat {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	100% {
		transform: translate3d(18px, -16px, 0) scale(1.08);
	}
}

/* =========================
   RESPONSIVE - LARGE TABLET
========================= */
@media (max-width: 1100px) {
	.dr1055moto {
		padding: 90px 18px;
	}

	.dr1055moto .moto-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.dr1055moto .moto-card {
		padding: 24px 20px 22px;
		border-radius: 22px;
	}
}

/* =========================
   RESPONSIVE - TABLET / MOBILE
========================= */
@media (max-width: 768px) {
	.dr1055moto {
		padding: 72px 14px;
	}

	.dr1055moto .moto-header {
		margin-bottom: 24px;
	}

	.dr1055moto .moto-badge {
		font-size: 11px;
		padding: 7px 14px;
		margin-bottom: 14px;
	}

	.dr1055moto .moto-header h2 {
		font-size: clamp(24px, 7vw, 34px);
		margin-bottom: 12px;
	}

	.dr1055moto .moto-header p {
		font-size: 14px;
		line-height: 1.7;
	}

	.dr1055moto .moto-intro-banner {
		flex-direction: column;
		text-align: center;
		gap: 12px;
		padding: 18px 16px;
		margin-bottom: 24px;
		border-radius: 18px;
	}

	.dr1055moto .moto-intro-banner::before {
		left: 14px;
		right: 14px;
	}

	.dr1055moto .moto-intro-icon {
		width: 62px;
		height: 62px;
		font-size: 24px;
		border-radius: 18px;
	}

	.dr1055moto .moto-intro-content h3 {
		font-size: 18px;
	}

	.dr1055moto .moto-intro-content p {
		font-size: 13px;
		line-height: 1.65;
	}

	.dr1055moto .moto-card {
		padding: 20px 16px 18px;
		border-radius: 18px;
	}

	.dr1055moto .moto-card::before {
		left: 14px;
		right: 14px;
	}

	.dr1055moto .moto-card:hover {
		transform: none;
	}

	.dr1055moto .moto-card-top {
		gap: 12px;
		margin-bottom: 14px;
	}

	.dr1055moto .moto-icon {
		width: 54px;
		height: 54px;
		font-size: 20px;
		border-radius: 16px;
	}

	.dr1055moto .moto-label {
		font-size: 11px;
		padding: 7px 12px;
	}

	.dr1055moto .moto-card h3 {
		font-size: 18px;
		margin-bottom: 8px;
	}

	.dr1055moto .moto-card p {
		font-size: 13px;
		line-height: 1.75;
	}

	.dr1055moto .moto-quote-box {
		margin-top: 24px;
		padding: 18px 16px;
		border-radius: 18px;
	}

	.dr1055moto .moto-quote-icon {
		width: 46px;
		height: 46px;
		font-size: 18px;
		border-radius: 14px;
		margin-bottom: 10px;
	}

	.dr1055moto .moto-quote-box p {
		font-size: 13px;
		line-height: 1.75;
	}

	/* smoother mobile reveal */
	.dr1055moto .reveal-left,
	.dr1055moto .reveal-right {
		transform: translateY(24px);
	}
}

/* =========================
   RESPONSIVE - SMALL MOBILE
========================= */
@media (max-width: 480px) {
	.dr1055moto {
		padding: 60px 12px;
	}

	.dr1055moto .moto-header h2 {
		font-size: 22px;
		line-height: 1.22;
	}

	.dr1055moto .moto-header p {
		font-size: 13px;
		line-height: 1.65;
	}

	.dr1055moto .moto-intro-content h3,
	.dr1055moto .moto-card h3 {
		font-size: 16px;
	}

	.dr1055moto .moto-intro-content p,
	.dr1055moto .moto-card p,
	.dr1055moto .moto-quote-box p {
		font-size: 12px;
		line-height: 1.65;
	}

	.dr1055moto .moto-card {
		padding: 18px 14px 16px;
		border-radius: 16px;
	}

	.dr1055moto .moto-quote-box {
		padding: 16px 14px;
		border-radius: 14px;
	}

	.dr1055moto .moto-quote-icon {
		width: 40px;
		height: 40px;
		font-size: 16px;
		border-radius: 12px;
	}
}

/* =========================
   REDUCE MOTION
========================= */
@media (prefers-reduced-motion: reduce) {
	.dr1055moto .moto-bg-orb,
	.dr1055moto .reveal-up,
	.dr1055moto .reveal-left,
	.dr1055moto .reveal-right {
		animation: none !important;
		transition: none !important;
	}
}