/**
 * Gymworx Component Styles
 *
 * Styles for Section Hero, Feature Grid, Process Steps,
 * Testimonial, and CTA Banner Elementor widgets.
 */

/* ========== NAVIGATION DROPDOWNS ========== */

/* Desktop dropdown container */
.gw-nav-item {
	position: relative;
}

.gw-nav-parent {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.gw-nav-chevron {
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.gw-nav-has-dropdown:hover .gw-nav-chevron {
	transform: rotate(180deg);
}

/* Desktop dropdown panel */
.gw-nav-dropdown {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	min-width: 200px;
	padding-top: 12px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
	z-index: 150;
}

.gw-nav-has-dropdown:hover .gw-nav-dropdown,
.gw-nav-dropdown.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.gw-nav-dropdown-inner {
	background: rgba(24, 24, 24, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(132, 117, 78, 0.12);
	padding: 8px 0;
	display: flex;
	flex-direction: column;
}

.gw-nav-dropdown-link {
	display: block;
	padding: 10px 24px;
	font-family: var(--gw-font-heading);
	font-size: 0.75rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #b0b0b0;
	white-space: nowrap;
	transition: color 0.2s ease, background 0.2s ease;
	text-decoration: none;
}

.gw-nav-dropdown-link:hover {
	color: #a8976a;
	background: rgba(132, 117, 78, 0.06);
}

.gw-nav-dropdown-link.is-active {
	color: #a8976a;
}

/* Mobile dropdown */
.gw-mobile-toggle {
	cursor: pointer;
	background: none;
	border: none;
	color: #78716C;
	transition: color 0.2s ease;
}

.gw-mobile-toggle:hover {
	color: #a8976a;
}

.gw-mobile-chevron {
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.gw-mobile-toggle[aria-expanded="true"] .gw-mobile-chevron {
	transform: rotate(180deg);
}

.gw-mobile-dropdown {
	display: none;
	padding: 4px 0 8px;
}

.gw-mobile-dropdown.is-open {
	display: block;
}

.gw-mobile-dropdown a:hover {
	color: #a8976a !important;
}

/* ========== SECTION HERO ========== */
.gw-section-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: #0f0f0f;
}

.gw-section-hero-media {
	position: absolute;
	inset: 0;
}

.gw-section-hero-media img,
.gw-section-hero-media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.gw-section-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.gw-section-hero-content {
	position: relative;
	z-index: 2;
	padding: 60px 40px;
	max-width: 900px;
}

.gw-section-hero--contained {
	overflow: visible !important;
}

.gw-hero-heading {
	font-family: var(--gw-font-heading);
	font-weight: 700;
	font-size: clamp(2.4rem, 5vw, 4rem);
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #ffffff;
	line-height: 1.1;
	margin: 16px 0 20px;
}

.gw-hero-desc {
	font-family: var(--gw-font-body);
	font-size: 1.05rem;
	line-height: 1.7;
	color: #b0b0b0;
	margin-bottom: 28px;
	max-width: 600px;
}

.gw-section-hero .section-label {
	margin-bottom: 8px;
	display: inline-block;
}

/* ========== SHARED SECTION HEADINGS ========== */
.gw-feature-grid-section .section-label,
.gw-steps-section .section-label,
.gw-stats-section .section-label,
.gw-testimonial-section .section-label,
.gw-pullquote .section-label {
	display: inline-block;
	margin-bottom: 8px;
}

.gw-feature-grid-heading,
.gw-steps-heading,
.gw-stats-heading,
.gw-testimonial-heading {
	font-family: var(--gw-font-heading);
	font-weight: 700;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #ffffff;
	margin: 12px 0 24px;
	line-height: 1.2;
}

/* ========== FEATURE GRID ========== */
.gw-feature-grid {
	display: grid;
	grid-template-columns: repeat(var(--gw-fg-columns, 3), 1fr);
	gap: var(--gw-fg-gap, 24px);
}

.gw-feature-card {
	padding: 32px 28px;
	border-radius: 12px;
	transition: border-color 0.3s, transform 0.3s;
}

.gw-feature-card:hover {
	transform: translateY(-2px);
}

a.gw-feature-card {
	text-decoration: none;
	display: block;
}

/* Surface style */
.gw-feature-card--surface {
	background: var(--gw-surface, #181818);
	border: 1px solid var(--gw-border, rgba(255, 255, 255, 0.06));
}

.gw-feature-card--surface:hover {
	border-color: var(--gw-border-gold, rgba(132, 117, 78, 0.2));
}

/* Glass style */
.gw-feature-card--glass {
	background: rgba(20, 20, 20, 0.65);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid var(--gw-border, rgba(255, 255, 255, 0.06));
}

.gw-feature-card--glass:hover {
	border-color: var(--gw-border-gold, rgba(132, 117, 78, 0.2));
}

/* Outline style */
.gw-feature-card--outline {
	background: transparent;
	border: 1px solid rgba(132, 117, 78, 0.25);
}

.gw-feature-card--outline:hover {
	border-color: rgba(132, 117, 78, 0.5);
}

.gw-feature-number {
	font-family: var(--gw-font-heading);
	font-weight: 700;
	font-size: 2rem;
	color: rgba(132, 117, 78, 0.3);
	line-height: 1;
	display: block;
	margin-bottom: 16px;
}

.gw-feature-title {
	font-family: var(--gw-font-heading);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #ffffff;
	margin: 0 0 12px;
}

.gw-feature-desc {
	font-family: var(--gw-font-body);
	font-weight: 300;
	font-size: 0.85rem;
	line-height: 1.7;
	color: #9a9a9a;
	margin: 0;
}

/* ========== PROCESS STEPS ========== */
.gw-steps {
	display: flex;
	position: relative;
}

.gw-steps--horizontal {
	flex-direction: row;
}

.gw-steps--vertical {
	flex-direction: column;
}

.gw-steps--horizontal .gw-step {
	flex: 1;
	text-align: center;
	position: relative;
	z-index: 1;
}

/* Horizontal rail — runs between the centers of the first and last circles */
.gw-steps--connected.gw-steps--horizontal::before {
	content: '';
	position: absolute;
	top: 28px;
	left: 16.667%;
	right: 16.667%;
	height: 1px;
	background: rgba(132, 117, 78, 0.25);
	z-index: 0;
}

/* Vertical layout — rail on the left */
.gw-steps--vertical .gw-step {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	position: relative;
	z-index: 1;
	padding-bottom: 32px;
}

.gw-steps--vertical .gw-step:last-child {
	padding-bottom: 0;
}

.gw-steps--connected.gw-steps--vertical::before {
	content: '';
	position: absolute;
	top: 28px;
	left: 28px;
	bottom: 28px;
	width: 1px;
	background: rgba(132, 117, 78, 0.25);
	z-index: 0;
}

.gw-steps--vertical .gw-step-content {
	padding-top: 12px;
}

.gw-step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	min-width: 56px;
	border-radius: 50%;
	border: 1px solid rgba(132, 117, 78, 0.3);
	background: var(--gw-color-bg, #0f0f0f);
	font-family: var(--gw-font-heading);
	font-weight: 700;
	font-size: 1.1rem;
	color: #a8976a;
	margin: 0 auto 20px;
	position: relative;
	z-index: 2;
	transition: border-color 0.3s ease, color 0.3s ease;
}

.gw-step:hover .gw-step-number {
	border-color: rgba(132, 117, 78, 0.6);
	color: #c8b88a;
}

.gw-steps--vertical .gw-step-number {
	margin: 0;
}

.gw-step-title {
	font-family: var(--gw-font-heading);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #ffffff;
	margin: 0 0 10px;
}

.gw-step-desc {
	font-family: var(--gw-font-body);
	font-weight: 300;
	font-size: 0.85rem;
	line-height: 1.7;
	color: #9a9a9a;
	margin: 0;
}

/* ========== TESTIMONIAL ========== */
.gw-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(var(--gw-tg-columns, 2), 1fr);
	gap: 24px;
}

.gw-testimonial-slider {
	position: relative;
}

.gw-testimonial-track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	overflow-y: visible;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	cursor: grab;
}

.gw-testimonial-track::-webkit-scrollbar {
	display: none;
}

.gw-testimonial-track .gw-testimonial-card {
	flex: 0 0 420px;
	width: 420px;
}

.gw-testimonial-track .gw-testimonial-card:first-child {
	margin-left: 24px;
}

.gw-testimonial-card {
	padding: 32px 28px;
	border-radius: 12px;
	background: var(--gw-surface, #181818);
	border: 1px solid var(--gw-border, rgba(255, 255, 255, 0.06));
}

.gw-testimonial-quote {
	font-family: var(--gw-font-body);
	font-weight: 300;
	font-size: 0.95rem;
	line-height: 1.8;
	color: #b0b0b0;
	margin: 0 0 24px;
	font-style: italic;
}

.gw-testimonial-quote::before {
	content: '\201C';
	font-family: var(--gw-font-heading);
	font-size: 2.5rem;
	font-style: normal;
	color: rgba(132, 117, 78, 0.3);
	line-height: 0.5;
	display: block;
	margin-bottom: 12px;
}

.gw-testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 20px;
	border-top: 1px solid rgba(132, 117, 78, 0.12);
}

.gw-testimonial-avatar {
	width: 40px !important;
	height: 40px !important;
	min-width: 40px;
	aspect-ratio: 1 / 1;
	border-radius: 50% !important;
	object-fit: cover;
	object-position: center top;
	flex-shrink: 0;
}

.gw-testimonial-name {
	font-family: var(--gw-font-heading);
	font-weight: 600;
	font-size: 0.8rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #ffffff;
	display: block;
}

.gw-testimonial-role {
	font-family: var(--gw-font-body);
	font-size: 0.7rem;
	color: #78716C;
	display: block;
	margin-top: 2px;
}

/* Testimonial slider arrows — centered on sides */
.gw-testimonial-slider .gw-holo-slider-arrows {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	margin: 0;
	pointer-events: none;
	z-index: 2;
}

.gw-testimonial-slider .gw-holo-slider-arrow {
	pointer-events: auto;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gw-testimonial-slider:hover .gw-holo-slider-arrow {
	opacity: 1;
}

.gw-testimonial-slider .gw-holo-slider-prev {
	margin-left: 12px;
}

.gw-testimonial-slider .gw-holo-slider-next {
	margin-right: 12px;
}

/* ========== CTA BANNER ========== */
.gw-cta-banner {
	border-radius: 12px;
}

.gw-cta-banner--surface {
	background: var(--gw-surface, #181818);
}

.gw-cta-banner--transparent {
	background: transparent;
}

.gw-cta-banner--gradient {
	background: linear-gradient(135deg, rgba(132, 117, 78, 0.08), rgba(15, 15, 15, 0.95), rgba(132, 117, 78, 0.05));
}

.gw-cta-banner--bordered {
	border-top: 1px solid rgba(132, 117, 78, 0.15);
	border-bottom: 1px solid rgba(132, 117, 78, 0.15);
	border-radius: 0;
}

.gw-cta-heading {
	font-family: var(--gw-font-heading);
	font-weight: 700;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #ffffff;
	margin: 12px 0 16px;
	line-height: 1.2;
}

.gw-cta-desc {
	font-family: var(--gw-font-body);
	font-size: 0.95rem;
	line-height: 1.7;
	color: #9a9a9a;
	margin-bottom: 28px;
	max-width: 600px;
}

.gw-cta-banner[style*="text-align:center"] .gw-cta-desc,
.gw-cta-banner[style*="text-align: center"] .gw-cta-desc {
	margin-left: auto;
	margin-right: auto;
}

.gw-cta-banner .section-label {
	display: inline-block;
}

/* ========== PRICING TABLE ========== */
.gw-pricing-section {
	text-align: center;
}

.gw-pricing-heading {
	font-family: var(--gw-font-heading);
	font-weight: 700;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #ffffff;
	margin: 12px 0 16px;
	line-height: 1.2;
}

.gw-pricing-desc {
	font-family: var(--gw-font-body);
	font-size: 0.95rem;
	line-height: 1.7;
	color: #9a9a9a;
	margin: 0 auto 40px;
	max-width: 600px;
}

.gw-pricing-section .section-label {
	display: inline-block;
}

.gw-pricing-grid {
	display: grid;
	grid-template-columns: repeat(var(--gw-pg-columns, 2), 1fr);
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
}

.gw-pricing-card {
	padding: 40px 32px;
	border-radius: 12px;
	background: var(--gw-surface, #181818);
	border: 1px solid var(--gw-border, rgba(255, 255, 255, 0.06));
	text-align: left;
	display: flex;
	flex-direction: column;
	transition: border-color 0.3s, transform 0.3s;
}

.gw-pricing-card:hover {
	transform: translateY(-2px);
}

.gw-pricing-card--featured {
	border-color: rgba(132, 117, 78, 0.3);
	background: linear-gradient(
		180deg,
		rgba(132, 117, 78, 0.08) 0%,
		var(--gw-surface, #181818) 40%
	);
}

.gw-pricing-card-label {
	font-family: var(--gw-font-heading);
	font-weight: 600;
	font-size: 0.65rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #a8976a;
	display: inline-block;
	margin-bottom: 12px;
	padding: 4px 12px;
	border-radius: 20px;
	background: rgba(132, 117, 78, 0.1);
	border: 1px solid rgba(132, 117, 78, 0.2);
}

.gw-pricing-card-title {
	font-family: var(--gw-font-heading);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #ffffff;
	margin: 0 0 20px;
}

.gw-pricing-amount {
	font-family: var(--gw-font-heading);
	font-weight: 700;
	font-size: clamp(2rem, 4vw, 3rem);
	color: #ffffff;
	line-height: 1;
	margin-bottom: 4px;
}

.gw-pricing-detail {
	font-family: var(--gw-font-body);
	font-size: 0.8rem;
	color: #78716C;
	display: block;
	margin-bottom: 24px;
}

.gw-pricing-features {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
	flex: 1;
}

.gw-pricing-features li {
	font-family: var(--gw-font-body);
	font-size: 0.85rem;
	color: #b0b0b0;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	position: relative;
	padding-left: 20px;
}

.gw-pricing-features li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(132, 117, 78, 0.4);
}

.gw-pricing-card .btn-holo {
	align-self: flex-start;
	margin-top: auto;
}

/* ========== SPLIT CONTENT ========== */
.gw-split {
	display: grid;
	grid-template-columns: var(--gw-split-ratio, 1fr 1fr);
	gap: 48px;
	align-items: var(--gw-split-align, center);
}

.gw-split--image-right .gw-split-media {
	order: 2;
}

.gw-split--image-right .gw-split-content {
	order: 1;
}

.gw-split-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gw-split-content .section-label {
	display: inline-block;
	margin-bottom: 8px;
}

.gw-split-heading {
	font-family: var(--gw-font-heading);
	font-weight: 700;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #ffffff;
	margin: 0 0 20px;
	line-height: 1.2;
}

.gw-split-desc {
	font-family: var(--gw-font-body);
	font-size: 0.95rem;
	line-height: 1.8;
	color: #b0b0b0;
	margin-bottom: 28px;
}

.gw-split-desc p {
	margin-bottom: 1em;
}

.gw-split-desc p:last-child {
	margin-bottom: 0;
}

.gw-split-extra {
	font-family: var(--gw-font-body);
	font-size: 0.8rem;
	color: #78716C;
	margin-top: 16px;
}

/* Contact Split — form content area */
.gw-split-form-content {
	font-family: var(--gw-font-body);
	font-size: 0.9rem;
	line-height: 1.7;
	color: #b0b0b0;
}

.gw-split-form-content input[type="text"],
.gw-split-form-content input[type="email"],
.gw-split-form-content input[type="tel"],
.gw-split-form-content input[type="url"],
.gw-split-form-content input[type="number"],
.gw-split-form-content textarea,
.gw-split-form-content select {
	width: 100%;
	padding: 12px 16px;
	background: var(--gw-surface, #181818);
	border: 1px solid rgba(255, 255, 255, 0.06);
	color: #ffffff;
	font-family: var(--gw-font-body);
	font-size: 0.85rem;
	transition: border-color 0.3s ease;
	margin-bottom: 16px;
}

.gw-split-form-content input:focus,
.gw-split-form-content textarea:focus,
.gw-split-form-content select:focus {
	outline: none;
	border-color: rgba(132, 117, 78, 0.4);
}

.gw-split-form-content textarea {
	min-height: 120px;
	resize: vertical;
}

.gw-split-form-content label {
	display: block;
	font-family: var(--gw-font-heading);
	font-size: 0.7rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #78716C;
	margin-bottom: 6px;
}

/* ========== STAT COUNTER ========== */
.gw-stats {
	display: flex;
	gap: 32px;
}

.gw-stats--row {
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
}

.gw-stats--stack {
	flex-direction: column;
}

.gw-stat {
	text-align: center;
	flex: 1;
	min-width: 120px;
}

.gw-stats--stack .gw-stat {
	text-align: left;
}

/* Bordered style */
.gw-stats--bordered .gw-stat {
	padding: 24px 32px;
	position: relative;
}

.gw-stats--bordered.gw-stats--row .gw-stat:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 60%;
	background: rgba(132, 117, 78, 0.2);
}

.gw-stats--bordered.gw-stats--stack .gw-stat:not(:last-child)::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60%;
	height: 1px;
	background: rgba(132, 117, 78, 0.2);
}

/* Cards style */
.gw-stats--cards .gw-stat {
	padding: 28px 24px;
	background: var(--gw-surface, #181818);
	border: 1px solid var(--gw-border, rgba(255, 255, 255, 0.06));
	border-radius: 12px;
}

.gw-stat-number {
	font-family: var(--gw-font-heading);
	font-weight: 700;
	font-size: clamp(2rem, 4vw, 3.5rem);
	color: #ffffff;
	line-height: 1;
	display: block;
	margin-bottom: 8px;
}

.gw-stat-suffix {
	font-size: 0.5em;
	font-weight: 600;
	color: rgba(132, 117, 78, 0.5);
	margin-left: 4px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.gw-stat-label {
	font-family: var(--gw-font-body);
	font-size: 0.75rem;
	color: #78716C;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	display: block;
}

/* ========== INFO LIST ========== */
.gw-info-list-heading {
	font-family: var(--gw-font-heading);
	font-weight: 700;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #ffffff;
	margin: 12px 0 16px;
	line-height: 1.2;
}

.gw-info-list-desc {
	font-family: var(--gw-font-body);
	font-size: 0.95rem;
	line-height: 1.7;
	color: #9a9a9a;
	margin-bottom: 32px;
	max-width: 600px;
}

.gw-info-list-section .section-label {
	display: inline-block;
}

.gw-info-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.gw-info-list--grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.gw-info-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

/* Bordered style */
.gw-info-list--bordered .gw-info-item {
	padding: 20px 0;
	padding-left: 20px;
	border-left: 2px solid rgba(132, 117, 78, 0.3);
}

/* Surface style */
.gw-info-list--surface .gw-info-item {
	padding: 24px;
	background: var(--gw-surface, #181818);
	border: 1px solid var(--gw-border, rgba(255, 255, 255, 0.06));
	border-radius: 12px;
}

/* Minimal style */
.gw-info-list--minimal .gw-info-item {
	padding: 12px 0;
}

.gw-info-list--minimal .gw-info-item:not(:last-child) {
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.gw-info-number {
	font-family: var(--gw-font-heading);
	font-weight: 700;
	font-size: 1.5rem;
	color: rgba(132, 117, 78, 0.3);
	line-height: 1;
	flex-shrink: 0;
	min-width: 32px;
}

.gw-info-icon {
	color: #a8976a;
	font-size: 1.2rem;
	flex-shrink: 0;
	min-width: 24px;
}

.gw-info-title {
	font-family: var(--gw-font-heading);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #ffffff;
	margin: 0 0 8px;
}

.gw-info-content {
	font-family: var(--gw-font-body);
	font-weight: 300;
	font-size: 0.85rem;
	line-height: 1.7;
	color: #9a9a9a;
	margin: 0;
}

a.gw-info-item {
	text-decoration: none;
	transition: border-color 0.3s;
}

a.gw-info-item:hover {
	border-color: rgba(132, 117, 78, 0.5);
}

/* ========== BRAND BAR ========== */
.gw-brand-heading {
	font-family: var(--gw-font-heading);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #ffffff;
	margin: 12px 0 24px;
}

.gw-brand-bar .section-label {
	display: inline-block;
}

.gw-brand-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 32px;
}

.gw-brand-item {
	text-decoration: none;
	transition: opacity 0.3s;
}

/* Opacity levels */
.gw-brand-list--opacity-muted .gw-brand-item {
	opacity: 0.5;
}

.gw-brand-list--opacity-subtle .gw-brand-item {
	opacity: 0.3;
}

.gw-brand-list--opacity-muted .gw-brand-item:hover,
.gw-brand-list--opacity-subtle .gw-brand-item:hover {
	opacity: 1;
}

/* Text mode */
.gw-brand-name {
	font-family: var(--gw-font-heading);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #ffffff;
}

.gw-brand-list--small .gw-brand-name {
	font-size: 0.7rem;
	letter-spacing: 2px;
}

.gw-brand-list--medium .gw-brand-name {
	font-size: 0.85rem;
}

.gw-brand-list--large .gw-brand-name {
	font-size: 1.1rem;
	letter-spacing: 4px;
}

/* Logo mode */
.gw-brand-logo {
	height: 36px;
	width: auto;
	object-fit: contain;
}

.gw-brand-list--small .gw-brand-logo {
	height: 24px;
}

.gw-brand-list--large .gw-brand-logo {
	height: 48px;
}

/* ========== ACCORDION ========== */
.gw-accordion-heading {
	font-family: var(--gw-font-heading);
	font-weight: 700;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #ffffff;
	margin: 12px 0 16px;
	line-height: 1.2;
}

.gw-accordion-desc {
	font-family: var(--gw-font-body);
	font-size: 0.95rem;
	line-height: 1.7;
	color: #9a9a9a;
	margin-bottom: 32px;
	max-width: 600px;
}

.gw-accordion-section .section-label {
	display: inline-block;
}

.gw-accordion {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.gw-accordion-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gw-accordion--surface .gw-accordion-item {
	background: var(--gw-surface, #181818);
	border: 1px solid var(--gw-border, rgba(255, 255, 255, 0.06));
	border-radius: 12px;
	margin-bottom: 8px;
}

.gw-accordion-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
}

.gw-accordion--surface .gw-accordion-trigger {
	padding: 20px 24px;
}

.gw-accordion-trigger-text {
	font-family: var(--gw-font-heading);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #ffffff;
	transition: color 0.3s;
}

.gw-accordion-item.is-open .gw-accordion-trigger-text {
	color: #a8976a;
}

.gw-accordion-icon {
	color: #78716C;
	flex-shrink: 0;
	transition: transform 0.3s;
	margin-left: 16px;
}

.gw-accordion-item.is-open .gw-accordion-icon {
	transform: rotate(180deg);
}

.gw-accordion-panel {
	overflow: hidden;
}

.gw-accordion-content {
	padding: 0 0 20px;
	font-family: var(--gw-font-body);
	font-weight: 300;
	font-size: 0.9rem;
	line-height: 1.8;
	color: #b0b0b0;
}

.gw-accordion--surface .gw-accordion-content {
	padding: 0 24px 20px;
}

.gw-accordion-content p {
	margin-bottom: 1em;
}

.gw-accordion-content p:last-child {
	margin-bottom: 0;
}

/* ========== VIDEO SHOWCASE ========== */
.gw-video-showcase .section-label {
	display: inline-block;
}

.gw-video-heading {
	font-family: var(--gw-font-heading);
	font-weight: 700;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #ffffff;
	margin: 12px 0 24px;
	line-height: 1.2;
}

.gw-video-wrapper {
	position: relative;
	overflow: hidden;
	background: #0a0a0a;
}

.gw-video--16-9 {
	aspect-ratio: 16 / 9;
}

.gw-video--21-9 {
	aspect-ratio: 21 / 9;
}

.gw-video--4-3 {
	aspect-ratio: 4 / 3;
}

.gw-video-poster {
	position: absolute;
	inset: 0;
	z-index: 2;
	cursor: pointer;
}

.gw-video-poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gw-video-poster::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	transition: background 0.3s;
}

.gw-video-poster:hover::after {
	background: rgba(0, 0, 0, 0.2);
}

.gw-video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	background: none;
	border: none;
	cursor: pointer;
	transition: transform 0.3s, opacity 0.3s;
	opacity: 0.9;
}

.gw-video-play:hover {
	transform: translate(-50%, -50%) scale(1.1);
	opacity: 1;
}

.gw-video-player {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

iframe.gw-video-player {
	border: none;
	position: absolute;
	inset: 0;
}

.gw-video-caption {
	font-family: var(--gw-font-body);
	font-size: 0.8rem;
	color: #78716C;
	margin-top: 12px;
	text-align: center;
}

/* ========== PULLQUOTE ========== */
.gw-pullquote {
	padding: 40px 0;
}

.gw-pullquote-mark {
	font-family: var(--gw-font-heading);
	font-size: 4rem;
	color: rgba(132, 117, 78, 0.3);
	line-height: 0.5;
	display: block;
	margin-bottom: 20px;
}

.gw-pullquote-text {
	font-family: var(--gw-font-heading);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #ffffff;
	margin: 0;
	line-height: 1.3;
}

.gw-pullquote--medium .gw-pullquote-text {
	font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.gw-pullquote--large .gw-pullquote-text {
	font-size: clamp(1.4rem, 3vw, 2rem);
}

.gw-pullquote--xlarge .gw-pullquote-text {
	font-size: clamp(1.6rem, 4vw, 2.6rem);
}

/* Bordered style */
.gw-pullquote--bordered {
	border-left: 3px solid rgba(132, 117, 78, 0.4);
	padding-left: 32px;
}

.gw-pullquote--bordered .gw-pullquote-mark {
	display: none;
}

/* Minimal style */
.gw-pullquote--minimal .gw-pullquote-mark {
	display: none;
}

.gw-pullquote-footer {
	margin-top: 20px;
}

.gw-pullquote .gw-holo-line {
	width: 60px;
}

.gw-pullquote-author {
	font-family: var(--gw-font-heading);
	font-weight: 600;
	font-size: 0.75rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #a8976a;
	display: block;
}

.gw-pullquote-detail {
	font-family: var(--gw-font-body);
	font-size: 0.7rem;
	color: #78716C;
	display: block;
	margin-top: 4px;
}

/* ========== IMAGE SHOWCASE ========== */
.gw-image-showcase .section-label {
	display: inline-block;
}

.gw-showcase-heading {
	font-family: var(--gw-font-heading);
	font-weight: 700;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #ffffff;
	margin: 12px 0 24px;
	line-height: 1.2;
}

.gw-showcase-grid {
	display: grid;
	grid-template-columns: repeat(var(--gw-showcase-cols, 3), 1fr);
}

.gw-showcase--gap-small {
	gap: 12px;
}

.gw-showcase--gap-medium {
	gap: 20px;
}

.gw-showcase--gap-large {
	gap: 32px;
}

.gw-showcase-item {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	cursor: pointer;
}

.gw-showcase-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s, filter 0.5s;
}

/* Hover effects */
.gw-showcase--hover-zoom .gw-showcase-item:hover img {
	transform: scale(1.05);
}

.gw-showcase--hover-brighten .gw-showcase-item img {
	filter: brightness(0.8);
}

.gw-showcase--hover-brighten .gw-showcase-item:hover img {
	filter: brightness(1);
}

/* Caption overlay */
.gw-showcase-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 16px;
	font-family: var(--gw-font-heading);
	font-weight: 600;
	font-size: 0.72rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #ffffff;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 0.3s, transform 0.3s;
}

.gw-showcase-item:hover .gw-showcase-caption {
	opacity: 1;
	transform: translateY(0);
}

/* Featured layout */
.gw-showcase--featured .gw-showcase-item:first-child {
	grid-column: span 2;
	grid-row: span 2;
}

/* Masonry layout */
.gw-showcase--masonry .gw-showcase-item:nth-child(3n+1) {
	aspect-ratio: 3 / 4;
}

.gw-showcase--masonry .gw-showcase-item:nth-child(3n+2) {
	aspect-ratio: 4 / 3;
}

.gw-showcase--masonry .gw-showcase-item:nth-child(3n+3) {
	aspect-ratio: 1 / 1;
}

/* Lightbox overlay */
.gw-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: rgba(0, 0, 0, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.gw-lightbox.is-active {
	opacity: 1;
}

.gw-lightbox img {
	max-width: 90vw;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 4px;
}

.gw-lightbox-close {
	position: absolute;
	top: 20px;
	right: 24px;
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.6);
	font-size: 2rem;
	cursor: pointer;
	transition: color 0.3s;
	line-height: 1;
}

.gw-lightbox-close:hover {
	color: #ffffff;
}

.gw-lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.4);
	font-size: 2.5rem;
	cursor: pointer;
	padding: 16px;
	transition: color 0.3s;
	line-height: 1;
}

.gw-lightbox-nav:hover {
	color: rgba(255, 255, 255, 0.8);
}

.gw-lightbox-prev {
	left: 16px;
}

.gw-lightbox-next {
	right: 16px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
	.gw-feature-grid {
		grid-template-columns: repeat(min(var(--gw-fg-columns, 3), 2), 1fr);
	}

	.gw-testimonial-grid {
		grid-template-columns: 1fr;
	}

	.gw-split {
		grid-template-columns: 1fr !important;
		gap: 32px;
	}

	.gw-split--image-right .gw-split-media,
	.gw-split--image-right .gw-split-content {
		order: unset;
	}

	.gw-split-media img {
		max-height: 400px;
		border-radius: 12px;
	}

	.gw-info-list--grid {
		grid-template-columns: 1fr;
	}

	.gw-showcase-grid {
		grid-template-columns: repeat(min(var(--gw-showcase-cols, 3), 2), 1fr) !important;
	}

	.gw-showcase--featured .gw-showcase-item:first-child {
		grid-column: span 1;
		grid-row: span 1;
	}
}

@media (max-width: 767px) {
	.gw-section-hero-content {
		padding: 40px 24px;
	}

	.gw-hero-heading {
		font-size: clamp(1.8rem, 7vw, 2.8rem);
	}

	.gw-feature-grid {
		grid-template-columns: 1fr;
	}

	.gw-steps--horizontal {
		flex-direction: column;
	}

	.gw-steps--horizontal .gw-step {
		display: flex;
		align-items: flex-start;
		gap: 20px;
		text-align: left;
		padding-bottom: 32px;
	}

	.gw-steps--horizontal .gw-step:last-child {
		padding-bottom: 0;
	}

	.gw-steps--horizontal .gw-step-number {
		margin: 0;
	}

	/* Switch rail to vertical on mobile */
	.gw-steps--connected.gw-steps--horizontal::before {
		top: 28px;
		bottom: 28px;
		left: 28px;
		right: auto;
		width: 1px;
		height: auto;
	}

	.gw-testimonial-track .gw-testimonial-card {
		flex: 0 0 300px;
		width: 300px;
	}

	.gw-cta-heading {
		font-size: clamp(1.4rem, 5vw, 1.8rem);
	}

	.gw-pricing-grid {
		grid-template-columns: 1fr;
	}

	.gw-pricing-card {
		padding: 32px 24px;
	}

	.gw-stats--row {
		flex-direction: column;
		align-items: center;
	}

	.gw-stats--bordered.gw-stats--row .gw-stat:not(:last-child)::after {
		right: auto;
		top: auto;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 60%;
		height: 1px;
	}

	.gw-brand-list {
		gap: 20px;
	}

	.gw-showcase-grid {
		grid-template-columns: 1fr !important;
	}

	.gw-video--21-9 {
		aspect-ratio: 16 / 9;
	}

	.gw-pullquote {
		padding: 24px 0;
	}

	.gw-pullquote--bordered {
		padding-left: 20px;
	}
}

/* ========== CONTACT FORM OVERRIDES ========== */
.gymworx-contact-form-wrapper {
	font-family: var(--gw-font-body);
}

.gymworx-contact-form .gymworx-form-field label {
	font-family: var(--gw-font-heading);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #a3a3a3;
}

.gymworx-contact-form .gymworx-form-field label .text-red-500 {
	color: #a8976a;
}

.gymworx-contact-form .gymworx-form-field label .text-gray-400 {
	color: #52525b;
}

.gymworx-contact-form input[type="text"],
.gymworx-contact-form input[type="email"],
.gymworx-contact-form input[type="tel"],
.gymworx-contact-form textarea,
.gymworx-contact-form select {
	background: var(--gw-surface, #181818) !important;
	border: 1px solid rgba(255, 255, 255, 0.06) !important;
	border-radius: 0 !important;
	color: #ffffff !important;
	font-family: var(--gw-font-body);
	font-size: 0.85rem;
	padding: 14px 16px;
	box-shadow: none !important;
	transition: border-color 0.3s ease;
}

.gymworx-contact-form input::placeholder,
.gymworx-contact-form textarea::placeholder {
	color: #52525b !important;
}

.gymworx-contact-form input:focus,
.gymworx-contact-form textarea:focus,
.gymworx-contact-form select:focus {
	border-color: rgba(132, 117, 78, 0.4) !important;
	outline: none !important;
	box-shadow: none !important;
	ring: none !important;
}

.gymworx-contact-form textarea {
	min-height: 140px;
	resize: vertical;
}

.gymworx-contact-form select option {
	background: #181818;
	color: #ffffff;
}

/* Submit button — gold holo style */
.gymworx-contact-form .gymworx-submit-btn {
	background: linear-gradient(135deg, rgba(132, 117, 78, 0.15), rgba(220, 200, 160, 0.15)) !important;
	color: #a8976a !important;
	border: 1px solid rgba(168, 151, 106, 0.25) !important;
	border-radius: 0 !important;
	font-family: var(--gw-font-heading);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 16px 32px;
	box-shadow: none !important;
	transition: all 0.3s ease;
}

.gymworx-contact-form .gymworx-submit-btn:hover {
	background: linear-gradient(135deg, rgba(132, 117, 78, 0.3), rgba(220, 200, 160, 0.3)) !important;
	border-color: rgba(168, 151, 106, 0.5) !important;
	color: #c8b88a !important;
}

.gymworx-contact-form .gymworx-submit-btn:disabled {
	opacity: 0.4 !important;
}

/* Success/error alerts */
.gymworx-contact-form .gymworx-form-success {
	background: rgba(132, 117, 78, 0.1) !important;
	border: 1px solid rgba(132, 117, 78, 0.2);
	border-radius: 0 !important;
}

.gymworx-contact-form .gymworx-form-success p {
	color: #a8976a !important;
}

.gymworx-contact-form .gymworx-form-success svg {
	color: #a8976a !important;
}

.gymworx-contact-form .gymworx-form-error {
	background: rgba(220, 38, 38, 0.08) !important;
	border: 1px solid rgba(220, 38, 38, 0.2);
	border-radius: 0 !important;
}

/* Field validation errors */
.gymworx-contact-form .gymworx-field-error {
	font-size: 0.75rem;
	color: #ef4444;
}

/* ========== ELEMENTOR FORM OVERRIDES ========== */
.elementor-form .elementor-field-group .elementor-field-label {
	font-family: var(--gw-font-heading) !important;
	font-size: 0.7rem !important;
	font-weight: 600 !important;
	letter-spacing: 1.5px !important;
	text-transform: uppercase !important;
	color: #a3a3a3 !important;
}

.elementor-form .elementor-field-group .elementor-field-label .elementor-mark-required .elementor-screen-only {
	color: #a8976a;
}

.elementor-form .elementor-field-textual,
.elementor-form .elementor-field-type-text .elementor-field,
.elementor-form .elementor-field-type-email .elementor-field,
.elementor-form .elementor-field-type-tel .elementor-field,
.elementor-form .elementor-field-type-url .elementor-field,
.elementor-form .elementor-field-type-number .elementor-field,
.elementor-form .elementor-field-type-textarea .elementor-field,
.elementor-form .elementor-field-type-select .elementor-field {
	background: var(--gw-surface, #181818) !important;
	border: 1px solid rgba(255, 255, 255, 0.06) !important;
	border-radius: 0 !important;
	color: #ffffff !important;
	font-family: var(--gw-font-body) !important;
	font-size: 0.85rem !important;
	padding: 14px 16px !important;
	box-shadow: none !important;
	transition: border-color 0.3s ease !important;
	min-height: auto !important;
}

.elementor-form .elementor-field::placeholder {
	color: #52525b !important;
}

.elementor-form .elementor-field:focus {
	border-color: rgba(132, 117, 78, 0.4) !important;
	outline: none !important;
	box-shadow: none !important;
}

.elementor-form .elementor-field-type-textarea .elementor-field {
	min-height: 140px !important;
	resize: vertical;
}

.elementor-form .elementor-field-type-select .elementor-field option {
	background: #181818;
	color: #ffffff;
}

/* Required asterisk — gold */
.elementor-form .elementor-mark-required .elementor-field-label::after,
.elementor-form .elementor-required .elementor-field-label::after {
	color: #a8976a !important;
}

/* Submit button — gold holo */
.elementor-form .elementor-button[type="submit"],
.elementor-form .e-form__buttons__wrapper button {
	background: linear-gradient(135deg, rgba(132, 117, 78, 0.15), rgba(220, 200, 160, 0.15)) !important;
	color: #a8976a !important;
	border: 1px solid rgba(168, 151, 106, 0.25) !important;
	border-radius: 0 !important;
	font-family: var(--gw-font-heading) !important;
	font-size: 0.75rem !important;
	font-weight: 600 !important;
	letter-spacing: 2px !important;
	text-transform: uppercase !important;
	padding: 16px 32px !important;
	box-shadow: none !important;
	transition: all 0.3s ease !important;
}

.elementor-form .elementor-button[type="submit"]:hover,
.elementor-form .e-form__buttons__wrapper button:hover {
	background: linear-gradient(135deg, rgba(132, 117, 78, 0.3), rgba(220, 200, 160, 0.3)) !important;
	border-color: rgba(168, 151, 106, 0.5) !important;
	color: #c8b88a !important;
}

/* Success message */
.elementor-message.elementor-message-success {
	background: rgba(132, 117, 78, 0.1) !important;
	border: 1px solid rgba(132, 117, 78, 0.2) !important;
	color: #a8976a !important;
	border-radius: 0 !important;
	font-family: var(--gw-font-body);
	font-size: 0.85rem;
	padding: 14px 16px;
}

/* Error message */
.elementor-message.elementor-message-danger {
	background: rgba(220, 38, 38, 0.08) !important;
	border: 1px solid rgba(220, 38, 38, 0.2) !important;
	border-radius: 0 !important;
	font-family: var(--gw-font-body);
	font-size: 0.85rem;
	padding: 14px 16px;
}

/* Field group spacing */
.elementor-form .elementor-field-group {
	margin-bottom: 16px;
}

/* Inline field validation */
.elementor-form .elementor-field-group .elementor-error .elementor-field {
	border-color: rgba(220, 38, 38, 0.4) !important;
}

/* ========== FOOTER SOCIAL & APP BADGES ========== */
.gw-footer-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.06);
	color: #52525b;
	transition: all 0.3s ease;
}

.gw-footer-social:hover {
	border-color: rgba(132, 117, 78, 0.3);
	color: #a8976a;
}

.gw-footer-app-badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	color: #78716C;
	font-family: var(--gw-font-body);
	font-size: 0.7rem;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.gw-footer-app-badge:hover {
	border-color: rgba(132, 117, 78, 0.3);
	color: #a8976a;
}

/* ========== CLIENT INTAKE FORM OVERRIDES ========== */

/* Page background */
.page-template-page-client-intake main {
	background: #0f0f0f !important;
}

/* Hero header */
.page-template-page-client-intake .relative.pt-20 {
	background-color: #0f0f0f;
}

.page-template-page-client-intake main h1 {
	font-family: var(--gw-font-heading) !important;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #ffffff !important;
}

.page-template-page-client-intake main h1 + p,
.page-template-page-client-intake main .text-gray-600,
.page-template-page-client-intake main .text-gray-200 {
	color: #78716C !important;
	font-family: var(--gw-font-body);
}

/* Error/status pages */
.page-template-page-client-intake .rounded-2xl.bg-white,
.page-template-page-client-intake .rounded-2xl.bg-white.dark\:bg-neutral-800 {
	background: var(--gw-surface, #181818) !important;
	border: 1px solid rgba(255, 255, 255, 0.06) !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.page-template-page-client-intake .bg-red-100,
.page-template-page-client-intake .dark\:bg-red-900\/30 {
	background: rgba(220, 38, 38, 0.1) !important;
}

.page-template-page-client-intake .bg-green-100,
.page-template-page-client-intake .dark\:bg-green-900\/30 {
	background: rgba(132, 117, 78, 0.15) !important;
}

.page-template-page-client-intake .text-green-600,
.page-template-page-client-intake .dark\:text-green-400 {
	color: #a8976a !important;
}

/* Progress step indicators */
.page-template-page-client-intake .step-number {
	width: 44px !important;
	height: 44px !important;
	border-radius: 50% !important;
	font-family: var(--gw-font-heading) !important;
	font-size: 0.85rem !important;
	font-weight: 700 !important;
	transition: all 0.3s ease !important;
}

.page-template-page-client-intake .step-indicator[data-step] .step-number {
	background: var(--gw-surface, #181818) !important;
	border: 1px solid rgba(255, 255, 255, 0.06) !important;
	color: #52525b !important;
	box-shadow: none !important;
}

.page-template-page-client-intake .step-indicator.active .step-number,
.page-template-page-client-intake .step-number.bg-primary {
	background: linear-gradient(135deg, rgba(132, 117, 78, 0.2), rgba(220, 200, 160, 0.2)) !important;
	border: 1px solid rgba(168, 151, 106, 0.4) !important;
	color: #a8976a !important;
}

.page-template-page-client-intake .step-label {
	font-family: var(--gw-font-heading) !important;
	font-size: 0.7rem !important;
	letter-spacing: 1.5px !important;
	text-transform: uppercase !important;
	color: #52525b !important;
}

.page-template-page-client-intake .step-indicator.active .step-label {
	color: #a8976a !important;
}

.page-template-page-client-intake .step-connector {
	background: rgba(255, 255, 255, 0.06) !important;
	height: 1px !important;
}

/* Form card */
#gymworx-intake-form {
	background: var(--gw-surface, #181818) !important;
	border: 1px solid rgba(255, 255, 255, 0.06) !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	overflow: hidden;
}

/* Step headings */
#gymworx-intake-form h2 {
	font-family: var(--gw-font-heading) !important;
	font-weight: 700 !important;
	font-size: 1.2rem !important;
	letter-spacing: 2px !important;
	text-transform: uppercase !important;
	color: #ffffff !important;
}

#gymworx-intake-form h3 {
	font-family: var(--gw-font-heading) !important;
	font-weight: 600 !important;
	letter-spacing: 1px !important;
	text-transform: uppercase !important;
	color: #ffffff !important;
}

/* Labels */
#gymworx-intake-form label {
	font-family: var(--gw-font-heading) !important;
	font-size: 0.7rem !important;
	font-weight: 600 !important;
	letter-spacing: 1.5px !important;
	text-transform: uppercase !important;
	color: #a3a3a3 !important;
}

#gymworx-intake-form label .text-red-500 {
	color: #a8976a !important;
}

#gymworx-intake-form label .text-gray-400,
#gymworx-intake-form label .font-normal {
	color: #52525b !important;
}

/* Inputs, selects, textareas */
#gymworx-intake-form input[type="text"],
#gymworx-intake-form input[type="email"],
#gymworx-intake-form input[type="tel"],
#gymworx-intake-form input[type="number"],
#gymworx-intake-form textarea,
#gymworx-intake-form select {
	background: #141414 !important;
	border: 1px solid rgba(255, 255, 255, 0.06) !important;
	border-radius: 0 !important;
	color: #ffffff !important;
	font-family: var(--gw-font-body) !important;
	font-size: 0.85rem !important;
	padding: 14px 16px !important;
	box-shadow: none !important;
	transition: border-color 0.3s ease !important;
}

#gymworx-intake-form input::placeholder,
#gymworx-intake-form textarea::placeholder {
	color: #3f3f46 !important;
}

