/* GALLERY SLIDER */
.gallery-section {
	padding: 60px 0;
}

.gallery-slider {
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow);
	margin: 0 auto;
	background: #000;
}

.gallery-track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: transform;
}

.gallery-slide {
	min-width: 100%;
	height: 580px;
	position: relative;
	flex-shrink: 0;
}

.gallery-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}

.gallery-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.85);
	border: none;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	z-index: 10;
	color: #001367;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-arrow:hover {
	background: #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
	transform: translateY(-50%) scale(1.08);
}

.gallery-arrow-prev {
	left: 16px;
}

.gallery-arrow-next {
	right: 16px;
}

.gallery-dots {
	position: absolute;
	bottom: 14px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

.gallery-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	border: none;
	cursor: pointer;
	transition: var(--transition);
	padding: 0;
}

.gallery-dot.active {
	background: #fff;
	transform: scale(1.3);
}

.gallery-hint {
	text-align: center;
	margin-top: 14px;
	font-size: 0.85rem;
	color: #999;
}

@media (max-width: 768px) {
	.gallery-slide {
		height: 260px;
	}

	.gallery-arrow {
		width: 36px;
		height: 36px;
		font-size: 1.4rem;
	}
}
