/* ===========================================================
   PLAN MY RINK PAGE
   File: plan-my-rink.css
=========================================================== */

:root {
	--pmr-blue: #1768d1;
	--pmr-navy: #0a2647;
	--pmr-text: #2c2c2c;
	--pmr-muted: #6b7280;
	--pmr-border: #e1e6ee;
	--pmr-light: #f4f7fb;
	--pmr-radius: 6px;
}

#plan-my-rink img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* -----------------------------------------------------------
   HERO
----------------------------------------------------------- */
.pmr-hero {
	background: #f4f7fb;
	overflow: hidden;
}

.pmr-hero-content {
	padding: 60px 80px 60px 80px;
}

.pmr-hero-title {
	font-size: 4.2rem;
	font-weight: 900;
	color: var(--pmr-blue);
	text-transform: uppercase;
	line-height: 1.0;
	margin: 0 0 16px;
}

.pmr-hero-subtitle {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--pmr-navy);
	margin: 0 0 18px;
	line-height: 1.3;
}

.pmr-hero-copy {
	font-size: 0.97rem;
	color: var(--pmr-text);
	line-height: 1.7;
}

.pmr-hero-copy em,
.pmr-hero-copy i {
	color: var(--pmr-blue);
	font-style: italic;
}

.pmr-hero-copy p {
	margin: 0 0 12px;
}

.pmr-hero-image {
	position: relative;
	height: 100%;
	min-height: 420px;
	background-size: cover;
	background-position: center;
}

.pmr-hero-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 35%;
	height: 100%;
	background: linear-gradient(to right, #f4f7fb 0%, transparent 100%);
	z-index: 1;
	pointer-events: none;
}

/* -----------------------------------------------------------
   STATS BAR
----------------------------------------------------------- */
.pmr-stats {
	background: #fff;
	border-top: 1px solid var(--pmr-border);
	padding: 28px 0 0 0;
}

.pmr-stat-item {
	display: flex;
	align-items: flex-start;
	gap: 5px;
	padding: 16px;
}

.pmr-stats-divider {
	border-left: 1px solid var(--pmr-border);
}

.pmr-stat-icon {
	flex-shrink: 0;
}

.pmr-stat-icon img {
	width: 62px;
	height: 62px;
	object-fit: contain;
}

.pmr-stat-text h4 {
	font-size: .9rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--pmr-navy);
	margin: 0 0 5px;
	line-height: 1.3;
}

.pmr-stat-text p {
	font-size: 0.9rem;
	color: var(--pmr-muted);
	margin: 0;
	line-height: 1.45;
}

/* -----------------------------------------------------------
   MAIN CONTENT
----------------------------------------------------------- */
.pmr-main {
	padding: 50px 0 60px;
	background: #fff;
}

.pmr-form-section {
	padding: 28px 32px 32px;
	border: 1px solid var(--pmr-border);
	border-radius: var(--pmr-radius);
	box-shadow: 0 2px 18px rgba(0, 0, 0, 0.07);
	background: #fff;
	margin-right: 16px;
}

.pmr-form-heading {
	font-size: 2rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--pmr-blue);
	letter-spacing: 0.04em;
	margin: 0 0 10px !important;
}

.pmr-form-copy {
	font-size: 0.95rem;
	color: var(--pmr-text);
	margin: 0 0 16px;
	line-height: 1.6;
	width: 60%;
}

.pmr-form-divider {
	border: none;
	border-top: 2px solid var(--pmr-blue);
	margin: 0 0 28px;
}

.pmr-form-wrap {
	width: 100%;
}

