/* Selectable section layouts: Fleet / Services / Equipment page */

/* ========== Our Fleet — Cinema Rail ========== */
.noor-fleet-layout--rail {
	position: relative;
	padding: clamp(3.5rem, 7vw, 5.5rem) 0;
	background: linear-gradient(180deg, #0a0a0c 0%, #121216 55%, #0a0a0c 100%);
	color: #fff;
	overflow: hidden;
}

.noor-fleet-rail__atmosphere {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.noor-fleet-rail__glow {
	position: absolute;
	width: 55%;
	height: 70%;
	left: 20%;
	top: 10%;
	background: radial-gradient(ellipse at center, rgba(235, 63, 75, 0.18), transparent 70%);
}

.noor-fleet-rail__grain {
	position: absolute;
	inset: 0;
	opacity: 0.04;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.noor-fleet-rail__head {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2rem;
}

.noor-fleet-rail__title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
	margin: 0.35rem 0 0.75rem;
	max-width: 16ch;
}

.noor-fleet-rail__lead {
	margin: 0;
	max-width: 42ch;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.98rem;
	line-height: 1.6;
}

.noor-fleet-rail__meta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 1rem;
	flex-shrink: 0;
}

.noor-fleet-rail__count {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55);
}

.noor-fleet-rail__count strong {
	display: block;
	font-family: var(--font-display);
	font-size: 2rem;
	color: #fff;
	line-height: 1;
	margin-bottom: 0.2rem;
}

.noor-fleet-rail__track-wrap {
	position: relative;
	z-index: 1;
}

.noor-fleet-rail__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(280px, 340px);
	gap: 1.1rem;
	overflow-x: auto;
	padding: 0.5rem max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem)) 1.5rem;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.noor-fleet-rail__card {
	scroll-snap-align: start;
	border-radius: 18px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.noor-fleet-rail__card:hover {
	transform: translateY(-6px);
	border-color: rgba(235, 63, 75, 0.4);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.noor-fleet-rail__link {
	display: block;
	color: inherit;
	height: 100%;
}

.noor-fleet-rail__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.noor-fleet-rail__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.noor-fleet-rail__card:hover .noor-fleet-rail__media img {
	transform: scale(1.06);
}

.noor-fleet-rail__index {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	padding: 0.3rem 0.55rem;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(8px);
}

.noor-fleet-rail__body {
	padding: 1.15rem 1.2rem 1.35rem;
}

.noor-fleet-rail__body h3 {
	margin: 0 0 0.45rem;
	font-size: 1.1rem;
}

.noor-fleet-rail__body p {
	margin: 0 0 0.85rem;
	font-size: 0.88rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.55);
}

.noor-fleet-rail__cta {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--accent);
}

@media (max-width: 768px) {
	.noor-fleet-rail__head {
		flex-direction: column;
		align-items: flex-start;
	}

	.noor-fleet-rail__meta {
		align-items: flex-start;
	}
}

/* ========== Our Fleet — Steel Grid ========== */
.noor-fleet-layout--grid {
	padding: clamp(3.5rem, 7vw, 5.5rem) 0;
	background:
		linear-gradient(180deg, #f4f5f7 0%, #eef0f3 100%),
		repeating-linear-gradient(90deg, transparent, transparent 47px, rgba(15, 23, 42, 0.03) 48px);
}

.noor-fleet-grid__head {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 2rem;
	align-items: end;
	margin-bottom: 2.25rem;
}

.noor-fleet-grid__title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.2vw, 3.1rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
	margin: 0.35rem 0 0;
	color: #0a0a0a;
}

.noor-fleet-grid__aside {
	display: grid;
	gap: 1rem;
}

.noor-fleet-grid__aside p {
	margin: 0;
	color: var(--text-muted);
	line-height: 1.6;
}

