/* =============================================
   PLN UP3 Makassar Selatan - Modern CSS
   ============================================= */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

/* CSS Variables */
:root {
	--primary: #003d99;
	--primary-light: #1a5bda;
	--primary-dark: #002570;
	--secondary: #ffd100;
	--secondary-light: #ffe566;
	--secondary-dark: #e6b800;
	--accent: #ff4757;
	--dark: #0a0f1e;
	--dark-2: #1a2035;
	--light: #f4f6fc;
	--gray: #64748b;
	--gray-light: #94a3b8;
	--white: #ffffff;
	--success: #10b981;
	--danger: #ef4444;
	--shadow-sm: 0 2px 8px rgba(0, 61, 153, 0.08);
	--shadow: 0 8px 24px rgba(0, 61, 153, 0.12);
	--shadow-lg: 0 20px 60px rgba(0, 61, 153, 0.18);
	--shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.25);
	--border-radius: 16px;
	--border-radius-sm: 8px;
	--border-radius-xl: 24px;
	--transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	--glass: rgba(255, 255, 255, 0.08);
	--glass-border: rgba(255, 255, 255, 0.15);
}

/* General Styles */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--dark);
	background-color: var(--light);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

section {
	padding: 100px 0;
}

h1,
h2,
h3,
h4 {
	margin-bottom: 16px;
	color: var(--dark);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

p {
	margin-bottom: 16px;
	line-height: 1.75;
	color: var(--gray);
}

/* =============================================
   Buttons
   ============================================= */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	background: linear-gradient(
		135deg,
		var(--secondary) 0%,
		var(--secondary-dark) 100%
	);
	color: var(--dark);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 15px;
	transition: var(--transition);
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(255, 209, 0, 0.4);
	position: relative;
	overflow: hidden;
	letter-spacing: 0.01em;
}

.btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.6s;
}

.btn:hover::before {
	left: 100%;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 32px rgba(255, 209, 0, 0.5);
}

.btn-outline {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.7);
	color: white;
	box-shadow: none;
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.btn-primary {
	background: linear-gradient(
		135deg,
		var(--primary-light) 0%,
		var(--primary-dark) 100%
	);
	color: white;
	box-shadow: 0 4px 20px rgba(0, 61, 153, 0.35);
}

.btn-primary:hover {
	box-shadow: 0 8px 32px rgba(0, 61, 153, 0.5);
}

/* =============================================
   Section Title
   ============================================= */
.section-title {
	text-align: center;
	margin-bottom: 70px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

.section-title .subtitle {
	display: inline-block;
	background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
	color: var(--dark);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 6px 18px;
	border-radius: 50px;
	margin-bottom: 14px;
	line-height: 1;
}

.section-title h2 {
	font-size: 2.8rem;
	font-weight: 800;
	position: relative;
	display: block;
	margin-bottom: 28px;
	color: var(--dark);
}

.section-title h2::after {
	content: "";
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
	border-radius: 4px;
}

.section-title p {
	font-size: 1.05rem;
	color: var(--gray);
	max-width: 600px;
	margin: 0 auto;
}

/* =============================================
   Header
   ============================================= */
header {
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow:
		0 1px 0 rgba(0, 0, 0, 0.06),
		0 4px 24px rgba(0, 61, 153, 0.08);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	transition: var(--transition);
}

header.scrolled {
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 4px 32px rgba(0, 61, 153, 0.12);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 24px;
	height: 76px;
}

.logo {
	display: flex;
	align-items: center;
}

.logo-img {
	height: 52px;
	width: auto;
	transition: var(--transition);
}

.logo-img:hover {
	transform: scale(1.04);
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 4px;
}

.nav-links a {
	text-decoration: none;
	color: var(--dark-2);
	font-weight: 500;
	font-size: 14.5px;
	transition: var(--transition);
	padding: 8px 14px;
	border-radius: 10px;
	position: relative;
}

.nav-links a:hover {
	color: var(--primary);
	background: rgba(0, 61, 153, 0.06);
}

.hamburger {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: rgba(0, 61, 153, 0.06);
	border: 1.5px solid rgba(0, 61, 153, 0.12);
	border-radius: 12px;
	cursor: pointer;
	padding: 0;
	z-index: 1002;
	transition: var(--transition);
	position: relative;
	flex-direction: column;
	gap: 0;
}

.hamburger:hover {
	background: rgba(0, 61, 153, 0.1);
	border-color: rgba(0, 61, 153, 0.22);
	box-shadow: 0 4px 16px rgba(0, 61, 153, 0.14);
	transform: scale(1.06);
}

.hamburger:focus-visible {
	outline: 2.5px solid var(--secondary);
	outline-offset: 3px;
}

.ham-line {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--primary);
	border-radius: 4px;
	transition:
		transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
		opacity 0.25s ease,
		width 0.35s ease;
	transform-origin: center;
}

