@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&family=Karantina:wght@300;400;700&family=Miriam+Libre:wght@400..700&family=Noto+Sans+Hebrew:wght@100..900&display=swap");
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--blue: #0052cc;
	--blue-dark: #003a99;
	--blue-light: #1a73e8;
	--cyan: #00b4d8;
	--cyan-light: #48cae4;
	--gold: #ffd60a;
	--gold-dark: #e6c009;
	--white: #ffffff;
	--gray-100: #f8f9fa;
	--gray-200: #e9ecef;
	--gray-600: #6c757d;
	--gray-900: #111827;
	--text: #0d1b2a;
}

html {
	font-size: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: "Heebo", "Assistant", Arial, sans-serif;
	background: var(--white);
	color: var(--text);
	line-height: 1.7;
	overflow-x: hidden;
}

.hero-stats-hidden {
    visibility: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
	background: linear-gradient(135deg, #001a4d 0%, #003a99 40%, #0052cc 100%);
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 60px;

	position: sticky;
	top: 0;
	z-index: 100;

	overflow: hidden;
}

/* Grid texture overlay */
.navbar::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 40px 40px;
}

/* Gold/cyan shimmer line at bottom */
.navbar::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(255, 214, 10, 0.6), rgba(0, 180, 216, 0.4), transparent);
}

/* ── Nav links ── */
.navbar .nav-link {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.88rem;
	font-weight: 600;
	padding: 0.45rem 1rem;
	border-radius: 2rem;
	border: 1px solid transparent;
	transition:
		color 0.2s ease,
		background 0.2s ease,
		border-color 0.2s ease;
	white-space: nowrap;
	min-height: 44px; /* WCAG 2.5.5 touch target */
	letter-spacing: 0.01em;
}

.nav-selected{
  background-color: rgb(31, 41, 87) !important;
}

.navbar .nav-link:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
}

.navbar .nav-link:focus-visible {
	outline: 3px solid #ffd60a;
	outline-offset: 2px;
	border-radius: 2rem;
}

/* ── Separator ── */
.navbar .nav-sep {
	width: 1px;
	height: 18px;
	background: rgba(255, 255, 255, 0.15);
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

/* ── CTA button (gold) ── */
.navbar .nav-cta {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	text-decoration: none;
	/* background: #ffd60a59; */
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.88rem;
	font-weight: 800;
	padding: 0.5rem 1.3rem;
	border-radius: 2rem;
	border: 1px solid transparent;
	transition:
		background 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
	white-space: nowrap;
	min-height: 44px; /* WCAG 2.5.5 touch target */
	letter-spacing: 0.01em;
	margin-inline-end: 0.5rem;
	box-shadow: 0 0px 3px rgba(236, 236, 236, 0.35);
}

.navbar .nav-cta:hover {
  transition: all 0.5s;
	background: #ffe761;
	transform: translateY(-1px);
  color: #000;
	box-shadow: 0 4px 18px rgba(255, 214, 10, 0.5);
}

.navbar .nav-cta:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 2px;
	border-radius: 2rem;
}

.navbar .nav-cta svg {
	transition: transform 0.2s;
	flex-shrink: 0;
}

.navbar .nav-cta:hover svg {
	transform: translateX(-2px); /* RTL: arrow nudges right on hover */
}

/* ── Mobile ── */
@media (max-width: 600px) {
	.navbar {
		flex-wrap: wrap;
		height: auto;
		padding: 0.65rem 1rem;
		gap: 0.35rem;
	}
	.navbar .nav-sep {
		display: none;
	}
	.navbar .nav-link,
	.navbar .nav-cta {
		font-size: 0.82rem;
		padding: 0.4rem 0.85rem;
	}
	.navbar .nav-cta {
		margin-inline-end: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.navbar .nav-link,
	.navbar .nav-cta,
	.navbar .nav-cta svg {
		transition: none !important;
	}
}

/* ===== SKIP LINK ===== */
.skip-link {
	position: absolute;
	inset-block-start: -100%;
	inset-inline-start: 0;
	background: #000;
	color: #fff;
	padding: 0.5rem 1rem;
	z-index: 9999;
	text-decoration: underline;
}
.skip-link:focus-visible {
	inset-block-start: 0;
}
:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 3px;
	border-radius: 3px;
}
:focus:not(:focus-visible) {
	outline: none;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

.main-logos {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 10px;
}

/* ===== HERO ===== */
.hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(135deg, #001a4d 0%, #003a99 40%, #0052cc 70%, #0077e6 100%);
}

.hero-bg-pattern {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image:
		radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 214, 10, 0.08) 0%, transparent 40%),
		radial-gradient(circle at 60% 80%, rgba(0, 82, 204, 0.3) 0%, transparent 50%);
}