.noor-fleet-grid__badge {
	display: inline-flex;
	align-items: baseline;
	gap: 0.65rem;
	padding: 0.65rem 1rem;
	background: #0a0a0a;
	color: #fff;
	width: fit-content;
	clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

.noor-fleet-grid__badge strong {
	font-family: var(--font-display);
	font-size: 1.45rem;
	color: var(--accent);
}

.noor-fleet-grid__badge span {
	font-size: 0.78rem;
	opacity: 0.7;
}

.noor-fleet-grid__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.15rem;
}

.noor-fleet-grid__card {
	position: relative;
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 1.1rem;
	padding: 1rem;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.noor-fleet-grid__card:hover {
	transform: translateY(-4px);
	border-color: rgba(235, 63, 75, 0.35);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.noor-fleet-grid__num {
	position: absolute;
	top: 0.85rem;
	right: 0.95rem;
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 800;
	color: rgba(15, 23, 42, 0.08);
	line-height: 1;
}

.noor-fleet-grid__visual {
	aspect-ratio: 1;
	overflow: hidden;
	background: #0a0a0a;
}

.noor-fleet-grid__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.noor-fleet-grid__card:hover .noor-fleet-grid__visual img {
	transform: scale(1.05);
}

.noor-fleet-grid__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 1.5rem;
}

.noor-fleet-grid__copy h3 {
	margin: 0 0 0.4rem;
	font-size: 1.05rem;
}

.noor-fleet-grid__copy p {
	margin: 0 0 0.85rem;
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.5;
}

.noor-fleet-grid__copy a {
	font-weight: 700;
	font-size: 0.84rem;
	color: var(--accent);
}

.noor-fleet-grid__footer {
	margin-top: 2rem;
	text-align: center;
}

@media (max-width: 900px) {
	.noor-fleet-grid__head,
	.noor-fleet-grid__list {
		grid-template-columns: 1fr;
	}

	.noor-fleet-grid__card {
		grid-template-columns: 120px minmax(0, 1fr);
	}
}

/* ========== What We Offer — Triptych ========== */
.noor-home .noor-section.noor-services-layout--triptych,
.noor-home #services.noor-services-layout--triptych,
.noor-services-layout--triptych {
	padding: 0;
	padding-bottom: 0;
	background: var(--surface);
	color: var(--text);
}

.noor-svc-triptych__head {
	padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
	text-align: center;
}

.noor-svc-triptych__head .noor-eyebrow {
	color: var(--accent);
}

.noor-svc-triptych__title {
	font-family: var(--font-display);
	font-size: clamp(2.1rem, 5vw, 3.4rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
	margin: 0.4rem auto 0.9rem;
	max-width: 16ch;
	color: #0f172a;
}

.noor-svc-triptych__title span {
	display: block;
	color: var(--accent);
}

.noor-svc-triptych__lead {
	margin: 0 auto;
	max-width: 52ch;
	color: var(--muted, #64748b);
	line-height: 1.6;
}

.noor-svc-triptych__panels {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	min-height: min(68vh, 620px);
}

.noor-svc-triptych__panel {
	position: relative;
	overflow: hidden;
	min-height: 420px;
	isolation: isolate;
}

.noor-svc-triptych__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.04);
	transition: transform 0.7s ease;
	z-index: 0;
}

.noor-svc-triptych__panel:hover .noor-svc-triptych__bg {
	transform: scale(1.1);
}

.noor-svc-triptych__veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.82) 78%);
	transition: background 0.4s ease;
}

.noor-svc-triptych__panel:hover .noor-svc-triptych__veil {
	background: linear-gradient(180deg, rgba(235, 63, 75, 0.18) 0%, rgba(0, 0, 0, 0.88) 80%);
}

.noor-svc-triptych__content {
	position: absolute;
	inset: auto 0 0;
	z-index: 2;
	padding: 1.75rem 1.5rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.noor-svc-triptych__num {
	font-family: var(--font-display);
	font-size: 2.4rem;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.18);
	line-height: 1;
}

.noor-svc-triptych__content h3 {
	margin: 0;
	font-size: clamp(1.35rem, 2vw, 1.7rem);
	color: var(--accent);
}

