/**
 * OpsMind Season homepage template styles.
 */

.opsmind-home {
	--opsmind-h-accent: #f8890c;
	--opsmind-h-accent-dark: #d87312;
	--opsmind-h-ink: #152033;
	--opsmind-h-muted: #5c6b7a;
	--opsmind-h-bg: #ffffff;
	--opsmind-h-card: #ffffff;
	--opsmind-h-font: "Tajawal", "Cairo", "Segoe UI", Tahoma, sans-serif;
	font-family: var(--opsmind-h-font);
	color: var(--opsmind-h-ink);
	background: var(--opsmind-h-bg);
}

.opsmind-home__hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: flex-end;
	background-color: #1a2b48;
	background-size: cover;
	background-position: center;
	color: #fff;
}

.opsmind-home__hero-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 18, 32, 0.15) 0%, rgba(10, 18, 32, 0.72) 75%);
}

.opsmind-home__hero-inner {
	position: relative;
	z-index: 1;
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto 72px;
}

.opsmind-home__brand {
	margin: 0;
	font-size: clamp(2rem, 5vw, 3.4rem);
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.1;
}

.opsmind-home__brand-ar {
	margin: 6px 0 18px;
	font-size: 1.15rem;
	opacity: 0.92;
	font-weight: 600;
}

.opsmind-home__title {
	margin: 0 0 12px;
	font-size: clamp(1.35rem, 3vw, 2rem);
	font-weight: 700;
	max-width: 18ch;
	line-height: 1.35;
}

.opsmind-home__lead {
	margin: 0 0 28px;
	font-size: 1.05rem;
	max-width: 36ch;
	opacity: 0.92;
	line-height: 1.6;
}

.opsmind-home__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.opsmind-home__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 0.98rem;
	text-decoration: none !important;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.opsmind-home__btn:hover {
	transform: translateY(-1px);
}

.opsmind-home__btn--primary {
	background: var(--opsmind-h-accent);
	color: #fff !important;
}

.opsmind-home__btn--primary:hover {
	background: var(--opsmind-h-accent-dark);
}

.opsmind-home__btn--ghost {
	background: transparent;
	color: #fff !important;
	border: 1.5px solid rgba(255, 255, 255, 0.75);
}

.opsmind-home__btn--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
}

.opsmind-home__section {
	padding: 72px 0;
}

.opsmind-home__wrap {
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
}

.opsmind-home__head {
	margin-bottom: 28px;
}

.opsmind-home__head h2 {
	margin: 0 0 8px;
	font-size: clamp(1.45rem, 2.4vw, 1.9rem);
	font-weight: 800;
}

.opsmind-home__head p {
	margin: 0;
	color: var(--opsmind-h-muted);
}

.opsmind-home__dest-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.opsmind-home__dest {
	position: relative;
	display: block;
	min-height: 280px;
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none !important;
	color: #fff !important;
}

.opsmind-home__dest-img {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1);
	transition: transform 0.45s ease;
}

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

.opsmind-home__dest::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(8, 14, 24, 0.78) 100%);
}

.opsmind-home__dest-name {
	position: absolute;
	z-index: 1;
	right: 16px;
	bottom: 16px;
	font-size: 1.25rem;
	font-weight: 800;
}

.opsmind-home__services {
	background: #fff;
}

.opsmind-home__svc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.opsmind-home__svc {
	display: block;
	padding: 28px 24px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid #eef1f5;
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.07);
	text-decoration: none !important;
	color: inherit !important;
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.opsmind-home__svc:hover {
	background: #fff;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
	transform: translateY(-2px);
}

.opsmind-home__svc strong {
	display: block;
	font-size: 1.2rem;
	margin-bottom: 8px;
}

.opsmind-home__svc span {
	color: var(--opsmind-h-muted);
	line-height: 1.55;
	font-size: 0.95rem;
}

.opsmind-home__hotel-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.opsmind-home__hotel {
	background: var(--opsmind-h-card);
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #e6ebf1;
}

.opsmind-home__hotel-media {
	display: block;
	height: 190px;
	background: #d9e1ea center/cover no-repeat;
}

.opsmind-home__hotel-body {
	padding: 16px 18px 20px;
}

.opsmind-home__hotel-body h3 {
	margin: 0 0 8px;
	font-size: 1.05rem;
	line-height: 1.4;
}

.opsmind-home__hotel-body h3 a {
	color: var(--opsmind-h-ink) !important;
	text-decoration: none !important;
}

.opsmind-home__price {
	margin: 0 0 12px;
	font-weight: 800;
	color: var(--opsmind-h-accent-dark);
}

.opsmind-home__price span {
	font-weight: 500;
	color: var(--opsmind-h-muted);
	font-size: 0.85rem;
}

.opsmind-home__hotel-link {
	font-weight: 700;
	color: var(--opsmind-h-ink) !important;
	text-decoration: none !important;
	border-bottom: 2px solid var(--opsmind-h-accent);
}

.opsmind-home__more {
	margin: 28px 0 0;
	text-align: center;
}

.opsmind-home__cta-band {
	background: #152033;
	color: #fff;
	text-align: center;
}

.opsmind-home__cta-band-inner h2 {
	margin: 0 0 10px;
	font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

.opsmind-home__cta-band-inner p {
	margin: 0 0 22px;
	opacity: 0.88;
}

@media (max-width: 991px) {
	.opsmind-home__dest-grid,
	.opsmind-home__hotel-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.opsmind-home__svc-grid {
		grid-template-columns: 1fr;
	}

	.opsmind-home__hero {
		min-height: 78vh;
	}
}

@media (max-width: 640px) {
	.opsmind-home__dest-grid,
	.opsmind-home__hotel-grid {
		grid-template-columns: 1fr;
	}

	.opsmind-home__hero-inner {
		margin-bottom: 48px;
	}

	.opsmind-home__dest {
		min-height: 220px;
	}
}