.hero-grid-lines {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0.07;
	background-image: linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
	background-size: 60px 60px;
}

.hero-banner-img {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.12;
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 6rem 2rem 4rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 214, 10, 0.15);
	border: 1px solid rgba(255, 214, 10, 0.4);
	color: var(--gold);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 0.4rem 1rem;
	border-radius: 2rem;
	margin-bottom: 1.5rem;
	animation: fadeSlideDown 0.6s ease both;
}

.hero-badge::before {
	content: "";
	font-size: 0.9rem;
}

.hero-text h1 {
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	font-weight: 900;
	color: var(--white);
	line-height: 1.15;
	margin-bottom: 1.2rem;
	animation: fadeSlideDown 0.7s 0.1s ease both;
}

.hero-text h1 span {
	color: var(--gold);
	display: block;
}

.hero-text p {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.85);
	max-width: 520px;
	margin-bottom: 2rem;
	animation: fadeSlideDown 0.7s 0.2s ease both;
}

.hero-cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	animation: fadeSlideDown 0.7s 0.3s ease both;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--gold);
	color: #111;
	font-size: 1rem;
	font-weight: 800;
	padding: 0.9rem 2rem;
	border-radius: 3rem;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
	box-shadow: 0 4px 20px rgba(255, 214, 10, 0.4);
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(255, 214, 10, 0.5);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: transparent;
	color: var(--white);
	font-size: 1rem;
	font-weight: 700;
	padding: 0.9rem 2rem;
	border-radius: 3rem;
	text-decoration: none;
	border: 2px solid rgba(255, 255, 255, 0.5);
	transition: all 0.2s;
}
.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--white);
}

.hero-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	animation: fadeSlideUp 0.8s 0.3s ease both;
}

.stat-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border-radius: 1.2rem;
	padding: 1.5rem 1.2rem;
	text-align: center;
	transition:
		transform 0.2s,
		background 0.2s;
}
.stat-card:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.13);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--gold);
	display: block;
	line-height: 1;
}
.stat-label {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.75);
	margin-top: 0.4rem;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.75rem;
	animation: bounce 2s infinite;
}
.scroll-indicator svg {
	opacity: 0.5;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
	background: var(--gray-100);
	border-bottom: 1px solid var(--gray-200);
	padding: 1.2rem 2rem;
}
.trust-strip-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
	justify-content: center;
}
.trust-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--gray-600);
}
.trust-item .icon {
	width: 0.2rem;
	height: 0.2rem;
	background: var(--blue);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 0.9rem;
	flex-shrink: 0;
}

/* ===== SECTION DEFAULTS ===== */
section {
	padding: 5rem 2rem;
}
.section-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.section-tag {
	display: inline-block;
	background: rgba(0, 82, 204, 0.08);
	color: var(--blue);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.3rem 0.9rem;
	border-radius: 2rem;
	margin-bottom: 1rem;
}
.section-title {
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	font-weight: 900;
	color: var(--text);
	line-height: 1.2;
	margin-bottom: 0.8rem;
}
.section-title span {
	color: var(--blue);
}
.section-sub {
	font-size: 1.05rem;
	color: var(--gray-600);
	max-width: 620px;
	margin-bottom: 3rem;
}

/* ===== WHY SECTION ===== */
.why-section {
	background: var(--white);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.why-card {
	background: var(--gray-100);
	border-radius: 1.2rem;
	padding: 2rem;
	border: 1px solid transparent;
	transition: all 0.25s;
	position: relative;
	overflow: hidden;
}
.why-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
	opacity: 0;
	transition: opacity 0.25s;
	z-index: 0;
}
.why-card:hover::before {
	opacity: 1;
}
.why-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 82, 204, 0.18);
}
.why-card:hover .why-icon,
.why-card:hover .why-title,
.why-card:hover .why-text {
	color: var(--white);
}
.why-card > * {
	position: relative;
	z-index: 1;
}