.noor-svc-triptych__content p {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.92rem;
	line-height: 1.55;
	max-width: 34ch;
}

.noor-svc-triptych__content a {
	margin-top: 0.45rem;
	font-weight: 700;
	color: #fff;
	width: fit-content;
	border-bottom: 2px solid var(--accent);
	padding-bottom: 0.15rem;
}

@media (max-width: 900px) {
	.noor-svc-triptych__panels {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.noor-svc-triptych__panel {
		min-height: 340px;
	}
}

/* ========== What We Offer — Orbital Stack ========== */
.noor-services-layout--orbital {
	position: relative;
	padding: clamp(3.5rem, 7vw, 5.75rem) 0;
	background: linear-gradient(165deg, #f7f8fa 0%, #eef1f5 45%, #f9fafb 100%);
	overflow: hidden;
}

.noor-svc-orbital__ring {
	position: absolute;
	width: min(720px, 90vw);
	height: min(720px, 90vw);
	border-radius: 50%;
	border: 1px dashed rgba(235, 63, 75, 0.22);
	left: 50%;
	top: 12%;
	transform: translateX(-50%);
	pointer-events: none;
}

.noor-svc-orbital__ring::before {
	content: "";
	position: absolute;
	inset: 12%;
	border-radius: 50%;
	border: 1px solid rgba(15, 23, 42, 0.06);
}

.noor-svc-orbital__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(1.75rem, 4vw, 3rem);
	align-items: center;
}

.noor-svc-orbital__head h2 {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
	margin: 0.35rem 0 0.9rem;
}

.noor-svc-orbital__accent {
	display: block;
	color: var(--accent);
}

.noor-svc-orbital__lead {
	margin: 0 0 1.35rem;
	color: var(--text-muted);
	line-height: 1.65;
	max-width: 38ch;
}

.noor-svc-orbital__stat {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 0.95rem 1.1rem;
	background: #0a0a0a;
	color: #fff;
	width: fit-content;
	border-radius: 14px;
}

.noor-svc-orbital__stat strong {
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--accent);
	line-height: 1;
}

.noor-svc-orbital__stat span {
	display: block;
	font-weight: 700;
	font-size: 0.9rem;
}

.noor-svc-orbital__stat small {
	display: block;
	opacity: 0.6;
	font-size: 0.75rem;
}

.noor-svc-orbital__stack {
	display: grid;
	gap: 1rem;
}

.noor-svc-orbital__card {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 1.1rem;
	padding: 0.85rem;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(15, 23, 42, 0.08);
	backdrop-filter: blur(10px);
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.noor-svc-orbital__card:hover {
	transform: translateX(6px);
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.noor-svc-orbital__media {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: #111;
}

.noor-svc-orbital__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.noor-svc-orbital__media span {
	position: absolute;
	left: 0.55rem;
	bottom: 0.55rem;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.85rem;
	color: #fff;
	background: var(--accent);
	padding: 0.25rem 0.45rem;
}

.noor-svc-orbital__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.45rem;
	padding-right: 0.4rem;
}

.noor-svc-orbital__body h3 {
	margin: 0;
	font-size: 1.15rem;
}

.noor-svc-orbital__body p {
	margin: 0;
	color: var(--text-muted);
	font-size: 0.9rem;
	line-height: 1.5;
}

.noor-svc-orbital__body .btn {
	width: fit-content;
	margin-top: 0.25rem;
}

@media (max-width: 900px) {
	.noor-svc-orbital__inner {
		grid-template-columns: 1fr;
	}

	.noor-svc-orbital__card {
		grid-template-columns: 110px minmax(0, 1fr);
	}
}

/* ========== Equipment page — Gallery tiles ========== */
.noor-eq-layout--gallery {
	padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3.5rem, 6vw, 5rem);
	background: linear-gradient(180deg, #f7f8fa, #eef0f3);
}

.noor-eq-gallery__tabs,
.noor-eq-steel__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-bottom: 1.75rem;
}