.ham-line-top  { margin-bottom: 5px; }
.ham-line-bot  { margin-top: 5px; }

/* Mobile-only nav panel items — hidden on desktop by default */
.mobile-nav-header,
.mobile-nav-divider,
.mobile-nav-footer,
.nav-icon,
.nav-arrow { display: none; }

/* =============================================
   Hero Section
   ============================================= */
.hero {
	min-height: 100vh;
	color: white;
	display: flex;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: hidden;
	padding-top: 76px;
}

/* Background layers */
.hero::before,
.hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: -2;
	transition: opacity 1.8s ease-in-out;
}

.hero::before {
	background-image: var(--bg-image-1);
	opacity: var(--opacity-1, 1);
}

.hero::after {
	background-image: var(--bg-image-2);
	opacity: var(--opacity-2, 0);
}

/* Gradient overlay */
.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(0, 29, 82, 0.82) 0%,
		rgba(0, 61, 153, 0.7) 50%,
		rgba(0, 36, 100, 0.85) 100%
	);
	z-index: -1;
}

/* Animated orbs */
.hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.25;
	z-index: -1;
	animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 {
	width: 500px;
	height: 500px;
	background: var(--secondary);
	top: -100px;
	right: -100px;
	animation-delay: 0s;
}
.hero-orb-2 {
	width: 400px;
	height: 400px;
	background: var(--primary-light);
	bottom: -80px;
	left: -80px;
	animation-delay: 4s;
}

@keyframes orbFloat {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(30px, -30px) scale(1.1);
	}
}

.hero-content {
	max-width: 860px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	padding: 60px 20px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 209, 0, 0.15);
	border: 1px solid rgba(255, 209, 0, 0.4);
	color: var(--secondary-light);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	padding: 8px 20px;
	border-radius: 50px;
	margin-bottom: 28px;
	backdrop-filter: blur(10px);
	animation: fadeInDown 0.8s ease forwards;
}

.hero-badge::before {
	content: "🎾";
	font-size: 16px;
}

.hero-greeting {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.75);
	font-weight: 500;
	margin-bottom: 8px;
	animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-greeting span {
	color: var(--secondary-light);
	font-weight: 700;
}

.hero-content h1 {
	font-size: clamp(2.2rem, 5vw, 4rem);
	margin-bottom: 24px;
	color: white;
	font-weight: 900;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	line-height: 1.15;
	animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-content h1 .highlight {
	background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-content > p {
	font-size: 1.2rem;
	margin-bottom: 44px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s ease 0.4s both;
}

/* Hero Stats */
.hero-stats {
	display: flex;
	justify-content: center;
	gap: 48px;
	margin-top: 64px;
	animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-stat {
	text-align: center;
}

.hero-stat-number {
	font-size: 2rem;
	font-weight: 900;
	color: var(--secondary);
	line-height: 1;
}

.hero-stat-label {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.65);
	font-weight: 500;
	margin-top: 4px;
	letter-spacing: 0.05em;
}

/* Scroll indicator */
.hero-scroll {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	animation: fadeInUp 1s ease 1s both;
}

.hero-scroll-mouse {
	width: 24px;
	height: 38px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	position: relative;
}

.hero-scroll-mouse::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 8px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 2px;
	animation: scrollDown 1.5s ease infinite;
}

@keyframes scrollDown {
	0% {
		opacity: 1;
		top: 6px;
	}
	100% {
		opacity: 0;
		top: 20px;
	}
}

/* =============================================
   Services Section
   ============================================= */
.services {
	background: var(--white);
	position: relative;
}

.services::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(0, 61, 153, 0.1),
		transparent
	);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 28px;
}

.service-card {
	background: var(--white);
	border-radius: var(--border-radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	position: relative;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
	transform: translateY(-12px);
	box-shadow: var(--shadow-lg);
}

.service-img {
	position: relative;
	overflow: hidden;
}

.service-img img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	transition: var(--transition-slow);
}

.service-card:hover .service-img img {
	transform: scale(1.08);
}

.service-img-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(to top, rgba(0, 29, 82, 0.6), transparent);
}

.service-content {
	padding: 28px 32px;
	position: relative;
}

.service-content::before {
	content: "";
	position: absolute;
	top: 0;
	left: 24px;
	right: 24px;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(0, 61, 153, 0.1),
		transparent
	);
}

.service-content h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--primary);
	line-height: 1.3;
}

.service-content p {
	font-size: 14.5px;
	color: var(--gray);
	line-height: 1.7;
	margin: 0;
}

/* =============================================
   Facilities Section
   ============================================= */
.facilities {
	background: linear-gradient(
		135deg,
		var(--primary-dark) 0%,
		var(--primary) 50%,
		var(--primary-light) 100%
	);
	color: white;
	position: relative;
	overflow: hidden;
}