#gymworx-intake-form input:focus,
#gymworx-intake-form textarea:focus,
#gymworx-intake-form select:focus {
	border-color: rgba(132, 117, 78, 0.4) !important;
	outline: none !important;
	box-shadow: none !important;
}

#gymworx-intake-form select option {
	background: #141414;
	color: #ffffff;
}

/* Checkbox pill selectors (work activities, schedule days) */
#gymworx-intake-form label.inline-flex {
	background: #141414 !important;
	border: 1px solid rgba(255, 255, 255, 0.06) !important;
	border-radius: 0 !important;
	font-family: var(--gw-font-body) !important;
	font-size: 0.8rem !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	color: #78716C !important;
	transition: all 0.3s ease !important;
	padding: 10px 18px !important;
}

#gymworx-intake-form label.inline-flex span {
	font-size: 0.8rem !important;
	color: #78716C !important;
}

#gymworx-intake-form label.inline-flex:hover {
	border-color: rgba(132, 117, 78, 0.3) !important;
	background: rgba(132, 117, 78, 0.05) !important;
}

#gymworx-intake-form label.inline-flex:has(:checked) {
	border-color: rgba(132, 117, 78, 0.5) !important;
	background: rgba(132, 117, 78, 0.12) !important;
}

#gymworx-intake-form label.inline-flex:has(:checked) span {
	color: #a8976a !important;
}

