/*
Theme Name: SportsInn Academy
Theme URI: http://localhost/wordpress/
Author: Codex
Description: Custom one-page shooting academy theme inspired by the SportsInn hero reference.
Version: 1.0.3
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: sportsinn-academy
*/

:root {
	--bg: #020506;
	--panel: #080d0f;
	--panel-2: #10161a;
	--line: rgba(255, 255, 255, 0.14);
	--muted: #aeb5bb;
	--text: #ffffff;
	--gold: #ffc400;
	--gold-2: #f2a900;
	--shadow: rgba(255, 196, 0, 0.25);
	--max: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: "Arial Narrow", "Roboto Condensed", Impact, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

.site-shell {
	min-height: 100vh;
	background:
		radial-gradient(circle at 68% 20%, rgba(255, 168, 0, 0.18), transparent 28%),
		linear-gradient(90deg, rgba(2, 5, 6, 0.98) 0%, rgba(5, 9, 11, 0.9) 42%, rgba(6, 9, 10, 0.98) 100%);
	overflow: hidden;
}

.site-header {
	position: relative;
	z-index: 5;
	max-width: var(--max);
	margin: 0 auto;
	padding: 15px 5px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 13px;
}

/* Mobile specific styles */
.hamburger {
    display: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-left: 24px;
    position: relative;
    z-index: 1001;
}

.hamburger-box {
    width: 24px;
    height: 18px;
    position: relative;
    display: block;
}

.hamburger-inner {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 -8px var(--gold), 0 8px var(--gold);
}
.desktop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
}

.mobile-header {
  display: none;
}

.mobile-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.6);
	z-index: 4;
}
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  max-width: 80%;
  height: 100vh;
  background: var(--panel);
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  padding: 70px 20px 20px;
  box-shadow: -2px 0 8px rgba(0,0,0,0.5);
  overflow-y: auto;
  z-index: 5;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-overlay.open {
	display: block;
}
.mobile-nav a {
    display: block;
    width: 100%;
    padding: 12px 0;
    color: var(--gold);
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: color 0.2s ease;
    position: relative;
    text-decoration: none;
}

.mobile-nav a:hover {
    color: var(--gold-2);
}

.mobile-nav a:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}
.mobile-nav .book-appointment-mobile {
	margin-top: 20px;
	width: 100%;
	text-align: center;
}
.mobile-nav .mobile-nav-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	font-size: 28px;
	color: var(--text);
	cursor: pointer;
}



.brand {
    display: flex;
    align-items: center;
    max-height: 50px;
    width: auto;
    flex-shrink: 0;
    margin-right: 24px;
}

.brand img {
    max-height: 50px;
    width: auto;
    height: auto;
}

.target-icon {
	position: relative;
	width: 58px;
	margin-left: 80px;
	height: 58px;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	margin-bottom: -30px;
	background:
		radial-gradient(circle, var(--gold) 0 8%, transparent 9% 100%),
		repeating-radial-gradient(circle, transparent 0 8px, rgba(255, 255, 255, 0.42) 9px 10px, transparent 11px 16px);
}

.target-icon::before,
.target-icon::after {
	content: "";
	position: absolute;
	background: rgba(255, 196, 0, 0.86);
}

.target-icon::before {
	top: -9px;
	bottom: -9px;
	left: 50%;
	width: 2px;
	transform: translateX(-50%);
}

.target-icon::after {
	left: -9px;
	right: -9px;
	top: 50%;
	height: 2px;
	transform: translateY(-50%);
}

.brand img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.main-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(16px, 2.55vw, 34px);
	flex: 1;
}

.main-nav a {
	position: relative;
	color: #efefef;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	white-space: nowrap;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.main-nav a.active,
.main-nav a:hover {
	color: var(--gold);
}

.main-nav a.active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -14px;
	height: 3px;
	background: var(--gold);
	box-shadow: 0 0 16px var(--shadow);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	padding: 0 18px;
	border: 2px solid var(--gold);
	border-radius: 6px;
	font-size: 16px;
	font-weight: 800;
	text-transform: uppercase;
	white-space: nowrap;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header>.btn {
	min-height: 52px;
	padding: 0 17px;
	font-size: 13px;
}

.btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35), 0 0 24px var(--shadow);
}

.btn-primary {
	background: linear-gradient(180deg, var(--gold), var(--gold-2));
	color: #111;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.btn-outline {
	background: rgba(6, 8, 10, 0.62);
	color: #f4f6f7;
}

.calendar-icon {
	position: relative;
	width: 21px;
	height: 22px;
	border: 2px solid currentColor;
	border-radius: 3px;
}

.calendar-icon::before {
	content: "";
	position: absolute;
	left: 3px;
	right: 3px;
	top: 5px;
	height: 2px;
	background: currentColor;
	box-shadow: 0 5px 0 currentColor, 0 10px 0 currentColor;
}

.hero {
	position: relative;
	width: 100%;
	max-width: none;
	min-height: 700px;
	margin: -60px auto 0;
	padding: 50px;
	display: grid;
	grid-template-columns: minmax(420px, 520px) minmax(380px, 1fr) 150px;
	column-gap: clamp(12px, 2vw, 32px);
	align-items: center;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 64px 20px 90px 190px;
	background:
		radial-gradient(circle at 58% 32%, rgba(255, 196, 0, 0.16), transparent 9%),
		radial-gradient(circle at 62% 40%, rgba(255, 255, 255, 0.12), transparent 2px),
		radial-gradient(circle at 70% 23%, rgba(255, 196, 0, 0.12), transparent 2px),
		linear-gradient(90deg, transparent, rgba(16, 19, 21, 0.58) 35%, rgba(2, 5, 6, 0.15) 100%);
	filter: blur(0.1px);
	pointer-events: none;
}

.hero-copy {
	position: relative;
	z-index: 3;
	align-self: start;
	padding-top: 66px;
}

.eyebrow {
	margin: 0;
	color: var(--gold);
	font-size: clamp(22px, 2vw, 27px);
	font-weight: 950;
	text-transform: uppercase;
}

.hero h1 {
	margin: 0;
	font-size: clamp(42px, 5.2vw, 64px);
	line-height: 0.93;
	font-weight: 950;
	text-transform: uppercase;
	transform: scaleX(0.82);
	transform-origin: left center;
	text-shadow: 0 3px 22px rgba(0, 0, 0, 0.72);
}

.hero h1 span {
	display: block;
	color: var(--gold);
}

.hero-copy p {
	max-width: 480px;
	margin: 17px 10px 20px;
	color: #d7dcdf;
	font-family: "Segoe UI", Arial, sans-serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.45;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9);
}

.hero-actions {
	display: flex;
	flex-wrap: nowrap;
	margin-top: 25px;
	gap: 15px;
}

.hero-actions .btn {
	padding: 0 15px;
	font-size: 15px;
}

.hero-visual {
	position: relative;
	z-index: 2;
	align-self: end;
	height: 450px;
	margin: 22px -62px 66px -86px;
	pointer-events: auto;
}

/* Play button overlay */
.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: rgba(0, 0, 0, 0.7);
	border: 2px solid #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	cursor: pointer;
	transition: background 0.3s ease;
}

.play-button:hover {
	background: rgba(0, 0, 0, 0.9);
}

.play-button svg {
	fill: #fff;
	width: 40px;
	height: 40px;
}

.hero-visual img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
	filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.72));
}

.right-callout {
	position: relative;
	z-index: 3;
	align-self: start;
	margin-top: 138px;
	min-height: 258px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding-left: 45px;
	padding-top: 30px;
	padding-bottom: 20px;
	border-left: 2px solid rgba(255, 196, 0, 0.62);
	gap: 55px;
}

.right-callout::before,
.right-callout::after {
	content: "";
	position: absolute;
	left: 45px;
	width: 30px;
	height: 4px;
	background: var(--gold);
}

.right-callout::before {
	top: 10px;
}

.right-callout::after {
	top: 145px;
}

.right-callout .target-icon {
	position: absolute;
	left: -31px;
	bottom: -15px;
}

.callout-text {
	width: 140px;
	font-size: 22px;
	font-weight: 950;
	line-height: 1.1;
	text-transform: uppercase;
}

.callout-text span {
	color: var(--gold);
}

.stats {
	position: absolute;
	z-index: 4;
	left: clamp(28px, 5vw, 72px);
	right: clamp(28px, 5vw, 72px);
	bottom: -10px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 2px solid rgba(255, 255, 255, 0.16);
	border-radius: 7px;
	background: rgba(8, 12, 14, 0.82);
	backdrop-filter: blur(8px);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.stat {
	position: relative;
	display: grid;
	grid-template-columns: 60px 1fr;
	align-items: center;
	min-height: 96px;
	padding: 16px 12px;
	gap: 8px;
}

.stat+.stat::before {
	content: "";
	position: absolute;
	left: 0;
	top: 20px;
	bottom: 20px;
	width: 1px;
	background: rgba(255, 255, 255, 0.12);
}

.stat-icon {
	display: block;
	width: 50px;
	height: 50px;
	margin: 0 auto;
	object-fit: contain;
	filter: drop-shadow(0 0 10px rgba(255, 196, 0, 0.12));
}

.stat-number {
	color: var(--gold);
	font-size: clamp(16px, 1.6vw, 24px);
	font-weight: 950;
	line-height: 1.1;
	text-transform: uppercase;
	display: block;
}

.stat-label {
	margin-top: 4px;
	color: #e6e9eb;
	font-size: clamp(10px, 1vw, 12px);
	font-weight: 950;
	line-height: 1.2;
	text-transform: uppercase;
	display: block;
}

.about-section {
	margin-top: 20px;
	position: relative;
	display: grid;
	grid-template-columns: minmax(340px, 38%) minmax(560px, 1fr);
	gap: clamp(50px, 8vw, 96px);
	align-items: center;
	width: 100%;
	padding: 30px clamp(20px, 4vw, 48px) 34px;
	background: #05090a;
}

.about-copy {
	max-width: 520px;
}

.about-copy h2 {
	position: relative;
	margin: 0 0 38px;
	color: #f7f7f7;
	font-size: clamp(30px, 2.5vw, 38px);
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.about-copy h2 span {
	color: var(--gold);
}

.about-copy h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -18px;
	width: 58px;
	height: 3px;
	background: var(--gold);
	box-shadow: 0 0 14px var(--shadow);
}

.about-copy p {
	margin: 0 0 22px;
	color: #d6dcdf;
	font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.65;
}

.about-link {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
	min-width: 178px;
	min-height: 47px;
	padding: 0 18px 0 21px;
	border: 2px solid rgba(255, 196, 0, 0.72);
	border-radius: 5px;
	background: rgba(6, 8, 10, 0.86);
	color: #f7f7f7;
	font-size: 17px;
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 18px rgba(255, 196, 0, 0.08);
}

.about-link span {
	color: var(--gold);
	font-size: 30px;
	line-height: 0;
}

.about-media {
	position: relative;
	min-height: 278px;
}

.about-media::before {
	content: "";
	position: absolute;
	inset: 25px 13px -15px -28px;
	border: 2px solid rgba(255, 196, 0, 0.68);
	border-radius: 23px;
	transform: skewX(-12deg);
	pointer-events: none;
}

.about-media img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 278px;
	object-fit: cover;
	object-position: center;
	border-radius: 12px;
	box-shadow: 0 24px 46px rgba(0, 0, 0, 0.42);
	clip-path: polygon(6.5% 0, 100% 0, 100% 100%, 0 100%);
}

.programs-section {
	position: relative;
	margin-top: 30px;
	width: 100%;
	padding: 14px 50px 28px;
	background: #05090a;
}

.programs-section h2 {
	position: relative;
	margin: 0 auto 80px;
	color: #f7f7f7;
	font-size: clamp(28px, 2.8vw, 39px);
	font-weight: 950;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.programs-section h2 span {
	color: var(--gold);
}

.programs-section h2::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -12px;
	width: 150px;
	height: 3px;
	background: var(--gold);
	transform: translateX(-50%);
	box-shadow: 0 0 14px var(--shadow);
}

.program-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 19px;
}

.program-card {
	position: relative;
	min-height: 260px;
	overflow: visible;
	border: 2px solid rgba(255, 196, 0, 0.58);
	border-radius: 8px;
	background: #080d0f;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 18px 34px rgba(0, 0, 0, 0.28);
}

.program-card>img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px;
	opacity: 0.48;
}

.program-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 6px;
	background: linear-gradient(180deg, rgba(2, 5, 6, 0.2) 0%, rgba(3, 5, 7, 0.84) 54%, rgba(2, 4, 5, 0.96) 100%);
}

.program-icon {
	position: absolute;
	z-index: 3;
	top: -25px;
	left: 50%;
	width: 58px;
	height: 58px;
	border: 2px solid rgba(255, 179, 0, 0.95);
	border-radius: 50%;
	background: linear-gradient(180deg, var(--gold), var(--gold-2));
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.38);
	transform: translateX(-50%);
}

.program-icon::before,
.program-icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.program-icon.target-icon {
	width: 58px;
	height: 58px;
	border-color: rgba(255, 179, 0, 0.95);
	background:
		radial-gradient(circle, #111 0 6%, transparent 7% 100%),
		repeating-radial-gradient(circle, transparent 0 7px, #111 8px 9px, transparent 10px 14px),
		linear-gradient(180deg, var(--gold), var(--gold-2));
}

.program-icon.target-icon::before {
	width: 2px;
	height: 34px;
	background: #111;
}

.program-icon.target-icon::after {
	width: 34px;
	height: 2px;
	background: #111;
}

.pistol-icon::before {
	width: 30px;
	height: 15px;
	border-radius: 4px 11px 4px 4px;
	background: #111;
}

.pistol-icon::after {
	width: 9px;
	height: 18px;
	margin: 9px 0 0 -5px;
	border-radius: 2px;
	background: #111;
	transform: translate(-50%, -50%) rotate(13deg);
}

.coach-icon::before {
	width: 14px;
	height: 14px;
	margin-top: -10px;
	border-radius: 50%;
	background: #111;
}

.coach-icon::after {
	width: 28px;
	height: 24px;
	margin-top: 9px;
	border: 3px solid #111;
	border-radius: 14px 14px 4px 4px;
}

.team-icon::before {
	width: 13px;
	height: 13px;
	margin-top: -10px;
	border-radius: 50%;
	background: #111;
	box-shadow: -15px 8px 0 -1px #111, 15px 8px 0 -1px #111;
}

.team-icon::after {
	width: 34px;
	height: 18px;
	margin-top: 13px;
	border: 3px solid #111;
	border-radius: 18px 18px 4px 4px;
}

.program-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	min-height: 260px;
	padding: 84px 20px 16px;
	text-align: center;
}

.program-content h3 {
	margin: 0 0 12px;
	color: #f8f8f8;
	font-size: clamp(20px, 1.75vw, 26px);
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
}

.program-content p {
	max-width: 250px;
	min-height: 54px;
	margin: 0 0 18px;
	color: #e0e5e7;
	font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.55;
}

.program-content a {
	display: inline-flex;
	align-items: center;
	gap: 24px;
	color: var(--gold);
	font-size: 17px;
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
}

.program-content a span {
	font-size: 29px;
	line-height: 0;
}

.champions-section {
	position: relative;
	width: 100%;
	padding: 8px clamp(64px, 5vw, 86px) 18px;
	background: #05090a;
}

.champions-header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.champions-header h2 {
	position: relative;
	margin: 0;
	color: #f7f7f7;
	font-size: clamp(28px, 2.8vw, 38px);
	font-weight: 950;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.champions-header h2 span {
	color: var(--gold);
}

.champions-header h2::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -12px;
	width: 58px;
	height: 3px;
	background: var(--gold);
	transform: translateX(-50%);
	box-shadow: 0 0 14px var(--shadow);
}

.view-all-link {
	position: absolute;
	right: 0;
	top: 50%;
	display: inline-flex;
	align-items: center;
	gap: 18px;
	min-height: 40px;
	padding: 0 18px;
	border: 2px solid rgba(255, 196, 0, 0.68);
	border-radius: 4px;
	background: rgba(6, 8, 10, 0.86);
	color: #f7f7f7;
	font-size: 14px;
	font-weight: 950;
	text-transform: uppercase;
	transform: translateY(-50%);
}

.view-all-link span {
	color: var(--gold);
	font-size: 25px;
	line-height: 0;
}

.champions-track {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0 0 4px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	cursor: grab;
}

.champions-track::-webkit-scrollbar {
	display: none;
}

.champion-card {
	flex: 0 0 calc((100% - 40px) / 4.45);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 7px;
	background: rgba(8, 12, 14, 0.9);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
	scroll-snap-align: start;
}

.champion-card img {
	display: block;
	width: 100%;
	height: 133px;
	object-fit: cover;
	object-position: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.champion-card div {
	min-height: 66px;
	padding: 9px 10px 11px;
	text-align: center;
}

.champion-card h3 {
	margin: 0 0 7px;
	color: var(--gold);
	font-size: 17px;
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
}

.champion-card p {
	margin: 0;
	color: #e2e7e9;
	font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.25;
}

.champion-arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 36px;
	height: 58px;
	border: 0;
	background: transparent;
	color: var(--gold);
	font-size: 58px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-16%);
}