.facilities::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.facilities .container {
	position: relative;
	z-index: 2;
}

.facilities .section-title h2,
.facilities .section-title p {
	color: white;
}

.facilities .section-title p {
	color: rgba(255, 255, 255, 0.75);
}

.facilities .section-title h2::after {
	background: var(--secondary);
}

.facilities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.facility-item {
	text-align: center;
	padding: 44px 28px;
	background: var(--glass);
	border-radius: var(--border-radius-xl);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid var(--glass-border);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.facility-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 29, 82, 0.65) 0%,
		rgba(0, 61, 153, 0.72) 100%
	);
	z-index: 1;
	transition: var(--transition);
}

.facility-item > * {
	position: relative;
	z-index: 2;
}

.facility-item:nth-child(1) {
	background-image: url("https://i.ibb.co.com/M55cBvs9/IMG20251118163639.jpg");
}
.facility-item:nth-child(2) {
	background-image: url("https://i.ibb.co.com/mCPn2D5D/IMG20251118164024.jpg");
}
.facility-item:nth-child(3) {
	background-image: url("https://i.ibb.co.com/nsBCb4ZV/IMG20251118163944.jpg");
}
.facility-item:nth-child(4) {
	background-image: url("https://i.ibb.co.com/kLG0mYX/IMG20251118153847.jpg");
}

.facility-item:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.facility-item:hover::before {
	background: linear-gradient(
		to bottom,
		rgba(0, 29, 82, 0.55) 0%,
		rgba(0, 61, 153, 0.62) 100%
	);
}

.facility-icon {
	width: 74px;
	height: 74px;
	margin: 0 auto 22px;
	background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(255, 209, 0, 0.35);
}

.facility-icon svg {
	width: 36px;
	height: 36px;
	color: var(--dark);
}

.facility-item h3 {
	color: white;
	font-size: 1.2rem;
	margin-bottom: 12px;
	font-weight: 700;
}

.facility-item p {
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.65;
	font-size: 14px;
	margin: 0;
}

/* =============================================
   Advantages Section
   ============================================= */
.advantages {
	background: var(--light);
	position: relative;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 24px;
}

.advantage-item {
	display: flex;
	align-items: flex-start;
	padding: 28px;
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	border: 1px solid rgba(0, 0, 0, 0.04);
	gap: 20px;
	position: relative;
	overflow: hidden;
}

.advantage-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(
		to bottom,
		var(--secondary),
		var(--secondary-dark)
	);
	border-radius: 4px 0 0 4px;
}

.advantage-item:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
	border-color: rgba(0, 61, 153, 0.08);
}

.advantage-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 16px rgba(255, 209, 0, 0.35);
}

.advantage-icon svg {
	width: 28px;
	height: 28px;
	color: var(--dark);
}

.advantage-item h3 {
	font-size: 1.1rem;
	margin-bottom: 6px;
	color: var(--primary);
	font-weight: 700;
}

.advantage-item p {
	color: var(--gray);
	line-height: 1.65;
	font-size: 14px;
	margin: 0;
}

/* =============================================
   Testimonials Section
   ============================================= */
.testimonials {
	background: var(--white);
	position: relative;
}

.testimonials::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--primary),
		var(--secondary),
		var(--primary)
	);
}

.testimonial-slider {
	max-width: 780px;
	margin: 0 auto;
}

.testimonial-item {
	background: var(--white);
	padding: 52px 48px;
	border-radius: var(--border-radius-xl);
	box-shadow: var(--shadow-lg);
	text-align: center;
	border: 1px solid rgba(0, 0, 0, 0.04);
	position: relative;
	overflow: hidden;
}

.testimonial-item::before {
	content: '"';
	position: absolute;
	top: -20px;
	left: 32px;
	font-size: 180px;
	font-family: Georgia, serif;
	color: rgba(0, 61, 153, 0.05);
	line-height: 1;
	pointer-events: none;
	font-weight: 700;
}

.testimonial-quote {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, var(--primary), var(--primary-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 28px;
	box-shadow: 0 8px 24px rgba(0, 61, 153, 0.25);
}

.testimonial-quote svg {
	width: 28px;
	height: 28px;
	color: white;
}

.testimonial-text {
	font-style: italic;
	font-size: 1.15rem;
	margin-bottom: 28px;
	color: var(--dark);
	line-height: 1.8;
}

.testimonial-author {
	font-weight: 700;
	color: var(--primary);
	font-size: 1rem;
}

/* =============================================
   Schedule / Jadwal Section
   ============================================= */
.jadwal-section {
	background: linear-gradient(
		135deg,
		var(--primary-dark) 0%,
		var(--primary) 50%,
		var(--primary-light) 100%
	);
	position: relative;
	overflow: hidden;
}

.jadwal-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.jadwal-section .container {
	position: relative;
	z-index: 2;
}

.jadwal-section .section-title h2,
.jadwal-section .section-title p {
	color: white;
}

.jadwal-section .section-title p {
	color: rgba(255, 255, 255, 0.75);
}

.jadwal-section .section-title h2::after {
	background: var(--secondary);
}

.lihat-jadwal-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
	color: var(--dark);
	font-size: 16px;
	font-weight: 700;
	padding: 14px 36px;
	border-radius: 50px;
	text-decoration: none;
	transition: var(--transition);
	box-shadow: 0 6px 24px rgba(255, 209, 0, 0.4);
	margin-bottom: 16px;
}