/* Dividers */
#gymworx-intake-form hr {
	border-color: rgba(255, 255, 255, 0.04) !important;
}

/* Form footer bars (next/back buttons area) */
#gymworx-intake-form .border-t {
	border-color: rgba(255, 255, 255, 0.04) !important;
	background: rgba(0, 0, 0, 0.2) !important;
}

/* Next / Submit buttons — gold holo */
#gymworx-intake-form .btn-next,
#gymworx-intake-form button[type="submit"] {
	background: linear-gradient(135deg, rgba(132, 117, 78, 0.15), rgba(220, 200, 160, 0.15)) !important;
	color: #a8976a !important;
	border: 1px solid rgba(168, 151, 106, 0.25) !important;
	border-radius: 0 !important;
	font-family: var(--gw-font-heading) !important;
	font-size: 0.75rem !important;
	font-weight: 600 !important;
	letter-spacing: 2px !important;
	text-transform: uppercase !important;
	box-shadow: none !important;
	transition: all 0.3s ease !important;
}

#gymworx-intake-form .btn-next:hover,
#gymworx-intake-form button[type="submit"]:hover {
	background: linear-gradient(135deg, rgba(132, 117, 78, 0.3), rgba(220, 200, 160, 0.3)) !important;
	border-color: rgba(168, 151, 106, 0.5) !important;
	color: #c8b88a !important;
}