.champion-arrow-prev {
	left: 16px;
}

.champion-arrow-next {
	right: 16px;
}

.champion-dots {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 12px;
}

.champion-dots span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
}

.champion-dots .active {
	background: var(--gold);
}

.aim-cta {
	position: relative;
	display: grid;
	grid-template-columns: 300px minmax(420px, 1fr) 260px;
	align-items: center;
	gap: 26px;
	min-height: 134px;
	padding: 0 clamp(24px, 4vw, 58px);
	background: linear-gradient(180deg, #ffc400, #f4aa00);
	color: #070a0b;
	overflow: hidden;
}

.aim-cta-shooter {
	align-self: end;
	width: 300px;
	height: 134px;
	object-fit: cover;
	object-position: 48% 30%;
	mix-blend-mode: multiply;
	filter: contrast(1.15) saturate(0.95);
}

.aim-cta-copy h2 {
	margin: 0 0 8px;
	font-size: clamp(27px, 3vw, 40px);
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
}

.aim-cta-copy p {
	margin: 0;
	font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 15px;
	font-weight: 600;
}

.aim-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 66px;
	padding: 0 25px;
	border: 2px solid rgba(255, 196, 0, 0.15);
	border-radius: 6px;
	background: #080d0f;
	color: #f7f7f7;
	font-size: 19px;
	font-weight: 950;
	text-transform: uppercase;
	box-shadow: 0 12px 22px rgba(0, 0, 0, 0.3);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 1040px) {
	.desktop-header { display: none; }
	.mobile-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 80px;
		padding: 0 1rem;
		background: var(--bg);
		color: var(--gold);
		width: 100%;
	}
	.main-nav { display: none; }
	.hamburger { display: flex; }

	.site-header {
		flex-wrap: wrap;
	}

	.main-nav {
		order: 3;
		flex-basis: 100%;
		justify-content: flex-start;
		overflow-x: auto;
		padding: 10px 0;
	}

	.hero {
		grid-template-columns: minmax(310px, 0.95fr) minmax(280px, 1.05fr);
		column-gap: 16px;
		padding-top: 24px;
	}

	.right-callout {
		display: none;
	}

	.hero-visual {
		height: 360px;
		margin: 24px -50px 88px -96px;
	}

	.stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.stat:nth-child(3)::before {
		display: none;
	}

	.about-section {
		grid-template-columns: 1fr;
		gap: 34px;
		padding-top: 46px;
	}

	.about-copy {
		max-width: 620px;
	}

	.about-media {
		min-height: 260px;
	}

	.about-media img {
		height: 260px;
	}

	.program-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 42px;
	}

	.champions-section {
		padding-inline: 44px;
	}

	.champion-card {
		flex-basis: calc((100% - 20px) / 3);
	}

	.champion-card:nth-child(n+4) {
		display: block;
	}

	.view-all-link {
		position: static;
		transform: none;
	}

	.champions-header {
		justify-content: space-between;
	}

	.aim-cta {
		grid-template-columns: 190px 1fr;
		padding-block: 14px;
	}

	.aim-cta-button {
		grid-column: 2;
		justify-self: start;
		min-height: 52px;
	}

	.aim-cta-shooter {
		grid-row: span 2;
		width: 190px;
	}
}

@media (max-width: 760px) {
	.site-header {
		padding: 18px 18px 4px;
	}

	.brand {
		min-width: 220px;
		width: 220px;
	}

	.site-header>.btn {
		width: 100%;
	}

	.hero {
		min-height: auto;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		padding: 28px 18px 24px;
	}

	.hero-copy {
		order: 1;
	}

	.hero-visual {
		order: 2;
		height: 320px;
		margin: -8px -70px 16px -30px;
	}

	.stats {
		position: relative;
		order: 3;
		left: auto;
		right: auto;
		bottom: auto;
		margin-top: -44px;
		grid-template-columns: 1fr;
	}

	.stat {
		grid-template-columns: 64px 1fr;
		min-height: 82px;
	}

	.stat+.stat::before {
		left: 18px;
		right: 18px;
		top: 0;
		bottom: auto;
		width: auto;
		height: 1px;
	}

	.hero-actions .btn {
		flex: 1 1 210px;
	}

	.about-section {
		padding: 42px 18px 40px;
	}

	.about-copy h2 {
		font-size: 30px;
		margin-bottom: 34px;
	}

	.about-copy p {
		font-size: 14px;
		line-height: 1.7;
	}

	.about-media {
		min-height: 210px;
	}

	.about-media img {
		height: 210px;
		clip-path: none;
	}

	.about-media::before {
		inset: 12px 8px -10px -8px;
		transform: none;
	}

	.programs-section {
		padding: 38px 18px 34px;
	}

	.program-grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.program-card,
	.program-content {
		min-height: 250px;
	}

	.champions-section {
		padding: 36px 18px 18px;
	}

	.champions-header {
		display: grid;
		gap: 24px;
		justify-items: center;
	}

	.champions-carousel-wrapper {
		position: relative;
		width: 100%;
	}

	.champion-card {
		flex: 0 0 100%;
		scroll-snap-align: start;
	}

	.champion-card:nth-child(n+4) {
		display: block;
	}

	.champion-arrow {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		background: rgba(8, 13, 15, 0.85);
		border: 1px solid rgba(255, 196, 0, 0.35);
		color: var(--gold);
		font-size: 24px;
		border-radius: 50%;
		top: 50%;
		transform: translateY(-50%);
		z-index: 10;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.55);
		transition: background-color 0.2s ease, transform 0.2s ease;
	}

	.champion-arrow:active {
		background: var(--gold);
		color: #111;
		transform: translateY(-50%) scale(0.95);
	}

	.champion-arrow-prev {
		left: 8px;
	}

	.champion-arrow-next {
		right: 8px;
	}

	.champion-card img {
		height: 180px;
	}

	.aim-cta {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 20px 18px;
		text-align: center;
	}

	.aim-cta-shooter {
		display: none;
	}

	.aim-cta-button {
		grid-column: auto;
		justify-self: center;
	}

	/* Stack team layout vertically */
	.team-grid-layout,
	.team-grid-layout.team-grid-2col {
		grid-template-columns: 1fr !important;
		gap: 30px;
	}

	.team-horizontal-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 24px 16px;
	}

	.team-photo-circle {
		margin-bottom: 15px;
	}

	.team-info-side {
		align-items: center;
		width: 100%;
	}

	.team-info-side ul {
		margin: 12px auto 0 !important;
		max-width: 280px;
		text-align: left;
		padding-left: 20px;
	}
}

/* ==========================================================================
   SPORTSINN CUSTOM THEME COMPONENTS (ELEMENTOR & CPT COMPATIBLE)
   ========================================================================== */

/* 1. GLOBAL PREMIUM FOOTER */
.site-footer {
	background: #030607;
	border-top: 2px solid rgba(255, 196, 0, 0.18);
	padding: 80px 20px 30px;
	font-family: "Montserrat", system-ui, sans-serif;
}

.footer-grid {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
	gap: 40px;
}

.footer-col h3 {
	color: #ffffff;
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 25px;
	position: relative;
	letter-spacing: 0.5px;
}

.footer-col h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 35px;
	height: 2px;
	background: var(--gold);
}

.brand-col {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-logo {
	max-width: 200px;
	height: auto;
}

.footer-desc {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

.footer-socials {
	display: flex;
	gap: 12px;
	margin-top: 10px;
}

.social-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.03);
	color: #ffffff;
	transition: all 0.3s ease;
	position: relative;
}

.social-circle::before {
	font-family: system-ui, sans-serif;
	font-size: 14px;
	font-weight: bold;
}

.social-circle.fb::before {
	content: "f";
}

.social-circle.ig::before {
	content: "📸";
	font-size: 11px;
}

.social-circle.yt::before {
	content: "▶";
	font-size: 10px;
}

.social-circle.wa::before {
	content: "💬";
	font-size: 11px;
}

.social-circle:hover {
	border-color: var(--gold);
	background: var(--gold);
	color: #111111;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(255, 196, 0, 0.3);
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.footer-nav a {
	color: var(--muted);
	font-size: 14px;
	font-weight: 500;
	transition: all 0.25s ease;
}

.footer-nav a:hover {
	color: var(--gold);
	padding-left: 5px;
}

.footer-contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.4;
}

.footer-contact-list a {
	color: var(--muted);
	transition: color 0.25s ease;
}

.footer-contact-list a:hover {
	color: var(--gold);
}

.contact-icon-small {
	display: inline-block;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	position: relative;
	top: 2px;
}

.contact-icon-small.phone::before {
	content: "📞";
	font-size: 13px;
}

.contact-icon-small.mail::before {
	content: "✉️";
	font-size: 13px;
}

.contact-icon-small.pin::before {
	content: "📍";
	font-size: 13px;
}

.footer-bottom {
	max-width: var(--max);
	margin: 60px auto 0;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
	color: rgba(255, 255, 255, 0.4);
	font-size: 13px;
}

/* 2. MENTOR PROFILE COMPONENT */
.mentor-profile-section {
	max-width: var(--max);
	margin: 40px auto;
	padding: 0 20px;
	font-family: "Montserrat", sans-serif;
}

.mentor-main-grid {
	display: grid;
	grid-template-columns: 1.12fr 1.6fr 1.28fr;
	gap: 32px;
	align-items: stretch;
}

.mentor-frame-visual {
	position: relative;
	border: 1px solid rgba(255, 196, 0, 0.25);
	border-radius: 12px;
	overflow: hidden;
	background: #080d0f;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mentor-frame-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mentor-details-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.mentor-name-title {
	font-size: 32px;
	font-weight: 950;
	text-transform: uppercase;
	margin: 0 0 6px;
	letter-spacing: -0.5px;
	line-height: 1.1;
}

.mentor-name-title span {
	color: var(--gold);
}

.mentor-subtitle {
	color: #efefef;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 24px;
	letter-spacing: 0.5px;
}

.mentor-bio-text {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.65;
	margin: 0 0 35px;
	font-family: system-ui, sans-serif;
}

.mentor-stats-circles {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.mentor-circle-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
}