/* -----------------------------------------------------------
   WPFORMS RADIO — bordered card toggle buttons
----------------------------------------------------------- */
.pmr-form-wrap .wpforms-field-radio ul {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 10px !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.pmr-form-wrap .wpforms-field-radio ul li {
	display: flex !important;
	align-items: center !important;
	margin: 0 !important;
}

.pmr-form-wrap .wpforms-field-radio input[type="radio"] {
	position: absolute !important;
	opacity: 0 !important;
	width: 0 !important;
	height: 0 !important;
	pointer-events: none !important;
}

.pmr-form-wrap .wpforms-field-radio label.wpforms-field-label-inline {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border: 1.5px solid #e1e6ee !important;
	border-radius: 6px !important;
	padding: 10px 20px !important;
	cursor: pointer !important;
	font-size: 0.9rem !important;
	font-weight: 600 !important;
	color: #0a2647 !important;
	background: #fff !important;
	white-space: nowrap !important;
	margin: 0 !important;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.pmr-form-wrap .wpforms-field-radio label.wpforms-field-label-inline:hover {
	border-color: #1768d1 !important;
	color: #1768d1 !important;
}

.pmr-form-wrap .wpforms-field-radio input[type="radio"]:checked + label.wpforms-field-label-inline {
	border-color: #1768d1 !important;
	background: #eef3fc !important;
	color: #1768d1 !important;
}

/* -----------------------------------------------------------
   SIDEBAR
----------------------------------------------------------- */
.pmr-sidebar {
	padding-left: 12px;
}

.pmr-sidebar-block {
	margin-bottom: 20px;
}

.pmr-sidebar-heading {
	font-size: 1.1rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--pmr-blue);
	letter-spacing: 0.03em;
	margin: 0 0 8px;
	line-height: 1.3;
}

.pmr-sidebar-rule {
	border: none;
	border-top: 3px solid var(--pmr-blue);
	width: 36px;
	margin: 0 0 18px;
}

.pmr-why-block {
	background: var(--pmr-light);
	border-radius: var(--pmr-radius);
	padding: 30px;
}

.pmr-trust-block {
	background: var(--pmr-light);
	border-radius: var(--pmr-radius);
	padding: 30px;
}

.pmr-questions {
	background: var(--pmr-light);
	border-radius: var(--pmr-radius);
	padding: 30px;
}

.pmr-why-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pmr-why-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
}

.pmr-why-item:last-child {
	margin-bottom: 0;
}

.pmr-why-icon {
	flex-shrink: 0;
}

.pmr-why-icon img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.pmr-why-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.pmr-why-text strong {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--pmr-navy);
	display: block;
}

.pmr-why-text span {
	font-size: 0.88rem;
	color: var(--pmr-muted);
	display: block;
	line-height: 1.45;
}

.pmr-trust-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.pmr-trust-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
}

.pmr-trust-item img {
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.pmr-trust-item span {
	font-size: 0.82rem;
	color: var(--pmr-text);
	font-weight: 600;
	line-height: 1.3;
}

.pmr-questions .pmr-contact-row {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--pmr-navy);
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 10px;
}

.pmr-questions .pmr-contact-row i {
	color: var(--pmr-blue);
	font-size: 1rem;
	width: 18px;
	text-align: center;
}

.pmr-questions-tagline {
	margin: 12px 0 0;
	font-size: 0.9rem;
	color: var(--pmr-muted);
}

/* -----------------------------------------------------------
   BOTTOM TRUST BAR
----------------------------------------------------------- */
.pmr-bottom-bar {
	background: var(--pmr-light);
	border-top: 1px solid var(--pmr-border);
	padding: 28px 0;
}

.pmr-bottom-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.pmr-bottom-icon {
	flex-shrink: 0;
}

.pmr-bottom-icon img {
	width: 44px;
	height: 44px;
	object-fit: contain;
}

.pmr-bottom-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.pmr-bottom-text h4 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--pmr-blue);
	display: block;
	text-transform: uppercase;
}

.pmr-bottom-text span {
	font-size: 0.88rem;
	color: var(--pmr-muted);
	display: block;
	line-height: 1.4;
}

/* ===========================================================
   RESPONSIVE
=========================================================== */

@media (max-width: 991px) {
	.pmr-form-copy {
		width: 100%;
	}

	.pmr-hero-title {
		font-size: 3.2rem;
	}

	.pmr-hero-content {
		padding: 48px 32px;
	}

	.pmr-form-section {
		margin-right: 0;
	}
}

@media (max-width: 767px) {
	.pmr-hero-content {
		padding: 36px 20px;
	}

	.pmr-hero .row {
		flex-direction: column-reverse;
	}

	.pmr-hero-image {
		min-height: 260px;
	}

	.pmr-hero-title {
		font-size: 2.4rem;
	}

	.pmr-hero-subtitle {
		font-size: 1.2rem;
	}

	.pmr-stats-divider {
		border-left: none;
	}

	.pmr-stat-item {
		padding: 4px 8px;
	}

	.pmr-main {
		padding: 36px 0 48px;
	}

	.pmr-form-section {
		padding: 20px;
		margin-right: 0;
	}

	.pmr-sidebar {
		padding-left: 0;
		margin-top: 32px;
	}

	.pmr-trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pmr-bottom-item {
		margin-bottom: 20px;
	}
}

@media (max-width: 480px) {
	.pmr-hero-title {
		font-size: 1.9rem;
	}

	.pmr-trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}