#gymworx-intake-form .btn-next svg,
#gymworx-intake-form button[type="submit"] svg {
	color: #a8976a !important;
}

/* Back button — silver */
#gymworx-intake-form .btn-prev {
	background: rgba(255, 255, 255, 0.03) !important;
	color: #78716C !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 0 !important;
	font-family: var(--gw-font-heading) !important;
	font-size: 0.75rem !important;
	font-weight: 600 !important;
	letter-spacing: 2px !important;
	text-transform: uppercase !important;
	box-shadow: none !important;
	transition: all 0.3s ease !important;
}

#gymworx-intake-form .btn-prev:hover {
	background: rgba(255, 255, 255, 0.06) !important;
	border-color: rgba(255, 255, 255, 0.15) !important;
	color: #ffffff !important;
}

/* Signature pads */
#gymworx-intake-form .signature-pad-wrapper {
	border: 1px solid rgba(255, 255, 255, 0.06) !important;
	border-radius: 0 !important;
	background: #141414 !important;
}

#gymworx-intake-form .signature-pad-wrapper:focus-within {
	border-color: rgba(132, 117, 78, 0.4) !important;
}

#gymworx-intake-form .signature-pad {
	background: #141414 !important;
}

#gymworx-intake-form button[data-clear] {
	color: #a8976a !important;
	font-family: var(--gw-font-heading) !important;
	font-size: 0.7rem !important;
	letter-spacing: 1px !important;
	text-transform: uppercase !important;
}

#gymworx-intake-form button[data-clear]:hover {
	color: #c8b88a !important;
}

/* Agreement text scroll areas */
#gymworx-intake-form .max-h-64 {
	background: #0f0f0f !important;
	border: 1px solid rgba(255, 255, 255, 0.04) !important;
	border-radius: 0 !important;
	color: #78716C !important;
}

#gymworx-intake-form .prose {
	color: #78716C !important;
}

/* Success message */
#form-success {
	background: var(--gw-surface, #181818) !important;
}

#form-success .bg-green-100 {
	background: rgba(132, 117, 78, 0.15) !important;
	border-radius: 50% !important;
}

#form-success svg {
	color: #a8976a !important;
}

#form-success h2 {
	color: #ffffff !important;
}

#form-success p {
	color: #78716C !important;
}

/* Error message */
#form-error {
	background: rgba(220, 38, 38, 0.08) !important;
	border: 1px solid rgba(220, 38, 38, 0.2) !important;
	border-radius: 0 !important;
}