.why-icon {
	font-size: 2.2rem;
	margin-bottom: 1rem;
	display: block;
}
.why-title {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 0.5rem;
}
.why-text {
	font-size: 0.92rem;
	color: var(--gray-600);
	line-height: 1.65;
}

/* ===== VIDEO SECTION ===== */
.videos-section {
	background: linear-gradient(135deg, #0d1b2a 0%, #0052cc 100%);
	color: var(--white);
}
.videos-section .section-tag {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.8);
}
.videos-section .section-title {
	color: var(--white);
}
.videos-section .section-sub {
	color: rgba(255, 255, 255, 0.7);
}

.video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}

.video-card {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 1.2rem;
	overflow: hidden;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
}
.video-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.video-card iframe {
	width: 100%;
	aspect-ratio: 16/9;
	display: block;
	border: none;
}
.video-card-label {
	padding: 1rem 1.2rem;
	font-size: 0.92rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== ABOUT SECTION ===== */
.about-section {
	background: var(--white);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-text p {
	font-size: 0.98rem;
	color: #374151;
	margin-bottom: 1rem;
	line-height: 1.8;
}

.about-video {
	border-radius: 1.2rem;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 82, 204, 0.15);
	position: relative;
}
.about-video iframe {
	width: 100%;
	aspect-ratio: 16/9;
	border: none;
	display: block;
}
.about-video-caption {
	background: var(--blue);
	color: var(--white);
	font-size: 0.85rem;
	padding: 0.8rem 1.2rem;
	font-weight: 600;
}

/* ===== UNIQUENESS ===== */
.unique-section {
	background: var(--gray-100);
}

.unique-list {
	display: grid;
	gap: 1rem;
	list-style: none;
}
.unique-list li {
	display: flex;
	gap: 1rem;
	background: var(--white);
	border-radius: 1rem;
	padding: 1.2rem 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	border-inline-start: 4px solid var(--blue);
	transition:
		transform 0.2s,
		box-shadow 0.2s;
}
.unique-list li:hover {
	transform: translateX(-4px);
	box-shadow: 0 6px 20px rgba(0, 82, 204, 0.1);
}
.unique-list li::before {
	content: "✓";
	font-size: 1.1rem;
	font-weight: 900;
	color: var(--blue);
	flex-shrink: 0;
	margin-top: 0.1rem;
}

/* ===== EMPLOYMENT SECTION ===== */
.employment-section {
	background: var(--white);
}
.employment-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.employment-text p {
	font-size: 1rem;
	color: #374151;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.highlight-box {
	background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
	color: var(--white);
	border-radius: 1.2rem;
	padding: 2rem;
	margin-top: 1.5rem;
}
.highlight-box p {
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	font-size: 1rem;
	line-height: 1.7;
}

/* ===== PATHS TEASER ===== */
.paths-section {
	background: linear-gradient(135deg, #001a4d 0%, #003a99 100%);
	color: var(--white);
}
.paths-teaser-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.2rem;
	margin-top: 2.5rem;
}
.path-teaser-card {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 1.2rem;
	padding: 1.8rem;
	text-align: center;
	transition: all 0.25s;
	text-decoration: none;
	color: var(--white);
}
.path-teaser-card:hover {
	background: rgba(255, 255, 255, 0.14);
	transform: translateY(-4px);
	border-color: var(--gold);
}
.path-icon {
	font-size: 2.5rem;
	margin-bottom: 0.8rem;
	display: block;
}
.path-name {
	font-size: 1rem;
	font-weight: 800;
	margin-bottom: 0.4rem;
}
.path-desc {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.5;
}
.paths-cta {
	text-align: center;
	margin-top: 2.5rem;
}

/* ===== ADMISSIONS ===== */
.admission-section {
	background: var(--gray-100);
}

.admission-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}
.admission-card {
	background: var(--white);
	border-radius: 1.2rem;
	padding: 1.8rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	border-top: 4px solid var(--blue);
}
.admission-card h3 {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 0.8rem;
}
.admission-card p,
.admission-card li {
	font-size: 0.9rem;
	color: #374151;
	line-height: 1.7;
}
.admission-card ul {
	padding-right: 1.2rem;
	margin-top: 0.5rem;
}
.admission-card a {
	color: var(--blue);
	font-weight: 600;
	text-decoration: underline;
}