.lihat-jadwal-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(255, 209, 0, 0.55);
}

/* Court Cards */
.courts-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
	gap: 32px;
	margin-top: 20px;
}

.court-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--border-radius-xl);
	padding: 32px;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.court-card:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-6px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Tennis Court Visual */
.court {
	position: relative;
	width: 100%;
	max-width: 480px;
	height: 200px;
	background: linear-gradient(145deg, #2e8b4a, #3cb35a) !important;
	border: 3px solid rgba(255, 255, 255, 0.4) !important;
	border-radius: 12px;
	overflow: hidden;
	margin: 0 auto;
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.court.disabled {
	opacity: 0.55;
	background: linear-gradient(145deg, #7f1d1d, #b91c1c) !important;
	border-color: rgba(239, 68, 68, 0.6) !important;
	pointer-events: none;
}

.court.disabled::after {
	content: "TERPAKAI";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #ef4444;
	font-size: 1.6rem;
	font-weight: 900;
	background: rgba(255, 255, 255, 0.93);
	padding: 10px 24px;
	border-radius: 10px;
	letter-spacing: 3px;
	text-shadow: none;
	font-family: "Inter", sans-serif;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.net {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 2px;
	background: rgba(255, 255, 255, 0.9);
	transform: translateY(-50%);
	box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

.net::before {
	content: "NET";
	position: absolute;
	top: -22px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.85);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 2px;
}

.service-line {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1.5px;
	background: rgba(255, 255, 255, 0.75);
}

.service-line.left {
	left: 20%;
}
.service-line.right {
	right: 20%;
}

.center-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1.5px;
	background: rgba(255, 255, 255, 0.75);
	transform: translateX(-50%);
}

.baseline {
	position: absolute;
	left: 0;
	right: 0;
	height: 1.5px;
	background: rgba(255, 255, 255, 0.75);
}

.baseline.top {
	top: 0;
}
.baseline.bottom {
	bottom: 0;
}

.sideline {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1.5px;
	background: rgba(255, 255, 255, 0.75);
}

.sideline.left {
	left: 0;
}
.sideline.right {
	right: 0;
}

.label {
	position: absolute;
	color: rgba(255, 255, 255, 0.7);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1px;
	font-family: "Inter", sans-serif;
}

.label.baseline-top {
	top: 4px;
	left: 50%;
	transform: translateX(-50%);
}
.label.baseline-bottom {
	bottom: 4px;
	left: 50%;
	transform: translateX(-50%);
}
.label.sideline-left {
	top: 50%;
	left: 4px;
	transform: translateY(-50%) rotate(-90deg);
}
.label.sideline-right {
	top: 50%;
	right: 4px;
	transform: translateY(-50%) rotate(90deg);
}

/* Court Info Panel */
.court-info {
	text-align: center;
}

.court-info h2 {
	color: white;
	font-size: 1.4rem;
	font-weight: 800;
	margin-bottom: 12px;
	text-decoration: none !important;
}

.court-price-row {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin: 14px 0;
}

.price-tag {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	padding: 8px 16px;
	color: white;
	font-size: 13px;
	font-weight: 600;
}

.price-tag span {
	color: var(--secondary);
	font-weight: 800;
}

.court-info .countdown {
	margin: 12px auto;
	font-size: 14px;
	font-weight: 700;
	color: #fca5a5;
	background: rgba(239, 68, 68, 0.15);
	border: 1px solid rgba(239, 68, 68, 0.3);
	border-radius: 10px;
	padding: 10px 16px;
	display: inline-block;
}

.court-action {
	margin-top: 16px;
}

/* =============================================
   Gallery Section
   ============================================= */
.gallery {
	background: var(--light);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 220px);
	gap: 16px;
}

.gallery-item {
	border-radius: var(--border-radius);
	overflow: hidden;
	position: relative;
	box-shadow: var(--shadow);
	cursor: pointer;
}

.gallery-item:nth-child(1) {
	grid-column: span 2;
}

.gallery-item:hover {
	box-shadow: var(--shadow-lg);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-slow);
}

.gallery-item:hover img {
	transform: scale(1.08);
}

.gallery-item-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 29, 82, 0.7) 0%, transparent 60%);
	opacity: 0;
	transition: var(--transition);
	display: flex;
	align-items: flex-end;
	padding: 20px;
}

