/* ==================================================
   AIRVENTURE SERVICES BRIEF
================================================== */
.dr1064servicesbrief {
	position: relative;
	padding: 140px 0;
	background: linear-gradient(180deg, #071A2E 0%, #0B2340 100%);
}

/* ==================================================
   CONTAINER
================================================== */
.dr1064servicesbriefContainer {
	width: min(1400px, 92%);
	margin: auto;
}

/* ==================================================
   HEADER
================================================== */
.dr1064servicesbriefHeader {
	text-align: center;
	max-width: 950px;
	margin: 0 auto 70px;
}

.dr1064servicesbriefTag {
	display: inline-flex;
	padding: 12px 24px;
	border-radius: 999px;
	background: rgba(56, 217, 255, .10);
	border: 1px solid rgba(56, 217, 255, .20);
	color: #38D9FF;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 25px;
}

.dr1064servicesbriefHeader h2 {
	color: #ffffff;
	font-size: 64px;
	line-height: 1.1;
	font-weight: 900;
	margin-bottom: 28px;
}

.dr1064servicesbriefHeader h2 span {
	color: #38D9FF;
}

.dr1064servicesbriefHeader p {
	color: rgba(255, 255, 255, .82);
	font-size: 18px;
	line-height: 1.9;
}

/* ==================================================
   HERO IMAGE
================================================== */
.dr1064servicesbriefHero {
	margin: 0 0 80px;
	border-radius: 36px;
	overflow: hidden;
	box-shadow: 0 50px 120px rgba(0, 0, 0, .45);
}

.dr1064servicesbriefHero img {
	width: 100%;
	display: block;
	transition: 1s ease;
}

.dr1064servicesbriefHero:hover img {
	transform: scale(1.05);
}

/* ==================================================
   GRID
================================================== */
.dr1064servicesbriefGrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

/* ==================================================
   CARD
================================================== */
.dr1064servicesbriefCard {
	position: relative;
	padding: 35px;
	border-radius: 30px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .08);
	backdrop-filter: blur(24px);
	transition: .4s ease;
	min-height: 280px;
}

.dr1064servicesbriefCard:hover {
	transform: translateY(-10px);
	border-color: rgba(56, 217, 255, .40);
	box-shadow: 0 25px 80px rgba(56, 217, 255, .18);
}

.dr1064servicesbriefIcon {
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	border-radius: 22px;
	margin-bottom: 25px;
	background: linear-gradient(135deg, #00C6FF, #38D9FF);
}

.dr1064servicesbriefCard h3 {
	color: #ffffff;
	font-size: 24px;
	margin-bottom: 18px;
}

.dr1064servicesbriefCard p {
	color: rgba(255, 255, 255, .78);
	line-height: 1.8;
}

/* ==================================================
   RESPONSIVE
================================================== */
@media ( max-width :1200px) {
	.dr1064servicesbriefGrid {
		grid-template-columns: repeat(2, 1fr);
	}
	.dr1064servicesbriefHeader h2 {
		font-size: 52px;
	}
}

@media ( max-width :768px) {
	.dr1064servicesbrief {
		padding: 100px 0;
	}
	.dr1064servicesbriefHeader h2 {
		font-size: 38px;
	}
	.dr1064servicesbriefHeader p {
		font-size: 16px;
	}
	.dr1064servicesbriefGrid {
		grid-template-columns: 1fr;
	}
	.dr1064servicesbriefCard {
		min-height: auto;
	}
}