.final-cta-section {
	background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
	text-align: center;
	padding: 4rem 2rem;
}
.final-cta-section h2 {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 900;
	color: #111;
	margin-bottom: 0.8rem;
}
.final-cta-section p {
	font-size: 1.05rem;
	color: #333;
	margin-bottom: 2rem;
}
.btn-dark {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #111;
	color: var(--white);
	font-size: 1.05rem;
	font-weight: 800;
	padding: 1rem 2.5rem;
	border-radius: 3rem;
	text-decoration: none;
	transition: all 0.2s;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.btn-dark:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* ===== FOOTER ===== */
footer {
	background: var(--gray-900);
	color: rgba(255, 255, 255, 0.6);
	padding: 2rem;
	text-align: center;
	font-size: 0.85rem;
}
footer a {
	color: var(--cyan-light);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeSlideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes bounce {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(8px);
	}
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
	.hero-content {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		padding: 5rem 1.5rem 3rem;
	}
	.hero-stats {
		grid-template-columns: 1fr 1fr;
	}
	.about-grid,
	.employment-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	section {
		padding: 3.5rem 1.5rem;
	}
}
.social-rail {
	position: fixed;
	inset-block-start: 50%;
	inset-inline-start: 1rem;
	transform: translateY(-50%);

	z-index: 900;

	display: flex;
	flex-direction: column;
	gap: 0.55rem;

	padding: 0.55rem;

	border-radius: 999px;

	background: rgba(0, 26, 77, 0.74);
	border: 1px solid rgba(255, 255, 255, 0.14);

	backdrop-filter: blur(14px);

	box-shadow:
		0 18px 45px rgba(0, 0, 0, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* .social-rail::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;

	background: linear-gradient(180deg, rgba(255, 214, 10, 0.16), transparent 35%, rgba(0, 180, 216, 0.16));
} */

.social-rail a {
	position: relative;
	z-index: 1;

	width: 1.5rem;
	height: 1.5rem;

	display: grid;
	place-items: center;

	border-radius: 999px;

	/* background: rgba(255, 255, 255, 0.08); */
	/* border: 1px solid rgba(255, 255, 255, 0.12); */

	color: rgba(255, 255, 255, 0.9);

	font-size: 0.72rem;
	font-weight: 900;
	text-decoration: none;

	transition:
		transform 0.18s ease,
		background 0.18s ease,
		color 0.18s ease,
		box-shadow 0.18s ease;
}

.social-rail a:hover {
  padding: 1px;
	transform:  scale(1.15);
	
	box-shadow: 0 3px 10px rgba(236, 236, 235, 0.28);
}

.social-rail a:focus-visible {
	outline: 3px solid var(--gold);
	outline-offset: 3px;
}

/* Mobile: move to bottom so it does not cover content */
@media (max-width: 768px) {
	.social-rail {
		inset-block-start: auto;
		inset-block-end: 1rem;
		/* inset-inline-start: 50%; */
		/* transform: translateX(-50%); */
		bottom: -10px;
		flex-direction: row;
		border-radius: 999px;
		z-index: 10000;
	}

	.social-rail a {
		width: 2.35rem;
		height: 2.35rem;
	}

	.social-rail a:hover {
		transform: translateY(-2px) scale(1.04);
	}
}

/* Mobile */
@media (max-width: 768px) {
	.contact-grid {
		grid-template-columns: 1fr 1fr;

		gap: 0.7rem;

		margin-top: -1.8rem;

		padding: 0 1rem;
	}

	.contact-card {
		padding: 0.5rem 0.5rem;
	}

	.contact-card a {
		font-size: 0.82rem;
	}
}

@media (max-width: 520px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}

  .hero-stats-hidden {
    display: none;
  }
}