.gallery-item:hover .gallery-item-overlay {
	opacity: 1;
}

.gallery-item-overlay span {
	color: white;
	font-size: 13px;
	font-weight: 600;
}

/* =============================================
   Contact Section
   ============================================= */
.contact {
	background: var(--white);
}

.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	margin-top: 48px;
}

.info-box {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
	padding: 22px;
	background: var(--light);
	border-radius: var(--border-radius);
	transition: var(--transition);
	border: 1px solid transparent;
}

.info-box:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
	border-color: rgba(0, 61, 153, 0.08);
	background: var(--white);
}

.info-icon {
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, var(--primary), var(--primary-light));
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 16px rgba(0, 61, 153, 0.25);
}

.info-icon svg {
	width: 22px;
	height: 22px;
	color: white;
}

.info-box h3 {
	color: var(--primary);
	margin-bottom: 4px;
	font-size: 1rem;
	font-weight: 700;
}

.info-box p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--gray);
}

.map-box {
	margin-top: 28px;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.map-box iframe {
	width: 100%;
	height: 280px;
	border-radius: var(--border-radius);
	display: block;
}

/* Contact Form */
.contact-form {
	background: var(--light);
	border-radius: var(--border-radius-xl);
	padding: 40px;
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form-title {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--dark);
	margin-bottom: 28px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.contact-form .form-control {
	width: 100%;
	padding: 14px 18px;
	border: 1.5px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	font-family: "Inter", sans-serif;
	font-size: 14.5px;
	color: var(--dark);
	background: var(--white);
	transition: var(--transition);
	outline: none;
	margin-bottom: 16px;
	display: block;
}

.contact-form .form-control:focus {
	border-color: var(--primary-light);
	box-shadow: 0 0 0 4px rgba(26, 91, 218, 0.08);
}

.contact-form .form-control::placeholder {
	color: var(--gray-light);
}

.contact-form textarea.form-control {
	resize: vertical;
	min-height: 120px;
}

/* =============================================
   Badge Styles
   ============================================= */
.badge {
	display: inline-block;
	padding: 0.45em 1em;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	border-radius: 50px;
	transition: var(--transition);
	letter-spacing: 0.03em;
}

.badge-success {
	color: #fff;
	background: linear-gradient(135deg, #10b981, #059669);
	box-shadow: 0 2px 10px rgba(16, 185, 129, 0.35);
}

.badge-danger {
	color: #fff;
	background: linear-gradient(135deg, #ef4444, #dc2626);
	box-shadow: 0 2px 10px rgba(239, 68, 68, 0.35);
}

a.badge:hover {
	text-decoration: none;
	opacity: 0.9;
}

.badge.badge-success.lihat-jadwal {
	font-size: 16px;
	padding: 14px 36px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 50px;
}

/* Status badge large */
.status-badge-available,
.status-badge-booked {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 700;
}

.status-badge-available {
	background: rgba(16, 185, 129, 0.15);
	color: #059669;
	border: 1.5px solid rgba(16, 185, 129, 0.3);
}

.status-badge-booked {
	background: rgba(239, 68, 68, 0.12);
	color: #dc2626;
	border: 1.5px solid rgba(239, 68, 68, 0.25);
}

.status-badge-available::before {
	content: "●";
	color: #10b981;
	font-size: 10px;
}
.status-badge-booked::before {
	content: "●";
	color: #ef4444;
	font-size: 10px;
}

/* =============================================
   Floating Buttons
   ============================================= */
.logout-floating,
.login-floating {
	position: fixed !important;
	bottom: 24px;
	right: 24px;
	color: #fff;
	padding: 13px 22px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	z-index: 999999999 !important;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
	transition: var(--transition);
	transform: translateZ(0);
	will-change: transform;
	display: flex;
	align-items: center;
	gap: 8px;
	letter-spacing: 0.02em;
}

body.nav-active .logout-floating,
body.nav-active .login-floating {
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px) scale(0.9) translateZ(0);
}

.logout-floating {
	background: linear-gradient(135deg, #ef4444, #dc2626);
}
.logout-floating:hover {
	background: linear-gradient(135deg, #dc2626, #b91c1c);
	transform: translateY(-3px) translateZ(0);
}

.login-floating {
	background: linear-gradient(135deg, #10b981, #059669);
}
.login-floating:hover {
	background: linear-gradient(135deg, #059669, #047857);
	transform: translateY(-3px) translateZ(0);
}

/* =============================================
   Modal
   ============================================= */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999999;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.modal-overlay.show {
	display: flex;
	opacity: 1;
}

.modal-box {
	background: var(--white);
	padding: 40px 36px;
	width: 90%;
	max-width: 380px;
	border-radius: var(--border-radius-xl);
	text-align: center;
	animation: popIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: var(--shadow-xl);
}

@keyframes popIn {
	from {
		transform: scale(0.75);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.modal-box h2 {
	font-size: 1.4rem;
	color: var(--dark);
	margin-bottom: 12px;
}

.modal-box p {
	color: var(--gray);
	margin-bottom: 0;
	font-size: 15px;
}

.modal-actions {
	margin-top: 32px;
	display: flex;
	justify-content: center;
	gap: 16px;
}

.btn-cancel {
	padding: 12px 28px;
	background: var(--light);
	color: var(--gray);
	border-radius: 50px;
	border: 1.5px solid rgba(0, 0, 0, 0.08);
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	font-family: "Inter", sans-serif;
	transition: var(--transition);
}

.btn-cancel:hover {
	background: #e2e8f0;
	color: var(--dark);
}

.btn-logout {
	background: linear-gradient(135deg, #ef4444, #dc2626);
	color: white;
	padding: 12px 28px;
	border-radius: 50px;
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
	transition: var(--transition);
	box-shadow: 0 4px 16px rgba(239, 68, 68, 0.35);
}

.btn-logout:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(239, 68, 68, 0.45);
}

/* =============================================
   Countdown
   ============================================= */
.countdown {
	margin: 12px 0;
	font-size: 14px;
	font-weight: 700;
	color: #dc2626;
}

/* =============================================
   Helper Classes
   ============================================= */
.text-center {
	text-align: center;
}
.text-white {
	color: white;
}
.w-100 {
	width: 100%;
}

.desktop-only {
	display: inline;
}

/* =============================================
   Animations
   ============================================= */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Scroll reveal */
.animate-ready {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-ready.animate-in {
	opacity: 1;
	transform: translateY(0);
}

/* =============================================
   Focus & Accessibility
   ============================================= */
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
	outline: 3px solid var(--secondary);
	outline-offset: 3px;
	border-radius: 4px;
}

/* ──────────────────────────────────────────────
   Mobile Nav orb animation (outside media query
   for maximum browser compatibility)
   ────────────────────────────────────────────── */
@keyframes mobileOrbFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50%       { transform: translate(20px, -20px) scale(1.15); }
}

/* =============================================
   Responsive Breakpoints
   ============================================= */
@media (max-width: 992px) {

	/* ====================================================
	   MOBILE NAV — Premium Dark Slide-in Panel
	   ==================================================== */
	.nav-links {
		position: fixed;
		top: 0;
		right: 0;
		width: min(270px, 85vw);
		height: 100dvh;
		background: linear-gradient(
			160deg,
			#0a1628 0%,
			#0d1f40 40%,
			#091530 100%
		);
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		padding: 0;
		overflow-y: auto;
		overflow-x: hidden;
		opacity: 0;
		pointer-events: none;
		transform: translateX(110%);
		transition:
			transform 0.48s cubic-bezier(0.32, 0.72, 0, 1),
			opacity 0.3s ease;
		z-index: 1001;
		border-left: 1px solid rgba(255, 209, 0, 0.12);
		box-shadow:
			-10px 0 48px rgba(0, 0, 0, 0.5),
			inset 1px 0 0 rgba(255, 209, 0, 0.06);
	}

	/* Animated glow orb inside panel */
	.nav-links::after {
		content: "";
		position: absolute;
		bottom: -60px;
		left: -60px;
		width: 280px;
		height: 280px;
		background: radial-gradient(circle, rgba(0, 61, 153, 0.35) 0%, transparent 70%);
		border-radius: 50%;
		pointer-events: none;
		z-index: 0;
		animation: mobileOrbFloat 6s ease-in-out infinite;
	}

	/* Backdrop overlay — sits behind the panel, over page content */
	.nav-links::before {
		content: "";
		position: fixed;
		inset: 0;
		right: min(270px, 85vw);
		background: rgba(4, 9, 20, 0.7);
		backdrop-filter: blur(5px);
		-webkit-backdrop-filter: blur(5px);
		pointer-events: none;
		opacity: 0;
		transition: opacity 0.4s ease;
		z-index: 0;
	}

	.nav-links.active {
		opacity: 1;
		pointer-events: auto;
		transform: translateX(0);
	}

	.nav-links.active::before {
		opacity: 1;
		pointer-events: auto;
	}

	/* ── Panel Header ── */
	.mobile-nav-header {
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		padding: 16px 18px 14px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
		position: relative;
		z-index: 2;
		width: 100%;
	}

	.mobile-nav-brand {
		display: flex;
		align-items: center;
		gap: 9px;
	}

	.mobile-nav-logo {
		height: 30px;
		width: auto;
		filter: brightness(0) invert(1);
		opacity: 0.9;
	}

	.mobile-nav-brand-name {
		font-size: 13px;
		font-weight: 700;
		color: #ffffff;
		line-height: 1.2;
		letter-spacing: 0.01em;
	}

	.mobile-nav-brand-name small {
		font-size: 9.5px;
		font-weight: 500;
		color: var(--secondary);
		letter-spacing: 0.08em;
		text-transform: uppercase;
	}

	.mobile-nav-close {
		width: 32px;
		height: 32px;
		border-radius: 8px;
		background: rgba(255, 255, 255, 0.07);
		border: 1px solid rgba(255, 255, 255, 0.1);
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		color: rgba(255, 255, 255, 0.75);
		transition: var(--transition);
		flex-shrink: 0;
	}

	.mobile-nav-close:hover {
		background: rgba(255, 70, 70, 0.18);
		border-color: rgba(255, 70, 70, 0.3);
		color: #ff6b6b;
		transform: scale(1.1) rotate(90deg);
	}

	.mobile-nav-close svg {
		width: 15px;
		height: 15px;
	}

	/* ── Section Divider ── */
	.mobile-nav-divider {
		display: flex !important;
		align-items: center;
		gap: 8px;
		padding: 14px 18px 8px;
		width: 100%;
	}

	.mobile-nav-divider span {
		font-size: 9px;
		font-weight: 700;
		letter-spacing: 0.18em;
		color: rgba(255, 209, 0, 0.55);
		text-transform: uppercase;
	}

	.mobile-nav-divider::after {
		content: "";
		flex: 1;
		height: 1px;
		background: rgba(255, 255, 255, 0.07);
	}

	/* ── Nav Items — only regular li items get stagger, not special ones ── */
	.nav-links li:not(.mobile-nav-header):not(.mobile-nav-divider):not(.mobile-nav-footer) {
		width: 100%;
		position: relative;
		z-index: 2;
		opacity: 0;
		transform: translateX(24px);
		transition:
			opacity 0.36s ease calc(var(--i, 0) * 52ms + 80ms),
			transform 0.36s ease calc(var(--i, 0) * 52ms + 80ms);
	}

	/* Special items: always full width, no stagger */
	.mobile-nav-header,
	.mobile-nav-divider,
	.mobile-nav-footer {
		width: 100%;
		position: relative;
		z-index: 2;
		opacity: 0;
		transition: opacity 0.3s ease 50ms;
	}

	.nav-links.active li:not(.mobile-nav-header):not(.mobile-nav-divider):not(.mobile-nav-footer) {
		opacity: 1;
		transform: translateX(0);
	}

	.nav-links.active .mobile-nav-header,
	.nav-links.active .mobile-nav-divider,
	.nav-links.active .mobile-nav-footer {
		opacity: 1;
	}

	.nav-links a {
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 13.5px;
		font-weight: 600;
		padding: 10px 18px;
		border-radius: 0;
		width: 100%;
		color: rgba(255, 255, 255, 0.78);
		text-decoration: none;
		transition:
			background 0.22s ease,
			color 0.22s ease,
			padding-left 0.25s ease;
		position: relative;
		overflow: hidden;
		letter-spacing: 0.01em;
	}

	/* Left accent bar on hover */
	.nav-links a::before {
		content: "";
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%) scaleY(0);
		width: 3px;
		height: 70%;
		border-radius: 0 3px 3px 0;
		background: var(--secondary);
		transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.nav-links a:hover::before,
	.nav-links a.active-link::before {
		transform: translateY(-50%) scaleY(1);
	}

	.nav-links a:hover,
	.nav-links a.active-link {
		background: rgba(255, 255, 255, 0.05);
		color: #ffffff;
		padding-left: 24px;
	}

	/* Icon chip */
	.nav-icon {
		display: flex;
		width: 30px;
		height: 30px;
		border-radius: 8px;
		background: rgba(255, 255, 255, 0.07);
		border: 1px solid rgba(255, 255, 255, 0.08);
		align-items: center;
		justify-content: center;
		color: var(--secondary);
		flex-shrink: 0;
		transition: var(--transition);
	}

	.nav-icon svg {
		width: 14px;
		height: 14px;
	}

	.nav-links a:hover .nav-icon,
	.nav-links a.active-link .nav-icon {
		background: rgba(255, 209, 0, 0.15);
		border-color: rgba(255, 209, 0, 0.3);
		box-shadow: 0 0 12px rgba(255, 209, 0, 0.18);
	}

	.nav-label {
		display: inline;
		flex: 1;
	}

	/* Arrow chevron */
	.nav-arrow {
		display: inline-block;
		font-size: 16px;
		color: rgba(255, 255, 255, 0.2);
		transition: transform 0.22s ease, color 0.22s ease;
		line-height: 1;
		margin-right: 2px;
	}

	.nav-links a:hover .nav-arrow {
		color: var(--secondary);
		transform: translateX(4px);
	}

	/* ── Footer CTA ── */
	.mobile-nav-footer {
		display: block !important;
		padding: 16px 18px 24px;
		width: 100%;
		margin-top: auto;
		border-top: 1px solid rgba(255, 255, 255, 0.06);
	}

	.mobile-nav-cta {
		display: flex !important;
		align-items: center;
		justify-content: center;
		gap: 6px;
		width: 100%;
		padding: 11px 18px !important;
		border-radius: 10px !important;
		background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%) !important;
		color: var(--dark) !important;
		font-size: 13px !important;
		font-weight: 700 !important;
		letter-spacing: 0.02em;
		text-align: center;
		box-shadow: 0 4px 18px rgba(255, 209, 0, 0.28) !important;
		transition: transform 0.2s ease, box-shadow 0.2s ease !important;
	}

	.mobile-nav-cta:hover {
		transform: translateY(-2px) !important;
		box-shadow: 0 10px 32px rgba(255, 209, 0, 0.45) !important;
		padding-left: 24px !important;
		color: var(--dark) !important;
	}

	/* ── Hamburger show + animated X ── */
	.hamburger {
		display: flex;
	}

	.hamburger.active .ham-line-top {
		transform: translateY(7px) rotate(45deg);
	}
	.hamburger.active .ham-line-mid {
		opacity: 0;
		width: 10px;
	}
	.hamburger.active .ham-line-bot {
		transform: translateY(-7px) rotate(-45deg);
	}
	.hamburger.active {
		background: rgba(0, 61, 153, 0.14);
		border-color: rgba(0, 61, 153, 0.28);
		box-shadow: 0 0 0 4px rgba(0, 61, 153, 0.1);
	}

	/* ── Other breakpoint layouts ── */
	.hero-stats { gap: 32px; }
	.contact-container { grid-template-columns: 1fr; gap: 32px; }
	.advantages-grid   { grid-template-columns: 1fr; }
	.courts-wrapper    { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
	.container {
		padding: 0 16px;
	}
	section {
		padding: 72px 0;
	}

	.header-container {
		height: 68px;
		padding: 12px 16px;
	}
	.logo-img {
		height: 44px;
	}

	.section-title h2 {
		font-size: 2rem;
	}
	.section-title {
		margin-bottom: 48px;
	}

	.hero-content h1 {
		font-size: 2.2rem;
	}
	.hero-stats {
		flex-direction: column;
		gap: 20px;
		align-items: center;
	}
	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}
	.hero-scroll {
		display: none;
	}

	.services-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.facilities-grid {
		grid-template-columns: 1fr;
	}

	.gallery-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
		gap: 12px;
	}

	.gallery-item:nth-child(1) {
		grid-column: span 2;
	}

	.contact-form {
		padding: 28px 22px;
	}

	.desktop-only {
		display: none;
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 1.85rem;
	}
	.section-title h2 {
		font-size: 1.75rem;
	}
	.btn {
		padding: 12px 24px;
		font-size: 14px;
	}
	.services-grid {
		grid-template-columns: 1fr;
	}
	.gallery-grid {
		grid-template-columns: 1fr;
	}
	.gallery-item:nth-child(1) {
		grid-column: span 1;
	}
	.hero-badge {
		font-size: 12px;
	}
}

/* =============================================
   Footer (shared from backend)
   ============================================= */
footer {
	background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
	color: white;
	padding: 64px 0 32px;
	position: relative;
}

footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--primary),
		var(--secondary),
		var(--primary)
	);
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin-bottom: 48px;
}

.footer-col h3 {
	color: white;
	margin-bottom: 24px;
	font-size: 1.1rem;
	font-weight: 700;
	position: relative;
}

.footer-col h3::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, var(--secondary), var(--secondary-dark));
	border-radius: 3px;
}

.footer-col p {
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.75;
	margin-bottom: 20px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 16px;
	color: rgba(255, 255, 255, 0.65);
	font-weight: 500;
}

.contact-item svg {
	width: 20px;
	height: 20px;
	margin-right: 12px;
	margin-top: 4px;
	color: var(--secondary);
	flex-shrink: 0;
}

.footer-links {
	list-style: none;
}
.footer-links li {
	margin-bottom: 10px;
}
.footer-links a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 14.5px;
	transition: var(--transition);
}
.footer-links a:hover {
	color: var(--secondary);
	padding-left: 4px;
}

.copyright {
	text-align: center;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.45);
	font-size: 13.5px;
}

@media (max-width: 768px) {
	.footer-container {
		grid-template-columns: 1fr 1fr;
		gap: 28px;
	}
}

@media (max-width: 480px) {
	.footer-container {
		grid-template-columns: 1fr;
	}
}

/* =============================================
   Print
   ============================================= */
@media print {
	header,
	.hamburger,
	.btn,
	.logout-floating,
	.login-floating {
		display: none;
	}
	body {
		font-size: 12pt;
	}
	.hero {
		height: auto;
		padding: 2cm 0;
	}
}