.noor-eq-gallery__tab,
.noor-eq-steel__tab {
	padding: 0.45rem 0.95rem;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 600;
	background: rgba(15, 23, 42, 0.06);
	color: var(--text-muted);
}

.noor-eq-gallery__tab.is-active,
.noor-eq-steel__tab.is-active {
	background: #0a0a0a;
	color: #fff;
}

.noor-eq-gallery__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 1rem;
}

.noor-eq-gallery__card {
	grid-column: span 4;
	min-height: 280px;
	border-radius: 18px;
	overflow: hidden;
	position: relative;
	background: #111;
}

.noor-eq-gallery__card--wide {
	grid-column: span 8;
	min-height: 340px;
}

.noor-eq-gallery__card a {
	display: block;
	height: 100%;
	color: #fff;
}

.noor-eq-gallery__card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.65s ease;
}

.noor-eq-gallery__card:hover img {
	transform: scale(1.08);
}

.noor-eq-gallery__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.35rem;
	background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.82) 100%);
	gap: 0.35rem;
}

.noor-eq-gallery__num {
	font-family: var(--font-display);
	font-size: 1.8rem;
	font-weight: 800;
	opacity: 0.35;
	line-height: 1;
}

.noor-eq-gallery__overlay h3 {
	margin: 0;
	font-size: 1.2rem;
}

.noor-eq-gallery__overlay p {
	margin: 0;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.72);
	max-width: 42ch;
	line-height: 1.45;
}

.noor-eq-gallery__overlay em {
	font-style: normal;
	font-weight: 700;
	font-size: 0.82rem;
	color: var(--accent);
	margin-top: 0.25rem;
}

@media (max-width: 960px) {
	.noor-eq-gallery__card,
	.noor-eq-gallery__card--wide {
		grid-column: span 6;
		min-height: 260px;
	}
}

@media (max-width: 640px) {
	.noor-eq-gallery__card,
	.noor-eq-gallery__card--wide {
		grid-column: span 12;
	}
}

/* ========== Equipment page — Steel catalog ========== */
.noor-eq-layout--steel {
	padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3.5rem, 6vw, 5rem);
	background: #0b0b0e;
	color: #fff;
}

.noor-eq-steel__tab {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.65);
}

.noor-eq-steel__tab.is-active {
	background: var(--accent);
	color: #fff;
}

.noor-eq-steel__list {
	display: grid;
	gap: 0.85rem;
}

.noor-eq-steel__row {
	display: grid;
	grid-template-columns: 3.5rem 170px minmax(0, 1fr) auto;
	gap: 1.15rem;
	align-items: center;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
	transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.noor-eq-steel__row:hover {
	border-color: rgba(235, 63, 75, 0.45);
	transform: translateX(4px);
	background: linear-gradient(90deg, rgba(235, 63, 75, 0.12), rgba(255, 255, 255, 0.03));
}

.noor-eq-steel__index {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.22);
}

.noor-eq-steel__media {
	margin: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #151515;
}

.noor-eq-steel__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.noor-eq-steel__row:hover .noor-eq-steel__media img {
	transform: scale(1.05);
}

.noor-eq-steel__copy h3 {
	margin: 0 0 0.35rem;
	font-size: 1.15rem;
}

.noor-eq-steel__copy p {
	margin: 0;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.9rem;
	line-height: 1.5;
}

.noor-eq-steel__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.7rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	font-weight: 700;
	font-size: 0.82rem;
	white-space: nowrap;
	transition: background 0.25s ease, border-color 0.25s ease;
}

.noor-eq-steel__cta:hover {
	background: var(--accent);
	border-color: var(--accent);
}

@media (max-width: 900px) {
	.noor-eq-steel__row {
		grid-template-columns: 2.5rem 110px minmax(0, 1fr);
	}

	.noor-eq-steel__cta {
		grid-column: 2 / -1;
		justify-self: start;
	}
}

@media (max-width: 560px) {
	.noor-eq-steel__row {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.noor-eq-steel__cta {
		grid-column: auto;
	}
}