.circle-graphic {
	width: 66px;
	height: 66px;
	border-radius: 50%;
	border: 2px solid var(--gold);
	background: rgba(255, 196, 0, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	font-size: 15px;
	font-weight: 900;
	box-shadow: 0 0 15px rgba(255, 196, 0, 0.1);
}

.circle-graphic.font-heavy {
	font-size: 18px;
}

.circle-graphic.target-mini::before {
	content: "🎯";
	font-size: 26px;
}

.circle-graphic.coach-mini::before {
	content: "🎖️";
	font-size: 26px;
}

.circle-graphic.champions-mini::before {
	content: "🏆";
	font-size: 26px;
}

.circle-label {
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.2;
}

.expert-coaching-box {
	background: #080d0f;
	border: 1px solid rgba(255, 196, 0, 0.28);
	border-radius: 12px;
	padding: 30px;
	box-shadow: inset 0 0 15px rgba(255, 196, 0, 0.03), 0 15px 30px rgba(0, 0, 0, 0.4);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.expert-coaching-box h3 {
	color: var(--gold);
	font-size: 22px;
	font-weight: 900;
	text-transform: uppercase;
	margin: 0 0 14px;
	letter-spacing: 0.5px;
}

.expert-coaching-box .box-desc {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.5;
	margin: 0 0 20px;
}

.expert-coaching-box .box-desc span {
	color: #ffffff;
	font-weight: 700;
}

.coaching-checklist {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.coaching-checklist li {
	color: #efefef;
	font-size: 13px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
}

.coaching-checklist li::before {
	content: "✓";
	color: var(--gold);
	font-weight: 900;
	font-size: 15px;
	flex-shrink: 0;
}

/* 3. COACHES TEAM GRID */
.team-coaches-grid {
	max-width: var(--max);
	margin: 40px auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 0 20px;
}

.team-coach-card {
	background: #080d0f;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.team-coach-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 196, 0, 0.4);
	box-shadow: 0 15px 30px rgba(255, 196, 0, 0.1);
}

.coach-photo-wrapper {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.coach-photo-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.team-coach-card:hover .coach-photo-wrapper img {
	transform: scale(1.05);
}

.coach-info {
	padding: 20px;
	text-align: center;
}

.coach-info h3 {
	color: #ffffff;
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 4px;
}

.coach-role {
	color: var(--gold);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 12px;
	letter-spacing: 0.5px;
}

.coach-description {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.5;
	margin: 0;
	font-family: system-ui, sans-serif;
}

/* 4. BUY & SELL MARKETPLACE */
.market-catalog-container {
	max-width: var(--max);
	margin: 40px auto;
	padding: 0 20px;
	font-family: "Montserrat", sans-serif;
}

.market-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid rgba(255, 255, 255, 0.08);
	padding-bottom: 20px;
	margin-bottom: 40px;
	gap: 20px;
	flex-wrap: wrap;
}

.market-filters-tabs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.filter-tab-btn {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 4px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 8px 16px;
	cursor: pointer;
	transition: all 0.25s ease;
}

.filter-tab-btn:hover,
.filter-tab-btn.active {
	background: var(--gold);
	border-color: var(--gold);
	color: #111111;
	font-weight: 800;
	box-shadow: 0 4px 12px rgba(255, 196, 0, 0.25);
}

.market-sort-selector select {
	background: #080d0f;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 4px;
	color: #ffffff;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	outline: none;
	cursor: pointer;
}

.products-grid-catalog {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.product-item-card {
	background: #080d0f;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.product-item-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 196, 0, 0.35);
	box-shadow: 0 10px 25px rgba(255, 196, 0, 0.08);
}

.product-thumbnail {
	position: relative;
	height: 200px;
	background: #11171a;
	overflow: hidden;
}

.product-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 800;
	border-radius: 3px;
	text-transform: uppercase;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.product-badge.new {
	background: var(--gold);
	color: #111111;
}

.product-badge.used {
	background: #737b80;
	color: #ffffff;
}

.product-info-block {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
}

.product-info-block h3 {
	color: #ffffff;
	font-size: 16px;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 10px;
	min-height: 38px;
	display: flex;
	align-items: center;
}

.product-price-label {
	color: var(--gold);
	font-size: 20px;
	font-weight: 900;
	margin: 0 0 18px;
}

.btn-view-details {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 196, 0, 0.4);
	border-radius: 4px;
	color: var(--gold);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	transition: all 0.25s ease;
}

.btn-view-details:hover {
	background: var(--gold);
	color: #111111;
	font-weight: 800;
}

/* 5. HOW IT WORKS & WANT TO SELL Split */
.how-it-works-marketplace {
	max-width: var(--max);
	margin: 60px auto;
	padding: 0 20px;
	font-family: "Montserrat", sans-serif;
}

.marketplace-grid-split {
	display: grid;
	grid-template-columns: 2.6fr 1.4fr;
	gap: 40px;
	align-items: stretch;
}

.how-steps-column {
	display: flex;
	flex-direction: column;
}

.sub-header-line {
	font-size: 28px;
	font-weight: 950;
	text-transform: uppercase;
	margin: 0 0 35px;
	position: relative;
}

.sub-header-line span {
	color: var(--gold);
}

.sub-header-line::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 45px;
	height: 3px;
	background: var(--gold);
}

.steps-flow-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}

.step-card-box {
	background: #080d0f;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	padding: 20px 15px;
	position: relative;
	text-align: center;
}

.step-num {
	display: block;
	color: rgba(255, 196, 0, 0.12);
	font-size: 48px;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 8px;
}

.step-card-box h4 {
	color: var(--gold);
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 8px;
}

.step-card-box p {
	color: var(--muted);
	font-size: 12px;
	line-height: 1.5;
	margin: 0;
	font-family: system-ui, sans-serif;
}

.marketplace-sell-callout {
	background: #080d0f;
	border: 1px solid rgba(255, 196, 0, 0.3);
	border-radius: 8px;
	padding: 30px;
	box-shadow: inset 0 0 15px rgba(255, 196, 0, 0.02), 0 15px 30px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.marketplace-sell-callout h3 {
	font-size: 22px;
	font-weight: 900;
	text-transform: uppercase;
	margin: 0 0 12px;
}

.marketplace-sell-callout h3 span {
	color: var(--gold);
}

.marketplace-sell-callout p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.5;
	margin: 0 0 20px;
}

.sell-bullets {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sell-bullets li {
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 10px;
}

.sell-bullets li::before {
	content: "✓";
	color: var(--gold);
	font-weight: 900;
}

.btn-sell-action {
	width: 100%;
}

/* 6. CREDENTIALS BADGE ROW */
.credentials-badge-row {
	max-width: var(--max);
	margin: 40px auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	font-family: "Montserrat", sans-serif;
}

.cred-card {
	background: rgba(8, 13, 15, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 24px 16px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	transition: all 0.3s ease;
}

.cred-card:hover {
	border-color: rgba(255, 196, 0, 0.3);
	transform: translateY(-3px);
}

.cred-badge-graphic {
	width: 50px;
	height: 50px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.cred-badge-graphic.certified::before {
	content: "📜";
	font-size: 32px;
}

.cred-badge-graphic.coaching::before {
	content: "🌐";
	font-size: 32px;
}

.cred-badge-graphic.shooters::before {
	content: "👥";
	font-size: 32px;
}

.cred-badge-graphic.champions::before {
	content: "📈";
	font-size: 32px;
}

.cred-badge-graphic.discipline::before {
	content: "🛡️";
	font-size: 32px;
}

.cred-card h4 {
	color: #efefef;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.4;
	margin: 0;
}

/* 7. ELEMENTOR-OPTIMIZED SCROLL FIX */
.elementor-container-page {
	width: 100%;
}

/* 8. METFORM-COMPATIBLE STYLING */
.mf-input,
.mf-textarea,
.mf-select {
	background-color: #0c1214 !important;
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	color: #ffffff !important;
	font-family: "Montserrat", sans-serif !important;
	border-radius: 4px !important;
	transition: all 0.3s ease !important;
}

.mf-input:focus,
.mf-textarea:focus,
.mf-select:focus {
	border-color: var(--gold) !important;
	box-shadow: 0 0 10px rgba(255, 196, 0, 0.25) !important;
	outline: none !important;
}

.mf-btn-submit {
	background: linear-gradient(180deg, var(--gold), var(--gold-2)) !important;
	color: #111111 !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	border-radius: 4px !important;
	transition: all 0.3s ease !important;
}

.mf-btn-submit:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 20px rgba(255, 196, 0, 0.35) !important;
}

/* RESPONSIVE LAYOUTS FOR NEW COMPONENTS */
@media (max-width: 1040px) {
	.mentor-main-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.mentor-frame-visual {
		height: 400px;
	}

	.team-coaches-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.products-grid-catalog {
		grid-template-columns: repeat(2, 1fr);
	}

	.marketplace-grid-split {
		grid-template-columns: 1fr;
	}

	.credentials-badge-row {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 760px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.mentor-stats-circles {
		grid-template-columns: repeat(2, 1fr);
	}

	.team-coaches-grid {
		grid-template-columns: 1fr;
	}

	.products-grid-catalog {
		grid-template-columns: 1fr;
	}

	.steps-flow-row {
		grid-template-columns: 1fr;
	}

	.credentials-badge-row {
		grid-template-columns: 1fr;
	}
}




/* -------------------------------------------------
   Elementor editor – full‑width & overflow fix (override any theme constraints)
   ------------------------------------------------- */
.elementor-editor-active .site-content,
.elementor-editor-active .site-content .container,
.elementor-editor-active .site-content .site-main,
.elementor-editor-active .container,
.elementor-editor-active .site-main {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	box-sizing: border-box !important;
	overflow: visible !important;
}

/* Ensure child elements don’t inherit hidden overflow */
.elementor-editor-active .site-content *,
.elementor-editor-active .site-main * {
	overflow: visible !important;
}


/* -------------------------------------------------
   SPORTSINN HOMEPAGE REBUILD PREMIUM STYLES
   ------------------------------------------------- */

.homepage-wrapper {
	background: #020506;
	color: #ffffff;
	font-family: "Montserrat", sans-serif;
	overflow: hidden;
}

/* Heading Separators with Gold Crosshair Star & Line */
.heading-separator {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 20px 0 30px;
}

.heading-separator.center-align {
	justify-content: center;
	margin: 20px auto 40px;
}

.heading-separator.left-align {
	justify-content: flex-start;
	margin: 20px 0 35px;
}

.gold-crosshair-star {
	position: relative;
	width: 20px;
	height: 20px;
	border: 1px solid var(--gold);
	border-radius: 50%;
	flex-shrink: 0;
	background: radial-gradient(circle, var(--gold) 0 15%, transparent 20% 100%);
}

.gold-crosshair-star::before,
.gold-crosshair-star::after {
	content: "";
	position: absolute;
	background: var(--gold);
}

.gold-crosshair-star::before {
	top: -4px;
	bottom: -4px;
	left: 50%;
	width: 1px;
	transform: translateX(-50%);
}

.gold-crosshair-star::after {
	left: -4px;
	right: -4px;
	top: 50%;
	height: 1px;
	transform: translateY(-50%);
}

.gold-line {
	flex-grow: 1;
	height: 2px;
	background: linear-gradient(90deg, var(--gold) 0%, rgba(255, 196, 0, 0.1) 100%);
	max-width: 150px;
}

.heading-separator.center-align .gold-line {
	background: linear-gradient(90deg, rgba(255, 196, 0, 0.1) 0%, var(--gold) 50%, rgba(255, 196, 0, 0.1) 100%);
	max-width: 250px;
}

.heading-separator.left-align .gold-line {
	background: linear-gradient(90deg, var(--gold) 0%, rgba(255, 196, 0, 0.1) 100%);
	max-width: 150px;
}

.gold-text {
	color: var(--gold);
}

.section-title {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 900;
	text-transform: uppercase;
	margin: 0;
	line-height: 1.1;
	letter-spacing: -0.5px;
}

.section-title.center-align {
	text-align: center;
}

/* SECTION 1: HERO / ABOUT US */
.hero-section {
	position: relative;
	padding: 80px 20px;
	max-width: var(--max);
	margin: 0 auto;
}

.hero-container {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 40px;
	align-items: center;
}

.hero-content {
	z-index: 2;
}

.hero-title {
	font-size: clamp(56px, 6.5vw, 82px);
	font-weight: 950;
	line-height: 0.92;
	text-transform: uppercase;
	margin: 0;
	letter-spacing: -1.5px;
	color: #ffffff;
}

.hero-desc {
	font-size: 17px;
	line-height: 1.65;
	color: #d1d8dd;
	margin: 0;
	font-family: system-ui, -apple-system, sans-serif;
	max-width: 540px;
}

.hero-visual-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-skewed-bg {
	position: absolute;
	inset: 20px -10px -10px 40px;
	border: 3px solid var(--gold);
	transform: skewX(-12deg);
	z-index: 1;
	pointer-events: none;
	background: rgba(255, 196, 0, 0.02);
	box-shadow: 0 0 30px rgba(255, 196, 0, 0.05);
}

.hero-image {
	position: relative;
	z-index: 2;
	width: 100%;
	height: auto;
	max-height: 520px;
	object-fit: contain;
	filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

/* SECTION 2: WHY CHOOSE SPORTSINN */
.why-choose-section {
	background: #05090a;
	padding: 80px 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.why-choose-container {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 50px;
	align-items: center;
}

.section-title-skewed {
	font-size: clamp(30px, 3.5vw, 42px);
	font-weight: 900;
	text-transform: uppercase;
	margin: 0 0 20px;
	line-height: 1.1;
	letter-spacing: -0.5px;
}

.why-choose-intro {
	font-size: 15px;
	line-height: 1.65;
	color: #aeb5bb;
	margin: 0;
	font-family: system-ui, -apple-system, sans-serif;
}

.why-choose-right {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.why-col {
	position: relative;
	padding-left: 15px;
	border-left: 1px dashed rgba(255, 255, 255, 0.15);
}

.why-col:first-child {
	border-left: none;
	padding-left: 0;
}

.why-icon {
	color: var(--gold);
	width: 32px;
	height: 32px;
	margin-bottom: 15px;
}

.gold-svg {
	width: 100%;
	height: 100%;
}

.why-title {
	font-size: 14px;
	font-weight: 800;
	color: var(--gold);
	text-transform: uppercase;
	margin: 0 0 8px;
	letter-spacing: 0.5px;
}

.why-desc {
	font-size: 12px;
	line-height: 1.5;
	color: #d1d8dd;
	margin: 0;
	font-family: system-ui, -apple-system, sans-serif;
}

/* SECTION 3: STATS BAR */
.stats-bar-section {
	background: #020506;
	padding: 50px 20px;
	border-top: 1px solid rgba(255, 196, 0, 0.18);
	border-bottom: 1px solid rgba(255, 196, 0, 0.18);
}

.stats-bar-container {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.stats-item {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: center;
	position: relative;
}

.stats-item+.stats-item::before {
	content: "";
	position: absolute;
	left: -15px;
	top: 10%;
	bottom: 10%;
	width: 1px;
	background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.stats-icon-wrapper {
	width: 44px;
	height: 44px;
	color: var(--gold);
	flex-shrink: 0;
}

.stats-content {
	display: flex;
	flex-direction: column;
}

.stats-number {
	font-size: clamp(28px, 3vw, 36px);
	font-weight: 950;
	color: #ffffff;
	line-height: 1;
}

.stats-label {
	font-size: 11px;
	font-weight: 800;
	color: var(--gold);
	letter-spacing: 0.8px;
	margin-top: 4px;
}

/* SECTION 4: OUR JOURNEY */
.journey-section {
	padding: 80px 20px;
	max-width: var(--max);
	margin: 0 auto;
}

.journey-container {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 60px;
	align-items: center;
}

.journey-left {
	position: relative;
}

.journey-image-frame {
	position: relative;
	border-radius: 12px;
	overflow: visible;
}

.journey-image-frame::before {
	content: "";
	position: absolute;
	inset: 20px -20px -20px 20px;
	border: 2px solid var(--gold);
	border-radius: 12px;
	transform: skewX(-6deg);
	z-index: 1;
	pointer-events: none;
}

.journey-image {
	position: relative;
	z-index: 2;
	width: 100%;
	height: auto;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.journey-desc {
	font-size: 16px;
	line-height: 1.7;
	color: #d1d8dd;
	margin: 0;
	font-family: system-ui, -apple-system, sans-serif;
}

/* SECTION 5: OUR VALUES */
.values-section {
	background: #05090a;
	padding: 80px 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.values-container {
	max-width: var(--max);
	margin: 0 auto;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 40px;
}

.value-card {
	background: rgba(8, 13, 15, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 30px 20px;
	text-align: center;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.value-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 196, 0, 0.4);
	box-shadow: 0 12px 24px rgba(255, 196, 0, 0.05);
	background: rgba(8, 13, 15, 0.85);
}

.value-icon {
	width: 48px;
	height: 48px;
	color: var(--gold);
	margin-bottom: 20px;
}

.value-title {
	font-size: 18px;
	font-weight: 800;
	color: var(--gold);
	text-transform: uppercase;
	margin: 0 0 12px;
	letter-spacing: 0.5px;
}

.value-desc {
	font-size: 13px;
	line-height: 1.6;
	color: #d1d8dd;
	margin: 0;
	font-family: system-ui, -apple-system, sans-serif;
}

/* SECTION 6: OUR TEAM */
.team-section {
	padding: 80px 20px;
	max-width: var(--max);
	margin: 0 auto;
}

.team-container {
	max-width: var(--max);
	margin: 0 auto;
}

.team-grid-layout {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.team-grid-layout.team-grid-2col {
	grid-template-columns: repeat(2, 1fr);
}

.team-horizontal-card {
	background: rgba(8, 13, 15, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 20px;
	display: flex;
	gap: 15px;
	align-items: center;
	transition: all 0.3s ease;
	min-height: 140px;
}

.team-horizontal-card:hover {
	transform: translateY(-3px);
	border-color: rgba(255, 196, 0, 0.4);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.team-photo-circle {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: 2px solid var(--gold);
	overflow: hidden;
	flex-shrink: 0;
	box-shadow: 0 0 10px rgba(255, 196, 0, 0.2);
}

.team-photo-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-info-side {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.team-coach-name {
	font-size: 15px;
	font-weight: 800;
	color: var(--gold);
	margin: 0 0 2px;
	text-transform: uppercase;
}

.team-coach-role {
	font-size: 11px;
	font-weight: 700;
	color: #efefef;
	text-transform: uppercase;
	margin-bottom: 6px;
	letter-spacing: 0.5px;
}

.team-coach-desc {
	font-size: 11px;
	line-height: 1.4;
	color: #aeb5bb;
	margin: 0;
	font-family: system-ui, -apple-system, sans-serif;
}

/* SECTION 7: CTA BRUSH SECTION */
.cta-brush-section {
	background: linear-gradient(180deg, #ffc400, #f2a900);
	position: relative;
	overflow: hidden;
	padding: 30px 20px;
	margin-bottom: 0px;
}

.cta-brush-container {
	max-width: var(--max);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	position: relative;
	z-index: 2;
}

.cta-silhouette-wrapper {
	position: absolute;
	left: -50px;
	bottom: -40px;
	height: 180px;
	opacity: 0.18;
	pointer-events: none;
	z-index: 1;
}

.cta-shooter-silhouette {
	height: 100%;
	width: auto;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.cta-brush-content {
	flex-grow: 1;
	z-index: 2;
	padding-left: 80px;
	/* offset for silhouette spacing */
}

.cta-title {
	font-size: clamp(24px, 2.5vw, 36px);
	font-weight: 950;
	color: #020506;
	line-height: 1.05;
	margin: 0 0 5px;
	text-transform: uppercase;
	letter-spacing: -0.5px;
}

.cta-subtitle {
	font-size: 14px;
	font-weight: 700;
	color: #1a2226;
	margin: 0;
	font-family: system-ui, -apple-system, sans-serif;
}

.cta-btn-wrapper {
	z-index: 2;
	flex-shrink: 0;
}

.cta-appointment-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 52px;
	padding: 0 25px;
	border-radius: 4px;
	background: #020506;
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
	transition: all 0.25s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-appointment-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
	background: #0b0f11;
}

.calendar-icon-dark {
	position: relative;
	width: 16px;
	height: 16px;
	border: 2px solid currentColor;
	border-radius: 2px;
}

.calendar-icon-dark::before {
	content: "";
	position: absolute;
	left: 2px;
	right: 2px;
	top: 3px;
	height: 1px;
	background: currentColor;
	box-shadow: 0 4px 0 currentColor, 0 8px 0 currentColor;
}


/* -------------------------------------------------
   RESPONSIVE DESIGN BREAKPOINTS
   ------------------------------------------------- */

@media (max-width: 1040px) {
	.hero-container {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.hero-desc {
		margin: 0 auto;
	}

	.heading-separator {
		justify-content: center;
	}

	.heading-separator .gold-line {
		background: linear-gradient(90deg, rgba(255, 196, 0, 0.1) 0%, var(--gold) 50%, rgba(255, 196, 0, 0.1) 100%);
		max-width: 250px;
	}

	.hero-skewed-bg {
		inset: 15px -5px -5px 15px;
	}

	.why-choose-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.why-choose-right {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

	.why-col {
		border-left: none;
		border-top: 1px dashed rgba(255, 255, 255, 0.15);
		padding-left: 0;
		padding-top: 15px;
	}

	.why-col:first-child {
		border-top: none;
		padding-top: 0;
	}

	.stats-bar-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

	.stats-item+.stats-item::before {
		display: none;
	}

	.journey-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.journey-image-frame::before {
		inset: 15px -15px -15px 15px;
	}

	.values-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.team-grid-layout {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.cta-brush-container {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}

	.cta-brush-content {
		padding-left: 0;
	}

	.cta-silhouette-wrapper {
		left: 50%;
		transform: translateX(-50%);
		opacity: 0.08;
	}
}

@media (max-width: 640px) {
	.why-choose-right {
		grid-template-columns: 1fr;
	}

	.stats-bar-container {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.stats-item {
		display: grid;
		grid-template-columns: 50px 1fr;
		gap: 20px;
		align-items: center;
		justify-content: start;
		text-align: left;
		max-width: 320px;
		margin: 0 auto;
		width: 100%;
	}

	.stats-icon-wrapper {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 50px;
		height: 50px;
		flex-shrink: 0;
	}

	.stats-icon-wrapper svg {
		width: 100%;
		height: 100%;
	}

	.values-grid {
		grid-template-columns: 1fr;
	}

	.team-grid-layout,
	.team-grid-layout.team-grid-2col {
		grid-template-columns: 1fr !important;
	}
}


/* -------------------------------------------------
   SPORTSINN GALLERY PAGE REBUILD PREMIUM STYLES
   ------------------------------------------------- */

.gallery-page-wrapper {
	background: #020506;
	color: #ffffff;
	font-family: "Montserrat", sans-serif;
	overflow: hidden;
}

/* 1. GALLERY HERO */
.gallery-hero-section {
	position: relative;
	padding: 100px 20px 80px;
	max-width: var(--max);
	margin: 0 auto;
	overflow: hidden;
}

.gallery-hero-bg {
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
	height: 100%;
	opacity: 0.15;
	z-index: 1;
	pointer-events: none;
}

.gallery-hero-image-blur {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: blur(2px) contrast(1.1);
}

.gallery-hero-container {
	position: relative;
	z-index: 2;
}

.gallery-hero-content {
	max-width: 580px;
}

.gallery-hero-title {
	font-size: clamp(52px, 6vw, 76px);
	font-weight: 950;
	line-height: 0.95;
	text-transform: uppercase;
	margin: 0;
	letter-spacing: -1px;
}

.gallery-hero-desc {
	font-size: 16px;
	line-height: 1.65;
	color: #d1d8dd;
	margin: 0;
	font-family: system-ui, sans-serif;
}

/* 2. TAB FILTER BUTTONS */
.gallery-filter-section {
	padding: 20px 20px;
	background: #05090a;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-filter-container {
	max-width: var(--max);
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.gallery-filter-btn {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 4px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 10px 20px;
	cursor: pointer;
	transition: all 0.25s ease;
}

.gallery-filter-btn:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.gallery-filter-btn.active {
	background: var(--gold);
	border-color: var(--gold);
	color: #020506;
	font-weight: 800;
	box-shadow: 0 5px 15px rgba(255, 196, 0, 0.25);
}

/* 3. 12-CHAMPION GRID */
.gallery-grid-section {
	padding: 60px 20px;
	max-width: var(--max);
	margin: 0 auto;
}

.gallery-grid-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.gallery-item-card {
	position: relative;
	background: #080d0f;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	overflow: hidden;
	height: 0;
	padding-bottom: 122%;
	/* 1 / 0.82 non-collapsing aspect ratio fallback */
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-photo-wrapper {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.gallery-photo-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.5s ease;
}

.gallery-item-card:hover .gallery-photo-wrapper img {
	transform: scale(1.06);
}

.gallery-info-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(2, 5, 6, 0.85) 40%, rgba(2, 5, 6, 0.98) 100%);
	padding: 30px 15px 15px;
	text-align: center;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.gallery-champ-name {
	font-size: 16px;
	font-weight: 800;
	color: var(--gold);
	margin: 0 0 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.gallery-champ-achievement {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.gold-card-svg {
	width: 16px;
	height: 16px;
	color: var(--gold);
	flex-shrink: 0;
}

.achievement-text {
	font-size: 12px;
	color: #efefef;
	font-family: system-ui, sans-serif;
	line-height: 1.2;
}

/* 4. GALLERY BOTTOM STATS */
.gallery-stats-bar-section {
	background: #05090a;
	border-top: 1px solid rgba(255, 196, 0, 0.18);
	padding: 50px 20px;
}

.gallery-stats-bar-container {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.gallery-stats-item {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: center;
	position: relative;
}

.gallery-stats-item+.gallery-stats-item::before {
	content: "";
	position: absolute;
	left: -15px;
	top: 15%;
	bottom: 15%;
	width: 1px;
	background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.gallery-stats-icon {
	width: 44px;
	height: 44px;
	color: var(--gold);
	flex-shrink: 0;
}

.gallery-stats-content {
	display: flex;
	flex-direction: column;
}

.gallery-stats-number {
	font-size: clamp(28px, 3vw, 36px);
	font-weight: 950;
	color: #ffffff;
	line-height: 1;
}

.gallery-stats-label {
	font-size: 11px;
	font-weight: 800;
	color: var(--gold);
	letter-spacing: 0.8px;
	margin-top: 4px;
	text-transform: uppercase;
}

/* RESPONSIVE LAYOUTS FOR GALLERY */
@media (max-width: 1040px) {
	.gallery-grid-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.gallery-hero-bg {
		width: 100%;
		opacity: 0.08;
	}

	.gallery-stats-bar-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

	.gallery-stats-item+.gallery-stats-item::before {
		display: none;
	}
}

@media (max-width: 640px) {
	.gallery-grid-container {
		grid-template-columns: 1fr;
	}

	.gallery-stats-bar-container {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.gallery-stats-item {
		display: grid;
		grid-template-columns: 50px 1fr;
		gap: 20px;
		align-items: center;
		justify-content: start;
		text-align: left;
		max-width: 320px;
		margin: 0 auto;
		width: 100%;
	}

	.gallery-stats-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 50px;
		height: 50px;
		flex-shrink: 0;
	}

	.gallery-stats-icon svg {
		width: 100%;
		height: 100%;
	}
}

/* ==========================================================================
   OUR MENTOR PAGE STYLES
   ========================================================================== */

.mentor-page-wrapper {
	background: #020506;
	overflow: hidden;
}

/* 1. MENTOR HERO SECTION */
.mentor-hero-section {
	position: relative;
	background: radial-gradient(circle at 75% 30%, rgba(255, 196, 0, 0.08), transparent 35%),
		linear-gradient(180deg, #020506 0%, #05090a 100%);
	padding: 80px 20px 70px;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 196, 0, 0.06);
}

.mentor-hero-section::after {
	content: "";
	position: absolute;
	right: -100px;
	top: -50px;
	width: 580px;
	height: 120%;
	background-image:
		radial-gradient(circle, var(--gold) 0 4%, transparent 5% 100%),
		repeating-radial-gradient(circle, transparent 0 24px, rgba(255, 196, 0, 0.08) 25px 26px, transparent 27px 48px);
	opacity: 0.22;
	filter: blur(0.5px);
	pointer-events: none;
	z-index: 1;
}

.mentor-hero-container {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: 40px;
	position: relative;
	z-index: 2;
}

.mentor-hero-content {
	align-self: center;
}

.mentor-hero-title {
	margin: 0;
	font-size: clamp(52px, 6.2vw, 82px);
	line-height: 0.93;
	font-weight: 950;
	text-transform: uppercase;
	transform: scaleX(0.85);
	transform-origin: left center;
	text-shadow: 0 3px 22px rgba(0, 0, 0, 0.8);
	color: #ffffff;
}

.mentor-hero-title .gold-text {
	display: block;
	color: var(--gold);
}

.mentor-hero-desc {
	max-width: 440px;
	margin: 20px 0 0;
	color: #d6dcdf;
	font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: clamp(15px, 1.6vw, 17px);
	font-weight: 600;
	line-height: 1.55;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.mentor-hero-visual {
	position: relative;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.mentor-hero-image {
	display: block;
	max-height: 490px;
	width: auto;
	height: auto;
	object-fit: contain;
	position: relative;
	z-index: 3;
	filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.85));
}

/* 2. BIO PROFILE SECTION */
.mentor-profile-section {
	padding: 90px 20px;
	background: transparent;
	position: relative;
}

.mentor-main-grid {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 290px 1fr 340px;
	gap: clamp(24px, 3.8vw, 52px);
	align-items: start;
}

.mentor-frame-visual {
	position: relative;
	border: 2px solid var(--gold);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 24px rgba(255, 196, 0, 0.1);
	background: #080d0f;
}

.mentor-frame-visual::before {
	content: "";
	display: block;
	padding-bottom: 122%;
	/* premium card aspect ratio */
}

.mentor-frame-visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 15%;
	transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mentor-frame-visual:hover img {
	transform: scale(1.05);
}

.mentor-details-content {
	align-self: center;
}

.mentor-name-title {
	font-size: clamp(32px, 3vw, 44px);
	font-weight: 950;
	text-transform: uppercase;
	margin: 0 0 8px;
	line-height: 1.05;
	color: #ffffff;
	letter-spacing: -0.5px;
}

.mentor-name-title span {
	color: var(--gold);
}

.mentor-subtitle {
	font-size: clamp(16px, 1.6vw, 19px);
	font-weight: 700;
	color: #e2e8f0;
	margin: 0 0 25px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.mentor-details-content .mentor-subtitle::after {
	content: "";
	display: block;
	width: 60px;
	height: 2px;
	background: var(--gold);
	margin-top: 15px;
	box-shadow: 0 0 8px var(--shadow);
}

.mentor-bio-text {
	color: #d6dcdf;
	font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.65;
	margin: 0 0 35px;
}

/* Credentials Circles */
.mentor-stats-circles {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	margin-top: 30px;
}

.mentor-circle-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	cursor: default;
}

.circle-graphic {
	width: 68px;
	height: 68px;
	border: 2.2px solid var(--gold);
	border-radius: 50%;
	background: rgba(255, 196, 0, 0.04);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	box-shadow: inset 0 0 12px rgba(255, 196, 0, 0.08), 0 0 12px rgba(255, 196, 0, 0.04);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.circle-graphic.font-heavy {
	font-size: 19px;
	font-weight: 950;
	color: var(--gold);
	letter-spacing: -0.5px;
}

.circle-graphic.target-mini,
.circle-graphic.coach-mini,
.circle-graphic.champions-mini {
	background-size: 28px 28px;
	background-position: center;
	background-repeat: no-repeat;
}

.circle-graphic.target-mini {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffc400' stroke-width='1.5'><circle cx='12' cy='12' r='8'/><circle cx='12' cy='12' r='4'/><circle cx='12' cy='12' r='1.5' fill='%23ffc400'/><line x1='12' y1='2' x2='12' y2='22'/><line x1='2' y1='12' x2='22' y2='12'/></svg>");
}

.circle-graphic.coach-mini {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffc400' stroke-width='1.5'><circle cx='12' cy='8' r='4'/><path d='M6 20v-1a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v1'/><path d='M8 4h8'/></svg>");
}

.circle-graphic.champions-mini {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffc400' stroke-width='1.5'><path d='M6 9H4.5a2.5 2.5 0 0 1 0-5H6M18 9h1.5a2.5 2.5 0 0 0 0-5H18M12 15V20M8 20h8M12 3a6 6 0 0 1 6 6v3a6 6 0 0 1-6 6 6 6 0 0 1-6-6V9a6 6 0 0 1 6-6z'/></svg>");
}

.mentor-circle-item:hover .circle-graphic {
	transform: translateY(-2px);
	border-color: #ffffff;
	box-shadow: 0 8px 20px rgba(255, 196, 0, 0.25);
}

.circle-label {
	font-size: 11px;
	font-weight: 800;
	color: #efefef;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.35;
	max-width: 110px;
}

/* Expert Coaching Box */
.expert-coaching-box {
	background: linear-gradient(135deg, rgba(8, 13, 15, 0.95), rgba(16, 22, 26, 0.98));
	border: 2px solid var(--gold);
	border-radius: 12px;
	padding: 35px 28px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
	position: relative;
	overflow: hidden;
}

.expert-coaching-box::before {
	content: "";
	position: absolute;
	top: -50px;
	right: -50px;
	width: 100px;
	height: 100px;
	background: radial-gradient(circle, rgba(255, 196, 0, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.expert-coaching-box h3 {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 950;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.expert-coaching-box .box-desc {
	font-size: 14.5px;
	color: #d6dcdf;
	line-height: 1.5;
	margin: 0 0 25px;
}

.expert-coaching-box .box-desc span {
	color: var(--gold);
	font-weight: 700;
}

.coaching-checklist {
	list-style: none;
	padding: 0;
	margin: 0;
}

.coaching-checklist li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 14px;
	color: #ffffff;
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.4;
	font-family: "Montserrat", system-ui, sans-serif;
}

.coaching-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1px;
	width: 19px;
	height: 19px;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffc400' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10' fill='rgba(255,196,0,0.08)'/><path d='M9 12l2 2 4-4'/></svg>");
	background-size: contain;
	background-repeat: no-repeat;
}

/* 3. CREDENTIALS SECTION */
.mentor-credentials-section {
	padding: 60px 20px 90px;
	background: transparent;
	border-top: 1px solid rgba(255, 196, 0, 0.05);
}

.credentials-section-header {
	text-align: center;
	margin-bottom: 45px;
}

.credentials-badge-label {
	font-size: 13.5px;
	font-weight: 800;
	color: var(--gold);
	letter-spacing: 2px;
	text-transform: uppercase;
	border: 1.5px solid rgba(255, 196, 0, 0.32);
	border-radius: 4px;
	padding: 7px 18px;
	background: rgba(255, 196, 0, 0.04);
	display: inline-block;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.credentials-badge-row {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.cred-card {
	background: #080d0f;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	padding: 35px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 20px;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.cred-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 196, 0, 0.28);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 196, 0, 0.05);
}

.cred-badge-graphic {
	width: 52px;
	height: 52px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.95;
	filter: drop-shadow(0 4px 10px rgba(255, 196, 0, 0.1));
}

.cred-badge-graphic.certified {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffc400' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10' fill='rgba(255,196,0,0.1)'/><path d='M12 2l2.4 4.8 5.3.8-3.8 3.7.9 5.3-4.8-2.5-4.8 2.5.9-5.3-3.8-3.7 5.3-.8L12 2z' fill='%23ffc400' fill-opacity='0.25'/></svg>");
}

.cred-badge-graphic.coaching {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffc400' stroke-width='1.5'><circle cx='12' cy='12' r='10'/><path d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/><path d='M2 12h20'/></svg>");
}

.cred-badge-graphic.shooters {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffc400' stroke-width='1.5'><path d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/><circle cx='9' cy='7' r='4'/><path d='M23 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/></svg>");
}

.cred-badge-graphic.champions {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffc400' stroke-width='1.5'><rect x='3' y='14' width='4' height='6' rx='1'/><rect x='10' y='9' width='4' height='11' rx='1'/><rect x='17' y='4' width='4' height='16' rx='1'/><path d='M4 11l6-5 7-3 4 4M21 3h-4M21 3v4'/></svg>");
}

.cred-badge-graphic.discipline {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffc400' stroke-width='1.5'><path d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/><path d='M9 11l2 2 4-4'/></svg>");
}

.cred-card h4 {
	font-size: 13.5px;
	font-weight: 800;
	color: #efefef;
	line-height: 1.4;
	text-transform: uppercase;
	margin: 0;
	font-family: "Montserrat", system-ui, sans-serif;
	letter-spacing: 0.2px;
}

/* 4. QUOTE BANNER SECTION */
.mentor-quote-section {
	position: relative;
	background: #020506;
	padding: 95px 20px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-top: 1px solid rgba(255, 196, 0, 0.08);
	border-bottom: 1px solid rgba(255, 196, 0, 0.08);
}

.mentor-quote-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 0.16;
	pointer-events: none;
}

.mentor-quote-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	filter: grayscale(1) contrast(1.15) brightness(0.9);
}

.mentor-quote-container {
	position: relative;
	z-index: 2;
	max-width: 860px;
	padding: 0 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.quote-mark {
	color: var(--gold);
	font-size: 90px;
	line-height: 1;
	font-family: Georgia, serif;
	font-weight: 800;
	opacity: 0.72;
	position: absolute;
	user-select: none;
}

.quote-mark.open {
	top: -45px;
	left: -5px;
}

.quote-mark.close {
	bottom: -75px;
	right: -5px;
}

.quote-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.quote-text {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: clamp(26px, 3vw, 35px);
	font-style: italic;
	color: #ffffff;
	margin: 0;
	line-height: 1.4;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.95);
	font-weight: 100;
}

.quote-author {
	font-family: "Montserrat", system-ui, sans-serif;
	font-size: 14.5px;
	font-weight: 700;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 12px 0 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* 5. MENTOR CTA SECTION */
.mentor-cta-section {
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
	padding: 42px 20px;
	position: relative;
	overflow: hidden;
}

.mentor-cta-section::after {
	content: "";
	position: absolute;
	right: -30px;
	bottom: -40px;
	width: 260px;
	height: 260px;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(0,0,0,0.03)' stroke-width='1.5'><circle cx='12' cy='12' r='10'/><circle cx='12' cy='12' r='6'/><line x1='12' y1='1' x2='12' y2='23'/><line x1='1' y1='12' x2='23' y2='12'/></svg>");
	background-size: contain;
	background-repeat: no-repeat;
	pointer-events: none;
}

.mentor-cta-container {
	max-width: var(--max);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	position: relative;
	z-index: 2;
}

.mentor-cta-left {
	display: flex;
	align-items: center;
	gap: 22px;
}

.mentor-cta-icon-wrapper {
	width: 54px;
	height: 54px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #020506;
}

.mentor-cta-text-block {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mentor-cta-title {
	font-size: clamp(19px, 2.2vw, 25px);
	font-weight: 950;
	color: #020506;
	margin: 0;
	line-height: 1.15;
	text-transform: uppercase;
	letter-spacing: -0.3px;
}

.mentor-cta-subtitle {
	font-size: 14.5px;
	font-weight: 700;
	color: rgba(2, 5, 6, 0.78);
	margin: 0;
}

.mentor-cta-right {
	display: flex;
	align-items: center;
}

.mentor-appointment-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 50px;
	padding: 0 28px;
	background: #020506;
	color: var(--gold);
	border: none;
	border-radius: 6px;
	font-size: 13.5px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
	transition: all 0.22s ease;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.mentor-appointment-btn:hover {
	background: #10161a;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
	color: #ffffff;
}

.calendar-icon-dark {
	position: relative;
	width: 15px;
	height: 16px;
	border: 2px solid currentColor;
	border-radius: 2px;
}

.calendar-icon-dark::before {
	content: "";
	position: absolute;
	left: 2px;
	right: 2px;
	top: 4px;
	height: 2px;
	background: currentColor;
	box-shadow: 0 4px 0 currentColor;
}

/* ==========================================================================
   OUR MENTOR PAGE RESPONSIVENESS
   ========================================================================== */
@media (max-width: 1040px) {
	.mentor-hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 35px;
	}

	.mentor-hero-content {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.mentor-hero-title {
		transform: none;
		text-align: center;
	}

	.mentor-hero-desc {
		max-width: 500px;
		margin: 20px auto 0;
	}

	.mentor-hero-visual {
		justify-content: center;
		order: 2;
	}

	.mentor-hero-image {
		max-height: 380px;
	}

	.mentor-main-grid {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 45px;
	}

	.mentor-frame-visual {
		width: 300px;
		max-width: 100%;
	}

	.mentor-details-content {
		text-align: center;
		max-width: 680px;
		width: 100%;
	}

	.mentor-details-content .mentor-subtitle::after {
		margin: 15px auto 0;
	}

	.expert-coaching-box {
		width: 100%;
		max-width: 600px;
	}

	.credentials-badge-row {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}
}

@media (max-width: 768px) {
	.mentor-hero-visual {
		display: none;
	}

	.mentor-stats-circles {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px 15px;
	}

	.credentials-badge-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.mentor-quote-container {
		padding: 0 20px;
	}

	.quote-mark {
		display: none;
		/* Hide absolute quotation marks on mobile viewports for clean spacing */
	}

	.mentor-cta-container {
		flex-direction: column;
		gap: 25px;
		text-align: center;
	}

	.mentor-cta-left {
		flex-direction: column;
		gap: 15px;
	}

	.mentor-cta-icon-wrapper {
		margin: 0 auto;
	}
}

@media (max-width: 480px) {
	.mentor-stats-circles {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px 15px;
	}

	.credentials-badge-row {
		grid-template-columns: 1fr;
	}

	.mentor-hero-section {
		padding: 60px 15px 40px;
	}

	.mentor-profile-section {
		padding: 60px 15px;
	}
}

/* ==========================================================================
   BUY & SELL PAGE STYLES
   ========================================================================== */

.market-page-wrapper {
	background: #020506;
	overflow: hidden;
}

/* 1. HERO SECTION */
.market-hero-section {
	position: relative;
	background: radial-gradient(circle at 75% 30%, rgba(255, 196, 0, 0.08), transparent 35%),
		linear-gradient(180deg, #020506 0%, #05090a 100%);
	padding: 85px 20px 75px;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 196, 0, 0.06);
}

.market-hero-section::after {
	content: "";
	position: absolute;
	right: -100px;
	top: -50px;
	width: 580px;
	height: 120%;
	background-image:
		radial-gradient(circle, var(--gold) 0 4%, transparent 5% 100%),
		repeating-radial-gradient(circle, transparent 0 24px, rgba(255, 196, 0, 0.08) 25px 26px, transparent 27px 48px);
	opacity: 0.22;
	filter: blur(0.5px);
	pointer-events: none;
	z-index: 1;
}

.market-hero-container {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	align-items: center;
	gap: 40px;
	position: relative;
	z-index: 2;
}

.market-hero-content {
	align-self: center;
}

.market-hero-title {
	margin: 0;
	font-size: clamp(52px, 6.2vw, 82px);
	line-height: 0.93;
	font-weight: 950;
	text-transform: uppercase;
	transform: scaleX(0.85);
	transform-origin: left center;
	text-shadow: 0 3px 22px rgba(0, 0, 0, 0.8);
	color: #ffffff;
}

.market-hero-title .gold-text {
	display: block;
	color: var(--gold);
}

.market-hero-desc {
	max-width: 450px;
	margin: 20px 0 0;
	color: #d6dcdf;
	font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: clamp(15px, 1.6vw, 17px);
	font-weight: 600;
	line-height: 1.55;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.market-hero-actions {
	display: flex;
	gap: 15px;
	margin-top: 30px;
}

.market-hero-actions .btn {
	padding: 0 22px;
	font-size: 14.5px;
	gap: 10px;
	cursor: pointer;
}

.market-hero-visual {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.market-hero-image {
	display: block;
	max-height: 290px;
	width: auto;
	height: auto;
	object-fit: contain;
	position: relative;
	z-index: 3;
	filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.85));
}

/* 2. SWITCHER SECTION */
.market-switcher-section {
	padding: 40px 20px 10px;
	background: transparent;
	display: flex;
	justify-content: center;
}

.market-switcher-container {
	display: flex;
	background: #080d0f;
	border: 1.5px solid rgba(255, 196, 0, 0.3);
	border-radius: 6px;
	padding: 4px;
	max-width: 320px;
	width: 100%;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.switcher-toggle-btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 44px;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 850;
	text-transform: uppercase;
	color: #ffffff;
	background: transparent;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.switcher-toggle-btn:hover {
	color: var(--gold);
}

.switcher-toggle-btn.active {
	background: var(--gold);
	color: #020506;
	box-shadow: 0 4px 15px rgba(255, 196, 0, 0.3);
}

.switcher-icon {
	width: 17px;
	height: 17px;
}

/* 3. CATALOG SECTION */
.market-catalog-section {
	padding: 50px 20px 80px;
}

.market-catalog-container {
	max-width: var(--max);
	margin: 0 auto;
}

.filter-sidebar-header {
	color: #ffd700;
	border-bottom: 1px solid #222;
	padding-bottom: 10px;
	margin: 0 0 20px 0;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.filter-toggle-icon {
	display: none;
	font-size: 10px;
	transition: transform 0.3s ease;
}

.market-page-wrapper .market-catalog-container {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 30px;
}

.catalog-filters-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
	padding-bottom: 20px;
	margin-bottom: 40px;
}

.catalog-tabs {
	display: flex;
	gap: 10px;
}

.catalog-filter-btn {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 4px;
	color: #ffffff;
	font-size: 12.5px;
	font-weight: 800;
	text-transform: uppercase;
	padding: 9px 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.25s ease;
}

.catalog-filter-btn:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.catalog-filter-btn.active {
	background: var(--gold);
	border-color: var(--gold);
	color: #020506;
	box-shadow: 0 4px 12px rgba(255, 196, 0, 0.25);
}

.tab-svg-icon {
	width: 15px;
	height: 15px;
	color: inherit;
}

.sort-dropdown {
	background: #080d0f;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 4px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	padding: 9px 15px;
	cursor: pointer;
	outline: none;
	transition: all 0.25s ease;
}

.sort-dropdown:hover,
.sort-dropdown:focus {
	border-color: var(--gold);
}

.featured-products-title {
	font-size: clamp(24px, 2.5vw, 32px);
	font-weight: 950;
	color: #ffffff;
	text-transform: uppercase;
	margin: 0 0 35px;
}

.featured-products-title span {
	color: var(--gold);
}

/* Products Grid */
.catalog-products-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 15px;
}

.catalog-product-card {
	background: #080d0f;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.catalog-product-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 196, 0, 0.25);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.38), 0 0 18px rgba(255, 196, 0, 0.04);
}

.prod-img-wrapper {
	position: relative;
	background: #efefef;
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 120px;
}

.prod-img-wrapper img {
	max-width: 100%;
	max-height: 90px;
	object-fit: contain;
	transition: transform 0.4s ease;
}

.catalog-product-card:hover .prod-img-wrapper img {
	transform: scale(1.05);
}

.prod-condition-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 9.5px;
	font-weight: 850;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 3px;
	letter-spacing: 0.5px;
}

.prod-condition-badge.new {
	background: rgba(2, 5, 6, 0.9);
	border: 1px solid var(--gold);
	color: var(--gold);
}

.prod-condition-badge.used {
	background: rgba(40, 48, 54, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #efefef;
}

.prod-info-wrapper {
	padding: 16px 14px 14px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.prod-title {
	font-size: 13.5px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 10px;
	line-height: 1.35;
	text-transform: uppercase;
	min-height: 36px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.prod-bottom-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}

.prod-price {
	font-size: 15.5px;
	font-weight: 950;
	color: var(--gold);
}

.prod-details-btn {
	width: 100%;
	min-height: 38px;
	background: var(--gold);
	color: #020506;
	border: none;
	border-radius: 4px;
	font-size: 11.5px;
	font-weight: 900;
	text-transform: uppercase;
	cursor: pointer;
	letter-spacing: 0.5px;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.prod-details-btn:hover {
	background: #ffffff;
	color: #020506;
	box-shadow: 0 5px 15px rgba(255, 255, 255, 0.15);
}

/* 4. QUALITY TRUST BAR */
.market-trust-section {
	background: #05090a;
	border-top: 1.5px solid rgba(255, 196, 0, 0.12);
	border-bottom: 1.5px solid rgba(255, 196, 0, 0.12);
	padding: 40px 20px;
}

.market-trust-container {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 18px;
}

.trust-icon-box {
	width: 46px;
	height: 46px;
	border: 1.5px solid rgba(255, 196, 0, 0.35);
	border-radius: 50%;
	background: rgba(255, 196, 0, 0.03);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	flex-shrink: 0;
}

.trust-icon-box .gold-svg {
	width: 22px;
	height: 22px;
	color: var(--gold);
}

.trust-text-block {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.trust-text-block h4 {
	font-size: 13px;
	font-weight: 850;
	color: var(--gold);
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.trust-text-block p {
	font-size: 12px;
	color: #efefef;
	margin: 0;
	font-family: "Montserrat", sans-serif;
	line-height: 1.3;
}

/* 5. HOW IT WORKS & WANT TO SELL */
.market-flow-section {
	padding: 90px 20px;
}

.market-flow-container {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: clamp(30px, 5vw, 70px);
	align-items: start;
}

.flow-steps-column {
	display: flex;
	flex-direction: column;
}

.flow-section-title {
	font-size: clamp(24px, 2.5vw, 32px);
	font-weight: 950;
	color: #ffffff;
	text-transform: uppercase;
	margin: 0 0 45px;
}

.flow-section-title span {
	color: var(--gold);
}

.flow-steps-timeline {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	position: relative;
	padding-top: 10px;
}

/* Connecting dashed line in background */
.flow-steps-timeline::before {
	content: "";
	position: absolute;
	left: 30px;
	right: 30px;
	top: 36px;
	height: 2px;
	background-image: linear-gradient(to right, rgba(255, 196, 0, 0.4) 50%, transparent 50%);
	background-size: 10px 2px;
	z-index: 1;
}

.flow-step-node {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1;
	position: relative;
	z-index: 2;
}

.flow-icon-circle {
	width: 52px;
	height: 52px;
	border: 2px solid var(--gold);
	border-radius: 50%;
	background: #080d0f;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	margin-bottom: 20px;
	box-shadow: 0 0 15px rgba(255, 196, 0, 0.15);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.flow-step-node:hover .flow-icon-circle {
	transform: scale(1.08);
	border-color: #ffffff;
	color: #ffffff;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

.flow-icon-circle .gold-svg {
	width: 22px;
	height: 22px;
	color: inherit;
}

.flow-text-info h4 {
	font-size: 13.5px;
	font-weight: 850;
	color: var(--gold);
	margin: 0 0 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.flow-text-info p {
	font-size: 12.5px;
	color: #d6dcdf;
	margin: 0;
	font-family: "Montserrat", sans-serif;
	line-height: 1.45;
	max-width: 170px;
}

/* Sidebar Callout */
.market-sell-sidebar {
	background: linear-gradient(135deg, rgba(8, 13, 15, 0.95), rgba(16, 22, 26, 0.98));
	border: 2px solid var(--gold);
	border-radius: 10px;
	padding: 38px 28px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
	position: relative;
	overflow: hidden;
}

.market-sell-sidebar h3 {
	margin: 0 0 12px;
	font-size: 21px;
	font-weight: 950;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.market-sell-sidebar h3 span {
	color: var(--gold);
}

.sidebar-intro {
	font-size: 14px;
	color: #d6dcdf;
	line-height: 1.45;
	margin: 0 0 25px;
}

.sidebar-bullets {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}

.sidebar-bullets li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #ffffff;
	font-size: 14.5px;
	font-weight: 700;
	margin-bottom: 12px;
	font-family: "Montserrat", system-ui, sans-serif;
}

.sidebar-check {
	width: 18px;
	height: 18px;
	color: var(--gold);
	flex-shrink: 0;
}

.sell-sidebar-btn {
	width: 100%;
	min-height: 48px;
	font-size: 13px;
	letter-spacing: 0.5px;
	cursor: pointer;
}

/* 6. GUIDANCE CTA */
.market-guidance-cta-section {
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
	padding: 0 20px;
	position: relative;
	overflow: hidden;
}

.market-guidance-cta-section::after {
	content: "";
	position: absolute;
	right: -30px;
	bottom: -40px;
	width: 260px;
	height: 260px;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(0,0,0,0.03)' stroke-width='1.5'><circle cx='12' cy='12' r='10'/><circle cx='12' cy='12' r='6'/><line x1='12' y1='1' x2='12' y2='23'/><line x1='1' y1='12' x2='23' y2='12'/></svg>");
	background-size: contain;
	background-repeat: no-repeat;
	pointer-events: none;
}

.market-guidance-container {
	max-width: var(--max);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	position: relative;
	z-index: 2;
}

.market-guidance-left {
	display: flex;
	align-items: center;
	gap: 25px;
}

.guidance-shooter-frame {
	position: relative;
	height: 120px;
	width: 120px;
	flex-shrink: 0;
	align-self: flex-end;
	margin-top: 15px;
}

.guidance-shooter-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom center;
	filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.guidance-text-block {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 20px 0;
}

.guidance-title {
	font-size: clamp(17px, 2vw, 23px);
	font-weight: 950;
	color: #020506;
	margin: 0;
	line-height: 1.15;
	text-transform: uppercase;
	letter-spacing: -0.3px;
}

.guidance-subtitle {
	font-size: 14.5px;
	font-weight: 700;
	color: rgba(2, 5, 6, 0.78);
	margin: 0;
}

.market-guidance-right {
	display: flex;
	align-items: center;
	padding: 20px 0;
}

.guidance-appointment-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 48px;
	padding: 0 26px;
	background: #020506;
	color: var(--gold);
	border: none;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
	transition: all 0.22s ease;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.guidance-appointment-btn:hover {
	background: #10161a;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
	color: #ffffff;
}

/* 7. INQUIRY POPUP MODAL OVERLAY */
.inquiry-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(2, 5, 6, 0.85);
	backdrop-filter: blur(6px);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	padding: 20px;
}

.inquiry-modal-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

.inquiry-modal-card {
	background: #080d0f;
	border: 2px solid var(--gold);
	border-radius: 10px;
	max-width: 480px;
	width: 100%;
	padding: 35px 30px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 30px rgba(255, 196, 0, 0.08);
	position: relative;
	transform: scale(0.95);
	transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.inquiry-modal-overlay.active .inquiry-modal-card {
	transform: scale(1);
}

.inquiry-modal-close {
	position: absolute;
	right: 18px;
	top: 18px;
	background: transparent;
	border: none;
	color: #ffffff;
	font-size: 28px;
	font-weight: 300;
	cursor: pointer;
	line-height: 1;
	opacity: 0.65;
	transition: opacity 0.2s ease;
}

.inquiry-modal-close:hover {
	opacity: 1;
	color: var(--gold);
}

.inquiry-modal-header {
	display: flex;
	align-items: center;
	gap: 12px;
	border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
	padding-bottom: 15px;
	margin-bottom: 20px;
}

.inquiry-modal-header h3 {
	margin: 0;
	font-size: 19px;
	font-weight: 950;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.inquiry-modal-subtitle {
	font-size: 13.5px;
	color: #efefef;
	margin: 0 0 20px;
	line-height: 1.4;
	font-family: "Montserrat", sans-serif;
}

.inquiry-form-fields {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-group label {
	font-size: 11px;
	font-weight: 800;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
	background: rgba(2, 5, 6, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 4px;
	color: #ffffff;
	padding: 10px 14px;
	font-size: 13.5px;
	outline: none;
	font-family: inherit;
	transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: var(--gold);
	box-shadow: 0 0 10px rgba(255, 196, 0, 0.15);
}

.inquiry-submit-btn {
	width: 100%;
	min-height: 46px;
	background: var(--gold);
	color: #020506;
	border: none;
	border-radius: 5px;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	cursor: pointer;
	letter-spacing: 0.5px;
	transition: all 0.25s ease;
	margin-top: 5px;
}

.inquiry-submit-btn:hover {
	background: #ffffff;
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   BUY & SELL RESPONSIVE LAYOUTS
   ========================================================================== */
@media (max-width: 1180px) {
	.catalog-products-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

@media (max-width: 1040px) {
	.market-hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 35px;
	}

	.market-hero-content {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.market-hero-title {
		transform: none;
		text-align: center;
	}

	.market-hero-desc {
		max-width: 500px;
		margin: 20px auto 0;
	}

	.market-hero-actions {
		justify-content: center;
	}

	.market-hero-visual {
		justify-content: center;
	}

	.market-hero-image {
		max-height: 250px;
	}

	.market-switcher-section {
		padding-top: 25px;
	}

	.catalog-filters-bar {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	.market-trust-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

	.market-flow-container {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 50px;
	}

	.flow-steps-column {
		width: 100%;
	}

	.market-sell-sidebar {
		width: 100%;
		max-width: 600px;
	}

	.market-page-wrapper .market-catalog-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.filter-sidebar-header {
		cursor: pointer;
		margin-bottom: 0;
	}

	.filter-toggle-icon {
		display: block;
	}

	#marketplace-filter-form {
		display: none;
		margin-top: 20px;
	}

	.market-filters-sidebar.open #marketplace-filter-form {
		display: block;
	}

	.market-filters-sidebar.open .filter-sidebar-header {
		border-bottom: 1px solid #222;
		margin-bottom: 20px;
		padding-bottom: 10px;
	}

	.market-filters-sidebar.open .filter-toggle-icon {
		transform: rotate(180deg);
	}

	.market-filters-sidebar:not(.open) .filter-sidebar-header {
		border-bottom: none;
		padding-bottom: 0;
	}
}

@media (max-width: 820px) {
	.catalog-products-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.flow-steps-timeline {
		flex-direction: column;
		align-items: center;
		gap: 30px;
	}

	.flow-steps-timeline::before {
		display: none;
		/* Hide horizontal timeline line on mobile/tablet vertical layouts */
	}

	.flow-step-node {
		width: 100%;
		max-width: 320px;
	}

	.flow-icon-circle {
		margin-bottom: 12px;
	}
}

@media (max-width: 768px) {
	.market-guidance-container {
		flex-direction: column;
		gap: 20px;
		text-align: center;
		padding: 25px 0;
	}

	.market-guidance-left {
		flex-direction: column;
		gap: 15px;
	}

	.guidance-shooter-frame {
		align-self: center;
		margin-top: 0;
	}

	.guidance-text-block {
		padding: 0;
	}

	.market-guidance-right {
		padding: 0;
	}
}

@media (max-width: 600px) {
	.catalog-products-grid {
		grid-template-columns: 1fr;
		max-width: 340px;
		margin: 0 auto;
	}

	.catalog-tabs {
		flex-wrap: wrap;
		justify-content: center;
	}

	.market-trust-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.market-hero-section {
		padding: 60px 15px 40px;
	}

	.market-catalog-section {
		padding: 40px 15px;
	}

	.market-flow-section {
		padding: 60px 15px;
	}

	.inquiry-modal-card {
		padding: 25px 20px;
	}
}

@media (max-width: 500px) {
	.market-hero-actions {
		flex-direction: column;
		width: 100%;
		gap: 12px;
	}

	.market-hero-actions .btn {
		width: 100%;
		justify-content: center;
	}
}

/* ==========================================================================
   CONTACT US PAGE STYLES
   ========================================================================== */
.contact-page-wrapper {
	background: var(--bg);
	color: var(--text);
	position: relative;
	overflow: hidden;
}

/* 1. HERO SECTION */
.contact-hero-section {
	position: relative;
	padding: 90px 20px 40px;
	background: radial-gradient(circle at 75% 30%, rgba(255, 196, 0, 0.12), transparent 35%);
}

.contact-hero-container {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 50px;
}

.contact-hero-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact-hero-title {
	margin: 0 0 15px;
	font-size: clamp(52px, 6.2vw, 76px);
	line-height: 0.95;
	font-weight: 950;
	text-transform: uppercase;
	transform: scaleX(0.85);
	transform-origin: left center;
	text-shadow: 0 3px 22px rgba(0, 0, 0, 0.72);
}

.heading-separator.left-align {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 25px;
}

.gold-crosshair-star {
	position: relative;
	width: 14px;
	height: 14px;
	background: var(--gold);
	clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
}

.gold-line {
	height: 2px;
	width: 90px;
	background: linear-gradient(90deg, var(--gold), transparent);
}

.contact-hero-desc {
	margin: 0;
	color: #d6dcdf;
	font-size: clamp(16px, 1.8vw, 19px);
	font-weight: 500;
	line-height: 1.55;
	max-width: 460px;
	font-family: "Montserrat", system-ui, sans-serif;
}

.contact-hero-visual {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.contact-hero-image {
	display: block;
	max-width: 100%;
	height: auto;
	max-height: 400px;
	object-fit: contain;
	filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.65));
}

/* 2. SPLIT FORM & INFO GRID */
.contact-grid-section {
	padding: 60px 20px 80px;
	background: #05090a;
}

.contact-grid-container {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: start;
}

.contact-col-title {
	font-size: clamp(24px, 2.5vw, 32px);
	font-weight: 950;
	color: #ffffff;
	text-transform: uppercase;
	margin: 0 0 35px;
	position: relative;
}

.contact-col-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 50px;
	height: 2.5px;
	background: var(--gold);
}

.contact-form-fields {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-row-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.contact-form-group {
	position: relative;
	display: flex;
	width: 100%;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
	width: 100%;
	background: rgba(2, 5, 6, 0.65);
	border: 1px solid rgba(255, 196, 0, 0.15);
	border-radius: 5px;
	color: #ffffff;
	padding: 12px 16px 12px 50px;
	font-size: 14.5px;
	font-family: inherit;
	outline: none;
	transition: all 0.22s ease;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
	border-color: var(--gold);
	background: rgba(8, 13, 15, 0.85);
	box-shadow: 0 0 12px var(--shadow);
}

.contact-form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.input-icon-box {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	transition: transform 0.2s ease;
}

.text-area-group .input-icon-box {
	top: 18px;
	transform: none;
}

.contact-form-group input:focus~.input-icon-box,
.contact-form-group textarea:focus~.input-icon-box,
.contact-form-group select:focus~.input-icon-box {
	transform: translateY(-50%) scale(1.08);
}

.text-area-group input:focus~.input-icon-box,
.text-area-group textarea:focus~.input-icon-box {
	transform: scale(1.08);
}

.input-icon-box svg {
	width: 100%;
	height: 100%;
}

/* Custom Dropdown Styling */
.select-wrapper {
	position: relative;
}

.select-wrapper select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
}

.select-wrapper::after {
	content: "";
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid var(--gold);
	pointer-events: none;
}

.contact-submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 50px;
	border: none;
	border-radius: 5px;
	background: linear-gradient(180deg, var(--gold), var(--gold-2));
	color: #020506;
	font-size: 14.5px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
	box-shadow: 0 8px 24px rgba(255, 196, 0, 0.16);
}

.contact-submit-btn:hover {
	background: #ffffff;
	color: #020506;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(255, 255, 255, 0.22);
}

.contact-submit-btn:active {
	transform: translateY(-0.5px);
}

.btn-send-icon {
	transition: transform 0.25s ease;
}

.contact-submit-btn:hover .btn-send-icon {
	transform: translate(2px, -2px) scale(1.05);
}

.form-bottom-note {
	margin: 12px 0 0;
	font-size: 12.5px;
	color: var(--muted);
	font-family: "Montserrat", sans-serif;
}

/* Info Column Details */
.contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-bottom: 45px;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.info-icon-circle {
	width: 48px;
	height: 48px;
	border: 1.5px solid rgba(255, 196, 0, 0.35);
	border-radius: 50%;
	background: rgba(255, 196, 0, 0.03);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	flex-shrink: 0;
	box-shadow: 0 0 15px rgba(255, 196, 0, 0.08);
	transition: all 0.25s ease;
}

.contact-info-item:hover .info-icon-circle {
	border-color: #ffffff;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 0 0 18px rgba(255, 255, 255, 0.15);
}

.info-icon-circle svg {
	width: 20px;
	height: 20px;
}

.info-content-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.info-content-text h5 {
	margin: 0;
	font-size: 12.5px;
	font-weight: 850;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.info-main-detail {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
}

.info-sub-detail {
	margin: 0;
	font-size: 13.5px;
	color: var(--muted);
	font-family: "Montserrat", sans-serif;
	line-height: 1.35;
}

/* Follow Section */
.contact-follow-section {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-follow-section h5 {
	margin: 0;
	font-size: 13px;
	font-weight: 850;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.social-circles-row {
	display: flex;
	align-items: center;
	gap: 15px;
}

.social-circle {
	width: 44px;
	height: 44px;
	border: 1.5px solid rgba(255, 196, 0, 0.25);
	border-radius: 50%;
	background: rgba(255, 196, 0, 0.02);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.75);
	transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-circle:hover {
	border-color: var(--gold);
	color: var(--gold);
	transform: translateY(-2px);
	background: rgba(255, 196, 0, 0.08);
	box-shadow: 0 5px 15px rgba(255, 196, 0, 0.15);
}

.social-icon {
	width: 18px;
	height: 18px;
}

/* 3. MAP SECTION */
.contact-map-section {
	padding: 80px 20px;
	background: #020506;
}

.contact-map-container {
	max-width: var(--max);
	margin: 0 auto;
}

.map-section-title {
	font-size: clamp(24px, 2.5vw, 32px);
	font-weight: 950;
	color: #ffffff;
	text-transform: uppercase;
	margin: 0 0 35px;
	text-align: center;
	position: relative;
}

.map-section-title::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -10px;
	width: 50px;
	height: 2.5px;
	background: var(--gold);
	transform: translateX(-50%);
}

.directions-map-iframe-container {
	border-radius: 12px;
	border: 2.5px solid rgba(255, 196, 0, 0.2);
	overflow: hidden;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
	position: relative;
	width: 100%;
	height: 450px;
	transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.directions-map-iframe-container:hover {
	border-color: var(--gold);
	box-shadow: 0 25px 55px rgba(0, 0, 0, 0.72), 0 0 25px rgba(255, 196, 0, 0.08);
	transform: translateY(-2px);
}

.directions-map-iframe-container iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

@media (max-width: 768px) {
	.directions-map-iframe-container {
		height: 350px;
	}
}

@media (max-width: 480px) {
	.directions-map-iframe-container {
		height: 280px;
	}
}

/* 4. BOTTOM HIGHLIGHTS BAR RIBBON */
.contact-highlights-section {
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
	padding: 40px 20px;
	position: relative;
	z-index: 2;
}

.contact-highlights-container {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.highlight-item {
	display: flex;
	align-items: center;
	gap: 16px;
}

.highlight-icon-box {
	width: 44px;
	height: 44px;
	border: 1.5px solid rgba(2, 5, 6, 0.22);
	border-radius: 50%;
	background: rgba(2, 5, 6, 0.04);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #020506;
	flex-shrink: 0;
}

.highlight-icon-box .dark-svg {
	width: 22px;
	height: 22px;
	color: #020506;
}

.highlight-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.highlight-text h4 {
	font-size: 13.5px;
	font-weight: 850;
	color: #020506;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.highlight-text p {
	font-size: 12.5px;
	color: rgba(2, 5, 6, 0.78);
	margin: 0;
	font-family: "Montserrat", sans-serif;
	line-height: 1.3;
	font-weight: 550;
}

/* ==========================================================================
   CONTACT US RESPONSIVE LAYOUTS
   ========================================================================== */
@media (max-width: 1040px) {
	.contact-hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 35px;
	}

	.contact-hero-content {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.contact-hero-title {
		transform: none;
		text-align: center;
	}

	.heading-separator.left-align {
		justify-content: center;
	}

	.gold-line {
		background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
	}

	.contact-hero-desc {
		margin: 0 auto;
	}

	.contact-hero-visual {
		justify-content: center;
	}

	.contact-hero-image {
		max-height: 300px;
	}

	.contact-grid-container {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.contact-info-column {
		max-width: 600px;
		margin: 0 auto;
		width: 100%;
	}

	.contact-highlights-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.contact-hero-section {
		padding: 70px 20px 30px;
	}

	.contact-grid-section {
		padding: 50px 20px 60px;
	}

	.contact-map-section {
		padding: 60px 20px;
	}

	.contact-highlights-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.form-row-split {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.contact-highlights-container {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.highlight-item {
		justify-content: flex-start;
	}
}

/* ==========================================================================
   BOOK APPOINTMENT PAGE STYLES
   ========================================================================== */
.booking-page-wrapper {
	background: var(--bg);
	color: var(--text);
	position: relative;
	overflow: hidden;
}

/* 1. HERO SECTION */
.booking-hero-section {
	position: relative;
	padding: 100px 20px 50px;
	background:
		linear-gradient(90deg, #020506 30%, rgba(2, 5, 6, 0.6) 70%, rgba(2, 5, 6, 0.2) 100%),
		url('assets/about-section-image.png');
	background-size: cover;
	background-position: center;
	min-height: 380px;
	display: flex;
	align-items: center;
}

.booking-hero-container {
	max-width: var(--max);
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 50px;
	position: relative;
	z-index: 3;
}

.booking-hero-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.booking-hero-title {
	margin: 0 0 15px;
	font-size: clamp(52px, 6.2vw, 76px);
	line-height: 0.95;
	font-weight: 950;
	text-transform: uppercase;
	transform: scaleX(0.85);
	transform-origin: left center;
	text-shadow: 0 3px 22px rgba(0, 0, 0, 0.85);
}

.booking-hero-desc {
	margin: 0;
	color: #d6dcdf;
	font-size: clamp(16px, 1.8vw, 19px);
	font-weight: 500;
	line-height: 1.55;
	max-width: 460px;
	font-family: "Montserrat", system-ui, sans-serif;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

/* 2. SPLIT FORM & INFO GRID */
.booking-grid-section {
	padding: 70px 20px 80px;
	background: #05090a;
}

.booking-grid-container {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.25fr 0.85fr;
	gap: clamp(40px, 5vw, 70px);
	align-items: start;
}

.booking-form-card {
	background: #080d0f;
	border: 1.5px solid var(--gold);
	border-radius: 10px;
	padding: 40px 35px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 30px rgba(255, 196, 0, 0.06);
}

.booking-card-header {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	border-bottom: 1.5px solid rgba(255, 255, 255, 0.06);
	padding-bottom: 25px;
	margin-bottom: 30px;
}

.booking-header-icon {
	width: 52px;
	height: 52px;
	border: 2px solid var(--gold);
	border-radius: 50%;
	background: rgba(255, 196, 0, 0.04);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	flex-shrink: 0;
	box-shadow: 0 0 15px rgba(255, 196, 0, 0.08);
}

.booking-header-icon svg {
	width: 22px;
	height: 22px;
}

.booking-header-titles {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.booking-header-titles h2 {
	margin: 0;
	font-size: 21px;
	font-weight: 950;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.booking-header-titles p {
	margin: 0;
	font-size: 13px;
	color: var(--muted);
	font-family: "Montserrat", sans-serif;
	line-height: 1.45;
}

.booking-form-fields {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.booking-form-group {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 8px;
}

.booking-form-group label {
	font-size: 11px;
	font-weight: 800;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
	width: 100%;
	background: rgba(2, 5, 6, 0.65);
	border: 1px solid rgba(255, 196, 0, 0.15);
	border-radius: 5px;
	color: #ffffff;
	padding: 12px 16px;
	font-size: 14.5px;
	font-family: inherit;
	outline: none;
	transition: all 0.22s ease;
}

.booking-form-group input:focus,
.booking-form-group select:focus,
.booking-form-group textarea:focus {
	border-color: var(--gold);
	background: rgba(8, 13, 15, 0.85);
	box-shadow: 0 0 12px var(--shadow);
}

.booking-form-group textarea {
	resize: vertical;
}

/* Dropdown Chev Select Custom Styling */
.booking-form-group.select-wrapper {
	position: relative;
}

.booking-form-group.select-wrapper select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	padding-right: 40px;
}

.booking-form-group.select-wrapper::after {
	content: "";
	position: absolute;
	right: 18px;
	bottom: 18px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid var(--gold);
	pointer-events: none;
}

/* Custom Date Picker Styling */
.booking-form-group.date-wrapper {
	position: relative;
}

.input-date-container {
	position: relative;
	width: 100%;
	display: flex;
}

.input-date-container input[type="date"] {
	padding-right: 45px;
}

/* Hide default calendar icon in WebKit but keep functional overlay */
.input-date-container input[type="date"]::-webkit-calendar-picker-indicator {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.custom-calendar-icon {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.custom-calendar-icon svg {
	width: 100%;
	height: 100%;
}

.booking-submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 50px;
	border: none;
	border-radius: 5px;
	background: linear-gradient(180deg, var(--gold), var(--gold-2));
	color: #020506;
	font-size: 14.5px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
	box-shadow: 0 8px 24px rgba(255, 196, 0, 0.16);
	margin-top: 10px;
}

.booking-submit-btn:hover {
	background: #ffffff;
	color: #020506;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(255, 255, 255, 0.22);
}

.booking-submit-btn:hover .btn-send-icon {
	transform: translate(2px, -2px) scale(1.05);
}

.booking-bottom-safe {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 25px;
	padding-top: 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.safe-lock-icon {
	width: 14px;
	height: 14px;
	color: var(--muted);
	display: flex;
	align-items: center;
	justify-content: center;
}

.safe-lock-icon svg {
	width: 100%;
	height: 100%;
}

.booking-bottom-safe p {
	margin: 0;
	font-size: 12.5px;
	color: var(--muted);
	font-family: "Montserrat", sans-serif;
}

/* Why Book Column Details */
.booking-col-title {
	font-size: 21px;
	font-weight: 950;
	color: #ffffff;
	text-transform: uppercase;
	margin: 0 0 30px;
	position: relative;
	letter-spacing: 0.5px;
}

.booking-col-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 50px;
	height: 2.5px;
	background: var(--gold);
}

.why-book-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-bottom: 45px;
}

.why-book-item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
}

.why-icon-circle {
	width: 44px;
	height: 44px;
	border: 1.5px solid rgba(255, 196, 0, 0.35);
	border-radius: 50%;
	background: rgba(255, 196, 0, 0.02);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	flex-shrink: 0;
	box-shadow: 0 0 15px rgba(255, 196, 0, 0.05);
	transition: all 0.25s ease;
}

.why-book-item:hover .why-icon-circle {
	border-color: #ffffff;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 0 0 18px rgba(255, 255, 255, 0.15);
}

.why-icon-circle svg {
	width: 20px;
	height: 20px;
}

.why-content-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.why-content-text h3 {
	margin: 0;
	font-size: 15px;
	font-weight: 850;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.why-content-text p {
	margin: 0;
	font-size: 13.5px;
	color: var(--muted);
	font-family: "Montserrat", sans-serif;
	line-height: 1.4;
}

/* Need Help Outlined Card */
.booking-help-card {
	background: #080d0f;
	border: 1.5px solid rgba(255, 196, 0, 0.3);
	border-radius: 8px;
	padding: 25px 22px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.help-card-row {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.help-phone-icon,
.help-mail-icon {
	width: 20px;
	height: 20px;
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.help-phone-icon svg,
.help-mail-icon svg {
	width: 100%;
	height: 100%;
}

.help-content-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.help-content-text h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 950;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.help-content-text p {
	margin: 0 0 6px;
	font-size: 12.5px;
	color: #efefef;
	font-family: "Montserrat", sans-serif;
}

.help-main-phone {
	font-size: 20px;
	font-weight: 950;
	color: var(--gold);
	text-decoration: none;
	transition: color 0.2s ease;
}

.help-main-phone:hover {
	color: #ffffff;
}

.help-card-email-row {
	display: flex;
	align-items: center;
	gap: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 15px;
}

.help-main-email {
	font-size: 14.5px;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	transition: color 0.2s ease;
}

.help-main-email:hover {
	color: var(--gold);
}

/* 3. bottom highlights bar ribbon */
.booking-highlights-section {
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
	padding: 40px 20px;
	position: relative;
	z-index: 2;
}

.booking-highlights-container {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

/* ==========================================================================
   BOOK APPOINTMENT RESPONSIVE LAYOUTS
   ========================================================================== */
@media (max-width: 1040px) {
	.booking-hero-section {
		background:
			linear-gradient(180deg, rgba(2, 5, 6, 0.9) 0%, rgba(2, 5, 6, 0.7) 100%),
			url('assets/about-section-image.png');
		background-size: cover;
		background-position: center;
		text-align: center;
		padding: 80px 20px 40px;
	}

	.booking-hero-container {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.booking-hero-content {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.booking-hero-title {
		transform: none;
		text-align: center;
	}

	.booking-hero-desc {
		margin: 0 auto;
	}

	.booking-grid-container {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.booking-info-column {
		max-width: 600px;
		margin: 0 auto;
		width: 100%;
	}

	.booking-highlights-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.booking-hero-section {
		padding: 70px 20px 30px;
	}

	.booking-grid-section {
		padding: 50px 20px 60px;
	}

	.booking-form-card {
		padding: 30px 20px;
	}
}

@media (max-width: 600px) {
	.booking-highlights-container {
		grid-template-columns: 1fr;
		gap: 25px;
	}
}


/* ==========================================================================
   JOIN SPORTSINN SECTION STYLES
   ========================================================================== */

/* --- OUTER SECTION --- */
.join-section {
	background: var(--dark, #0a0a0a);
	position: relative;
	overflow: hidden;
}

/* --- JOIN HERO --- */
.join-hero {
	position: relative;
	background: linear-gradient(105deg, #0a0a0a 55%, #1a1200 100%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 280px;
	padding: 60px 80px 50px;
	overflow: hidden;
}

.join-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='28' fill='none' stroke='rgba(212,175,55,0.04)' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='18' fill='none' stroke='rgba(212,175,55,0.04)' stroke-width='1'/%3E%3Cline x1='30' y1='2' x2='30' y2='58' stroke='rgba(212,175,55,0.04)' stroke-width='1'/%3E%3Cline x1='2' y1='30' x2='58' y2='30' stroke='rgba(212,175,55,0.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
	pointer-events: none;
	opacity: 0.6;
}

.join-hero-content {
	position: relative;
	z-index: 2;
	max-width: 560px;
}

.join-hero-title {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 900;
	color: #fff;
	line-height: 1.08;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	margin: 0 0 18px;
}

.join-hero-title .gold-text {
	color: var(--gold, #d4af37);
	display: block;
}

.join-hero-separator {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
}

.join-hero-separator .gold-crosshair-star {
	display: inline-block;
	width: 22px;
	height: 22px;
	background: var(--gold, #d4af37);
	clip-path: polygon(50% 0%, 53% 40%, 100% 50%, 53% 60%, 50% 100%, 47% 60%, 0% 50%, 47% 40%);
	flex-shrink: 0;
}

.join-hero-separator .gold-line {
	display: block;
	flex: 1;
	max-width: 120px;
	height: 2px;
	background: linear-gradient(90deg, var(--gold, #d4af37), transparent);
}

.join-hero-desc {
	font-family: 'Outfit', sans-serif;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.6;
	margin: 0;
}

.join-hero-image {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 42%;
	overflow: hidden;
}

.join-hero-image::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 120px;
	background: linear-gradient(90deg, #0a0a0a, transparent);
	z-index: 1;
}

.join-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	opacity: 0.55;
	filter: contrast(1.1) brightness(0.85);
}

/* --- GRID WRAPPER --- */
.join-grid-wrapper {
	background: #111;
	padding: 60px 80px 70px;
}

.join-grid-container {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 40px;
	align-items: start;
}

/* --- FORM COLUMN --- */
.join-form-card {
	background: #0d0d0d;
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 4px;
	padding: 36px 40px 40px;
}

.join-card-header {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 28px;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.join-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	background: rgba(212, 175, 55, 0.12);
	border: 1px solid rgba(212, 175, 55, 0.35);
	border-radius: 50%;
	flex-shrink: 0;
}

.join-card-icon svg {
	width: 22px;
	height: 22px;
	stroke: var(--gold, #d4af37);
}

.join-card-titles h3 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--gold, #d4af37);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 4px;
}

.join-card-titles p {
	font-family: 'Outfit', sans-serif;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.55);
	margin: 0;
}

/* Section sub-labels */
.join-section-label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--gold, #d4af37);
	text-transform: uppercase;
	margin: 24px 0 18px;
}

.join-label-line {
	display: block;
	height: 2px;
	width: 30px;
	background: var(--gold, #d4af37);
	flex-shrink: 0;
}

/* Form rows and groups */
.join-form-fields {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.join-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.join-form-group {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.join-form-group.full-width {
	grid-column: 1 / -1;
	margin-bottom: 16px;
}

.join-form-group label,
.join-form-fields>.join-form-group label {
	font-family: 'Outfit', sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 0.02em;
}

.join-form-group .req {
	color: var(--gold, #d4af37);
}

.join-form-group input[type="text"],
.join-form-group input[type="email"],
.join-form-group input[type="tel"],
.join-form-group input[type="date"],
.join-form-group select,
.join-form-group textarea {
	background: #1a1a1a;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 3px;
	color: #fff;
	font-family: 'Outfit', sans-serif;
	font-size: 0.9rem;
	padding: 11px 14px;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
	width: 100%;
	box-sizing: border-box;
}

.join-form-group input[type="text"]:focus,
.join-form-group input[type="email"]:focus,
.join-form-group input[type="tel"]:focus,
.join-form-group input[type="date"]:focus,
.join-form-group select:focus,
.join-form-group textarea:focus {
	border-color: var(--gold, #d4af37);
	box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.12);
}

.join-form-group input::placeholder,
.join-form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.28);
}

.join-form-group textarea {
	resize: vertical;
	min-height: 100px;
}

/* Date wrapper */
.join-date-wrapper {
	position: relative;
}

.join-date-wrapper input[type="date"] {
	padding-right: 40px;
}

.join-date-icon {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	width: 16px;
	height: 16px;
	color: var(--gold, #d4af37);
}

.join-date-icon svg {
	width: 16px;
	height: 16px;
	stroke: var(--gold, #d4af37);
}

/* Select wrapper */
.join-select-wrapper {
	position: relative;
}

.join-select-wrapper select {
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
}

.join-select-wrapper::after {
	content: '';
	position: absolute;
	right: 14px;
	bottom: 15px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid var(--gold, #d4af37);
	pointer-events: none;
}

.join-form-group select option {
	background: #1a1a1a;
	color: #fff;
}

/* Radio buttons */
.join-radio-group {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
	margin-top: 4px;
}

.join-radio-label {
	display: flex;
	align-items: center;
	gap: 9px;
	font-family: 'Outfit', sans-serif;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.8);
	cursor: pointer;
	user-select: none;
}

.join-radio-label input[type="radio"] {
	display: none;
}

.join-radio-custom {
	display: inline-block;
	width: 17px;
	height: 17px;
	border: 2px solid rgba(212, 175, 55, 0.5);
	border-radius: 50%;
	flex-shrink: 0;
	position: relative;
	transition: border-color 0.2s;
}

.join-radio-label input[type="radio"]:checked+.join-radio-custom {
	border-color: var(--gold, #d4af37);
}

.join-radio-label input[type="radio"]:checked+.join-radio-custom::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 8px;
	background: var(--gold, #d4af37);
	border-radius: 50%;
}

/* Checkbox */
.join-terms-row {
	margin: 20px 0 22px;
}

.join-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-family: 'Outfit', sans-serif;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.65);
	cursor: pointer;
	line-height: 1.5;
}

.join-checkbox-label input[type="checkbox"] {
	display: none;
}

.join-checkbox-custom {
	display: inline-block;
	width: 17px;
	height: 17px;
	border: 2px solid rgba(212, 175, 55, 0.45);
	border-radius: 2px;
	flex-shrink: 0;
	margin-top: 2px;
	position: relative;
	transition: border-color 0.2s, background 0.2s;
}

.join-checkbox-label input[type="checkbox"]:checked+.join-checkbox-custom {
	background: var(--gold, #d4af37);
	border-color: var(--gold, #d4af37);
}

.join-checkbox-label input[type="checkbox"]:checked+.join-checkbox-custom::after {
	content: '';
	position: absolute;
	top: 1px;
	left: 4px;
	width: 5px;
	height: 9px;
	border: 2px solid #000;
	border-top: none;
	border-left: none;
	transform: rotate(45deg);
}

.terms-link {
	color: var(--gold, #d4af37);
	text-decoration: underline;
}

/* Submit Button */
.join-submit-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 15px 24px;
	background: linear-gradient(135deg, #d4af37 0%, #f0c040 50%, #d4af37 100%);
	background-size: 200% auto;
	color: #000;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	transition: background-position 0.4s, transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.join-submit-btn:hover {
	background-position: right center;
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
}

.join-submit-btn:active {
	transform: translateY(0);
}

/* Privacy note */
.join-privacy-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	font-family: 'Outfit', sans-serif;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.38);
	margin-top: 14px;
	text-align: center;
}

.join-privacy-note svg {
	stroke: rgba(255, 255, 255, 0.4);
	flex-shrink: 0;
}

/* --- SIDEBAR COLUMN --- */
.join-sidebar-column {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.join-sidebar-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.88rem;
	font-weight: 800;
	color: var(--gold, #d4af37);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0 0 18px;
}

/* Why Join Card */
.join-why-card {
	background: #0d0d0d;
	border: 1px solid rgba(212, 175, 55, 0.18);
	border-radius: 4px;
	padding: 26px 24px;
}

.join-why-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.join-why-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.join-why-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1.5px solid rgba(212, 175, 55, 0.4);
	border-radius: 50%;
	flex-shrink: 0;
}

.join-why-icon svg {
	width: 18px;
	height: 18px;
	stroke: var(--gold, #d4af37);
}

.join-why-item h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 3px;
	letter-spacing: 0.02em;
}

.join-why-item p {
	font-family: 'Outfit', sans-serif;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
	line-height: 1.5;
}

/* Have Questions Card */
.join-questions-card {
	background: #0d0d0d;
	border: 1px solid rgba(212, 175, 55, 0.18);
	border-radius: 4px;
	padding: 26px 24px;
}

.join-questions-sub {
	font-family: 'Outfit', sans-serif;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55);
	margin: 0 0 18px;
}

.join-contact-row {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}

.join-contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1.5px solid rgba(212, 175, 55, 0.35);
	border-radius: 50%;
	flex-shrink: 0;
}

.join-contact-icon svg {
	width: 15px;
	height: 15px;
	stroke: var(--gold, #d4af37);
}

.join-contact-link {
	font-family: 'Outfit', sans-serif;
	font-size: 0.92rem;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	transition: color 0.2s;
}

.join-contact-link:hover {
	color: var(--gold, #d4af37);
}

.join-address-text {
	font-family: 'Outfit', sans-serif;
	font-size: 0.84rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.55;
}

/* --- HIGHLIGHTS BAR --- */
.join-highlights-bar {
	background: linear-gradient(135deg, #0d0b00 0%, #1a1200 50%, #0d0b00 100%);
	border-top: 1px solid rgba(212, 175, 55, 0.2);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.join-highlight-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 32px 28px;
	border-right: 1px solid rgba(212, 175, 55, 0.1);
	transition: background 0.25s;
}

.join-highlight-item:last-child {
	border-right: none;
}

.join-highlight-item:hover {
	background: rgba(212, 175, 55, 0.04);
}

.join-highlight-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1.5px solid rgba(212, 175, 55, 0.4);
	border-radius: 50%;
	flex-shrink: 0;
}

.join-highlight-icon svg {
	width: 20px;
	height: 20px;
	stroke: var(--gold, #d4af37);
}

.join-highlight-text h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.78rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 5px;
}

.join-highlight-text p {
	font-family: 'Outfit', sans-serif;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
	line-height: 1.5;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
	.join-grid-container {
		grid-template-columns: 1fr;
	}

	.join-sidebar-column {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.join-why-card,
	.join-questions-card {
		flex: 1;
		min-width: 280px;
	}

	.join-highlights-bar {
		grid-template-columns: repeat(2, 1fr);
	}

	.join-highlight-item:nth-child(2) {
		border-right: none;
	}

	.join-highlight-item:nth-child(3) {
		border-top: 1px solid rgba(212, 175, 55, 0.1);
	}

	.join-highlight-item:nth-child(4) {
		border-top: 1px solid rgba(212, 175, 55, 0.1);
		border-right: none;
	}
}

@media (max-width: 900px) {
	.join-hero {
		padding: 50px 30px 40px;
		min-height: 220px;
	}

	.join-hero-image {
		width: 35%;
		opacity: 0.4;
	}

	.join-grid-wrapper {
		padding: 50px 24px 60px;
	}
}

@media (max-width: 768px) {
	.join-hero-image {
		display: none;
	}

	.join-hero {
		padding: 44px 24px 36px;
	}

	.join-form-row {
		grid-template-columns: 1fr;
	}

	.join-select-wrapper::after {
		bottom: 15px;
	}

	.join-form-card {
		padding: 28px 20px;
	}

	.join-sidebar-column {
		flex-direction: column;
	}

	.join-highlights-bar {
		grid-template-columns: 1fr;
	}

	.join-highlight-item {
		border-right: none !important;
		border-top: 1px solid rgba(212, 175, 55, 0.1) !important;
		padding: 22px 24px;
	}

	.join-highlight-item:first-child {
		border-top: none !important;
	}
}

@media (max-width: 480px) {
	.join-radio-group {
		gap: 16px;
	}

	.join-grid-wrapper {
		padding: 36px 16px 48px;
	}
}


/* ==========================================================================
   CTA BRUSH SECTION (About Us / Other Pages)
   ========================================================================== */

.cta-brush-section {
	position: relative;
	background: linear-gradient(100deg, #c8960c 0%, #f0c040 40%, #d4af37 70%, #b8860b 100%);
	overflow: hidden;
	padding: 0;
}

/* Subtle diagonal texture overlay */
.cta-brush-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(-55deg,
			rgba(0, 0, 0, 0.04) 0px,
			rgba(0, 0, 0, 0.04) 1px,
			transparent 1px,
			transparent 12px);
	pointer-events: none;
}

.cta-brush-container {
	position: relative;
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 0 60px 0 0;
	min-height: 120px;
}

/* Shooter silhouette on the left */
.cta-silhouette-wrapper {
	position: relative;
	width: 160px;
	min-height: 120px;
	flex-shrink: 0;
	overflow: hidden;
}

.cta-shooter-silhouette {
	display: block;
	height: 140px;
	width: auto;
	object-fit: cover;
	object-position: center top;
	filter: brightness(0.3) sepia(1) saturate(0) contrast(1.2);
	opacity: 0.35;
	position: absolute;
	bottom: 0;
	left: -10px;
}

/* Text content */
.cta-brush-content {
	flex: 1;
	padding: 30px 0 30px 30px;
}

.cta-title {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.2rem, 2.5vw, 1.75rem);
	font-weight: 900;
	color: #000;
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	margin: 0 0 8px;
}

.cta-subtitle {
	font-family: 'Outfit', sans-serif;
	font-size: 0.9rem;
	color: rgba(0, 0, 0, 0.72);
	margin: 0;
	line-height: 1.5;
}

/* Button wrapper */
.cta-btn-wrapper {
	flex-shrink: 0;
}

.cta-appointment-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #0d0d0d;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 26px;
	border-radius: 2px;
	border: 2px solid transparent;
	transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
	white-space: nowrap;
}

.cta-appointment-btn:hover {
	background: #1a1a1a;
	border-color: rgba(212, 175, 55, 0.4);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.cta-appointment-btn:active {
	transform: translateY(0);
}

/* Calendar icon inside button */
.calendar-icon-dark {
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
	.cta-brush-container {
		padding: 30px 40px;
		gap: 24px;
	}

	.cta-silhouette-wrapper {
		display: none;
	}

	.cta-brush-content {
		padding: 0;
	}
}

@media (max-width: 640px) {
	.cta-brush-container {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 30px 24px;
		gap: 20px;
	}

	.cta-appointment-btn {
		width: auto;
		justify-content: center;
	}
}


/* ==========================================================================
   MENTOR PAGE — CREDENTIALS, QUOTE BANNER & CTA SECTION
   ========================================================================== */

/* --- Credentials section header label --- */
.mentor-credentials-section {
	background: #0a0a0a;
	padding: 60px 80px 70px;
}

.credentials-section-header {
	text-align: center;
	margin-bottom: 40px;
}

.credentials-badge-label {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	color: var(--gold, #d4af37);
	text-transform: uppercase;
	padding: 8px 22px;
	border: 1px solid rgba(212, 175, 55, 0.35);
	border-radius: 2px;
	background: rgba(212, 175, 55, 0.06);
}

/* --- Credentials cards grid --- */
.credentials-cards-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.credential-card {
	background: #111;
	border: 1px solid rgba(212, 175, 55, 0.15);
	border-radius: 6px;
	padding: 30px 20px 26px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 18px;
	transition: border-color 0.25s, background 0.25s, transform 0.25s;
	cursor: default;
}

.credential-card:hover {
	border-color: rgba(212, 175, 55, 0.5);
	background: #161616;
	transform: translateY(-4px);
}

.credential-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border: 1.5px solid rgba(212, 175, 55, 0.35);
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.08);
	flex-shrink: 0;
	transition: background 0.25s, border-color 0.25s;
}

.credential-card:hover .credential-icon {
	background: rgba(212, 175, 55, 0.15);
	border-color: var(--gold, #d4af37);
}

.credential-icon svg {
	width: 28px;
	height: 28px;
	stroke: var(--gold, #d4af37);
}

.credential-text {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.74rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.4;
	margin: 0;
}

/* Responsive credentials */
@media (max-width: 1100px) {
	.credentials-cards-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.mentor-credentials-section {
		padding: 50px 40px 60px;
	}
}

@media (max-width: 768px) {
	.credentials-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.mentor-credentials-section {
		padding: 40px 20px 50px;
	}
}

@media (max-width: 480px) {
	.credentials-cards-grid {
		grid-template-columns: 1fr;
		max-width: 320px;
	}
}

/* ==========================================================================
   MENTOR QUOTE BANNER
   ========================================================================== */

.mentor-quote-section {
	position: relative;
	overflow: hidden;
	min-height: 220px;
	display: flex;
	align-items: center;
}

.mentor-quote-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.mentor-quote-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: brightness(0.18) blur(3px);
}

.mentor-quote-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.mentor-quote-container {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	padding: 60px 80px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.quote-mark {
	font-family: 'Georgia', serif;
	font-size: 5rem;
	line-height: 1;
	color: var(--gold, #d4af37);
	flex-shrink: 0;
	user-select: none;
	opacity: 0.9;
}

.quote-mark.open {
	align-self: flex-start;
	margin-top: -10px;
}

.quote-mark.close {
	align-self: flex-end;
	margin-bottom: -10px;
}

.quote-content {
	text-align: center;
	flex: 1;
	padding: 10px 0;
}

.quote-text {
	font-family: 'Georgia', 'Times New Roman', serif;
	font-size: clamp(1.2rem, 3vw, 1.9rem);
	font-style: italic;
	color: #fff;
	line-height: 1.5;
	margin: 0 0 16px;
	letter-spacing: 0.01em;
}

.quote-author {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	color: var(--gold, #d4af37);
	text-transform: uppercase;
	margin: 0;
}

@media (max-width: 768px) {
	.mentor-quote-container {
		padding: 50px 30px;
		gap: 12px;
	}

	.quote-mark {
		font-size: 3.5rem;
	}
}

@media (max-width: 480px) {
	.mentor-quote-container {
		padding: 40px 20px;
		flex-direction: column;
		align-items: center;
	}

	.quote-mark.open,
	.quote-mark.close {
		align-self: center;
	}
}

/* ==========================================================================
   MENTOR GUIDANCE CTA SECTION
   ========================================================================== */

.mentor-cta-section {
	background: linear-gradient(135deg, #c8960c 0%, #f0c040 40%, #d4af37 70%, #b8860b 100%);
	position: relative;
	overflow: hidden;
	padding: 0;
}

.mentor-cta-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(-55deg,
			rgba(0, 0, 0, 0.04) 0px,
			rgba(0, 0, 0, 0.04) 1px,
			transparent 1px,
			transparent 12px);
	pointer-events: none;
}

.mentor-cta-container {
	position: relative;
	z-index: 1;
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 36px 60px;
}

.mentor-cta-left {
	display: flex;
	align-items: center;
	gap: 24px;
	flex: 1;
}

.mentor-cta-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border: 2px solid rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.1);
	flex-shrink: 0;
}

.mentor-cta-icon-wrapper svg {
	width: 28px;
	height: 28px;
	stroke: #000;
}

.mentor-cta-text-block {
	flex: 1;
}

.mentor-cta-title {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(0.9rem, 2vw, 1.15rem);
	font-weight: 900;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	line-height: 1.25;
	margin: 0 0 4px;
}

.mentor-cta-subtitle {
	font-family: 'Outfit', sans-serif;
	font-size: 0.88rem;
	color: rgba(0, 0, 0, 0.7);
	margin: 0;
}

.mentor-cta-right {
	flex-shrink: 0;
}

.mentor-appointment-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #0d0d0d;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 28px;
	border-radius: 2px;
	border: 2px solid transparent;
	white-space: nowrap;
	transition: background 0.25s, transform 0.2s, box-shadow 0.25s, border-color 0.25s;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.mentor-appointment-btn:hover {
	background: #1a1a1a;
	border-color: rgba(212, 175, 55, 0.4);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.mentor-appointment-btn .calendar-icon-dark {
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	flex-shrink: 0;
}

@media (max-width: 900px) {
	.mentor-cta-container {
		flex-direction: column;
		align-items: flex-start;
		padding: 36px 40px;
		gap: 24px;
	}

	.mentor-appointment-btn {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 600px) {
	.mentor-cta-container {
		padding: 30px 20px;
	}
}


/* TIMELINE TREE SECTION */
.timeline-section {
	position: relative;
}

.timeline-tree {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 0;
}

.timeline-tree::before {
	content: '';
	position: absolute;
	top: var(--line-top, 60px);
	bottom: var(--line-bottom, 60px);
	left: 50%;
	width: 4px;
	background: rgba(255, 196, 0, 0.15); /* Dark background line */
	transform: translateX(-50%);
	border-radius: 2px;
	z-index: 1;
}

.timeline-progress-line {
	position: absolute;
	top: var(--line-top, 60px);
	left: 50%;
	width: 4px;
	background: var(--gold); /* Gold fill line */
	transform: translateX(-50%);
	border-radius: 2px;
	z-index: 2;
	height: 0; /* Updated via JS scroll */
	transition: height 0.15s ease-out;
}

.timeline-node {
	position: relative;
	width: 50%;
	margin-bottom: 40px;
}

.timeline-node.left {
	left: 0;
	padding-right: 40px;
	text-align: right;
}

.timeline-node.right {
	left: 50%;
	padding-left: 40px;
	text-align: left;
}

.timeline-dot {
	position: absolute;
	top: 10px;
	width: 20px;
	height: 20px;
	background: var(--bg);
	border: 4px solid var(--gold);
	border-radius: 50%;
	z-index: 10; /* Above the progress lines */
	cursor: pointer;
	transition: background 0.3s, transform 0.3s;
}

.timeline-node.left .timeline-dot {
	right: -10px;
}

.timeline-node.right .timeline-dot {
	left: -10px;
}

.timeline-node:hover .timeline-dot,
.timeline-node.active .timeline-dot {
	background: var(--gold);
	transform: scale(1.3);
}

.timeline-content {
	background: rgba(8, 13, 15, 0.85);
	border: 1px solid rgba(255, 196, 0, 0.2);
	border-radius: 8px;
	padding: 20px;
	cursor: pointer;
	position: relative;
	opacity: 0;
	transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s, box-shadow 0.3s;
}

.timeline-node.left .timeline-content {
	transform: translateX(-50px);
}

.timeline-node.right .timeline-content {
	transform: translateX(50px);
}

.timeline-node.active .timeline-content {
	opacity: 1;
	transform: translateX(0);
}


.timeline-node.left .timeline-content::before {
	content: '';
	position: absolute;
	top: 14px;
	right: -10px;
	border-width: 10px 0 10px 10px;
	border-style: solid;
	border-color: transparent transparent transparent rgba(255, 196, 0, 0.2);
}

.timeline-node.right .timeline-content::before {
	content: '';
	position: absolute;
	top: 14px;
	left: -10px;
	border-width: 10px 10px 10px 0;
	border-style: solid;
	border-color: transparent rgba(255, 196, 0, 0.2) transparent transparent;
}

.timeline-content:hover,
.timeline-node.active .timeline-content {
	border-color: var(--gold);
	box-shadow: 0 4px 20px rgba(255, 196, 0, 0.15);
}

.timeline-node.active .timeline-content:hover {
	transform: translateY(-2px);
}

.timeline-year {
	font-size: 24px;
	font-weight: 900;
	color: var(--gold);
	margin: 0;
}

.timeline-details {
	display: none;
	margin-top: 15px;
	color: var(--text-light, #d7dcdf);
	font-size: 15px;
	line-height: 1.6;
}

.timeline-details p {
	margin: 0;
}

.timeline-node.active .timeline-details {
	display: block;
	animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.timeline-tree::before,
	.timeline-progress-line {
		left: 20px !important;
		transform: translateX(-50%) !important;
	}

	.timeline-node {
		width: 100%;
		padding-left: 60px !important;
		padding-right: 0 !important;
		text-align: left !important;
		left: 0 !important;
	}

	.timeline-node .timeline-content {
		transform: translateY(30px) !important;
	}

	.timeline-node.active .timeline-content {
		transform: translateY(0) !important;
	}

	.timeline-dot {
		left: 10px !important;
		right: auto !important;
	}

	.timeline-node.left .timeline-content::before,
	.timeline-node.right .timeline-content::before {
		left: -10px;
		right: auto;
		border-width: 10px 10px 10px 0;
		border-color: transparent rgba(255, 196, 0, 0.2) transparent transparent;
	}
}

/* Highlight default date picker icons on dark backgrounds */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.8) sepia(1) hue-rotate(350deg) saturate(3) brightness(1.2);
    cursor: pointer;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover {
    filter: invert(1) sepia(1) hue-rotate(350deg) saturate(5) brightness(1.5);
}