/* #region Root*/
:root {
	--rpvblk: #0d0709;
	--rpvred: #bc2b37;
	--rpvylw: #e2c758;
	--rpvwht: #ffffff;
	--roundcorner: 0.5rem;
	--navheight: calc(100vh / 8);
	--padtop: 3rem;
}

/* #endregion Root */

/* #region Animations */
@keyframes wiggle {
	0% {
		transform: rotate(0deg);
	}

	80% {
		transform: rotate(0deg);
	}

	85% {
		transform: rotate(5deg);
	}

	95% {
		transform: rotate(-5deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

@keyframes slideIn {
	0% {
		transform: translateY(-3rem);
	}

	100% {
		transform: translateY(0);
	}
}

img.wiggle {
	display: inline-block;
	animation: wiggle 2.5s infinite;
}

img.wiggle:hover {
	animation: none;
}

.fade {
	transition: all 0.5s ease-in-out;
}

.grow {
	transition: all 0.2s ease-in-out;
}

.grow:hover {
	transform: scale(1.1);
}

/* #endregion Animations */

/* #region Generics */
html {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	height: 100dvh;
	overflow: hidden;
	display: grid;
	grid-template-rows: var(--navheight) 1fr;
	scrollbar-gutter: stable;

	padding-top: env(safe-area-inset-top);
	padding-bottom: env(safe-area-inset-bottom);
	padding-right: calc(100vw - 100%);


}

/*
 * Typography Scale (ratio ~1.25)
 * h1: 32-42px | h2: 24-32px | h3: 20-26px | h4: 18-22px
 * p:  16-18px | small: 14-16px
 */

h1 {
	font-size: clamp(3.2rem, 3vw + 1rem, 4.2rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

h2 {
	font-size: clamp(2.4rem, 2vw + 0.8rem, 3.2rem);
	font-weight: 600;
	line-height: 1.3;
	margin: 0;
}

h3 {
	font-size: clamp(2rem, 1.5vw + 0.6rem, 2.6rem);
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
}

h4 {
	font-size: clamp(1.8rem, 1vw + 0.5rem, 2.2rem);
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
}

p {
	max-width: 75ch;
	font-size: clamp(1.6rem, 0.5vw + 0.8rem, 1.8rem);
	font-weight: 400;
	line-height: 1.6;
	margin: 0;
}

small {
	max-width: 75ch;
	font-size: clamp(1.4rem, 0.3vw + 0.7rem, 1.6rem);
	line-height: 1.5;
}

li {
	font-size: clamp(1.6rem, 0.5vw + 0.8rem, 1.8rem);
	line-height: 1.3;
	display: flex;
	align-items: flex-start;
	text-wrap: balance;
	margin-bottom: 0.5rem;
	;
}

/* #endregion Generics */

/* #region ScrollBar */
::-webkit-scrollbar {
	width: 0.5rem;
	border-radius: var(--roundcorner);
}

::-webkit-scrollbar-track {
	background: white;
}

::-webkit-scrollbar-thumb {
	background: var(--rpvblk);
	opacity: 0.5;
}

::-webkit-scrollbar-thumb:hover {
	background: white;
}

/* #endregion ScrollBar */

/* #region NAVIGATION - Floating above page container */
#navigation {
	width: 100%;
	height: var(--navheight);
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1000;
	background-color: var(--rpvblk);
}

.transparent {
	opacity: 0;
}


#navBookBtn {
	display: none;
}

#header_img {
	height: 100%;
	opacity: 0;
	margin-left: 1rem;
}

#navBookBtn {
	border-radius: var(--roundcorner);
	background-color: var(--rpvblk);
	font-size: 1.5rem;
	color: var(--rpvwht);
	padding: 0.5rem;
	cursor: pointer;
}


#nav-logo-btn {
	background-color: transparent;
	border: none;
	cursor: pointer;
	margin-left: 1rem;
	padding: 0;
}

#nav-logo-btn:hover {
	background-color: var(--rpvblk);
	opacity: 1;
}

nav {
	width: 100%;
}

#navbtn {
	background-color: var(--rpvblk);
	border-color: white;
	border-style: none;
	font-size: 1.25rem;
	width: 5em;
}

#menuOverlay {
	display: flex;
	position: absolute;
	z-index: 3;
	width: 33.3%;
	height: 50vh;
	right: 1px;
	top: 6em;
	background-color: var(--rpvred);
	filter: alpha(opacity=60);
}

.defbtn {
	background-color: var(--rpvblk);
	color: white;
	padding: 0.5em;
	border-style: none;
	border-radius: 0.2em;
	font-size: 1.25rem;
	cursor: pointer;
}

/* #endregion NAVIGATION */

/* #region PAGE CONTAINER & BASE STYLES */
/* PAGE CONTAINER - Full viewport height */
#pageContainer {
	width: 100%;
	margin: 0 auto;
	height: 100dvh;
	margin-top: calc(var(--navheight) * -1);
	overflow-x: hidden;
	overflow-y: scroll;
	scroll-snap-type: y mandatory;
}

/* BASE SECTION STYLES - applies to all sections */
section {
	position: relative;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	min-height: 100%;
	height: 100%;
	width: 100%;
	box-sizing: border-box;
	padding: 2rem;
	padding-top: calc(var(--navheight) + 2rem);

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;

	overflow-y: auto;
	overflow-x: hidden;
}

/* #endregion PAGE CONTAINER & BASE STYLES */

/* #region MAIN SECTION */
#mainSec {
	display: block;
	overflow: hidden;
	position: relative;
}

.main-background-img {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	z-index: -1;
}

.main-content-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: var(--rpvwht);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main-content-overlay h1 {
	display: block;
	padding: 1rem;
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: var(--roundcorner);
	max-width: 60ch;
	box-sizing: border-box;
}

/* #endregion MAIN SECTION */

/* #region SERVICE SECTION */
#serviceSec {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0;
	padding-top: var(--navheight);
	min-height: 100vh;
	justify-content: space-between;
	background-color: #FFFFFFE6;
	backdrop-filter: blur(10px);
}

.service-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	padding: 3rem;
	flex: 1;
}

.service-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	justify-content: center;
}

#serviceSec h2 {
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	color: var(--rpvred);
	margin: 0;
	line-height: 1.2;
}

.service-intro {
	font-size: clamp(1.2rem, 1.8vw, 1.8rem);
	color: #333;
	line-height: 1.7;
	margin: 0;
	max-width: 55ch;
}

.service-description {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	text-wrap: pretty;
	max-width: 64ch;
}

.service-description p {
	font-size: clamp(1.2rem, 1.5vw, 1.7rem);
	color: #444;
	line-height: 1.7;
	margin: 0;
	max-width: 65ch;
}

.service-highlights {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 1rem;
}

.highlight {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.5rem;
	background-color: #f5f5f5;
	border-left: 4px solid var(--rpvred);
	border-radius: 4px;
	text-wrap: pretty;
}

.highlight strong {
	font-size: clamp(1.1rem, 1.5vw, 1.4rem);
	color: var(--rpvblk);
	margin: 0;
}

.highlight span {
	font-size: clamp(0.95rem, 1.2vw, 1.2rem);
	color: #666;
	line-height: 1.5;
	margin: 0;
}

.service-image {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	min-height: 300px;
}

.service-image>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.placeholder-clinic {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* CTA Section - Bold and prominent */
.service-cta {
	position: absolute;
	bottom: 5vh;
	right: 0;
	width: 40%;
	background: linear-gradient(135deg, rgba(13, 7, 9, 0.9) 0%, rgba(26, 15, 18, 0.9) 100%);
	color: white;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 2rem;
	z-index: 10;
	min-height: 10vh;
}

.cta-text {
	flex: 1;
	min-width: 200px;
}

.cta-text p {
	margin: 0 0 0.5rem 0;
	font-size: clamp(1.3rem, 1.8vw, 1.8rem);
	line-height: 1.6;
	color: white;
	white-space: nowrap;
}

.cta-text strong {
	color: var(--rpvylw);
}

.cta-subtext {
	font-size: clamp(1rem, 1.2vw, 1.3rem);
	color: rgba(255, 255, 255, 0.9);
	margin-top: 0.5rem !important;
	width: 100%;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.cta-button {
	background-color: var(--rpvred);
	color: white;
	border: none;
	font-size: clamp(1rem, 1.4vw, 1.5rem);
	font-weight: 600;
	padding: clamp(0.8rem, 1.5vw, 1.2rem) clamp(1.5rem, 3vw, 2.5rem);
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	box-shadow: 0 4px 12px rgba(188, 43, 55, 0.3);
	align-self: flex-end;
	width: 50%;
}

.cta-button:hover {
	background-color: var(--rpvylw);
	color: var(--rpvblk);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(188, 43, 55, 0.4);
}

.cta-button:active {
	transform: translateY(0);
}

/* Modal Overlay */
.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	justify-content: center;
	align-items: center;
}

.modal-overlay.active {
	display: flex;
}

/* Modal Content */
.modal-content {
	background-color: white;
	border-radius: calc(var(--roundcorner) * 2);
	padding: 3rem;
	max-width: 600px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	animation: slideIn 0.3s ease-out;
}

.modal-content h3 {
	color: var(--rpvred);
	margin-bottom: 1.5rem;
	text-align: center;
}

.modal-content p {
	color: var(--rpvblk);
	margin-bottom: 1rem;
	max-width: 100%;
}

/* Modal Checklist */
.modal-checklist {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
}

.modal-checklist li {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	margin-bottom: 1rem;
	background-color: #f5f5f5;
	border-radius: var(--roundcorner);
	transition: background-color 0.2s ease;
}

.modal-checklist li:hover {
	background-color: #e8e8e8;
}

.modal-checklist input[type="checkbox"] {
	width: 24px;
	height: 24px;
	cursor: pointer;
	accent-color: var(--rpvred);
}

.modal-checklist label {
	cursor: pointer;
	font-size: clamp(1.3rem, 1.5vw + 0.5rem, 1.8rem);
	flex: 1;
}

/* Modal Buttons */
.modal-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.modal-btn {
	flex: 1;
	padding: 1rem 2rem;
	border-radius: var(--roundcorner);
	font-size: clamp(1.3rem, 1.5vw + 0.5rem, 1.8rem);
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid;
	min-width: 150px;
}

.modal-btn-primary {
	background-color: var(--rpvred);
	color: white;
	border-color: var(--rpvred);
}

.modal-btn-primary:hover:not(:disabled) {
	background-color: var(--rpvblk);
	border-color: var(--rpvylw);
}

.modal-btn-primary:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.modal-btn-secondary {
	background-color: white;
	color: var(--rpvblk);
	border-color: var(--rpvblk);
}

.modal-btn-secondary:hover {
	background-color: var(--rpvblk);
	color: white;
}

/* Close button */
.modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 2.5rem;
	cursor: pointer;
	color: #666;
	line-height: 1;
	padding: 0.5rem;
	transition: color 0.2s ease;
}

.modal-close:hover {
	color: var(--rpvred);
}

/* #endregion SERVICE SECTION */

/* #region PRICING SECTION */
#pricingSec {
	display: grid;
	grid-template-columns: 1fr 3fr;
	justify-content: flex-start;
	align-items: stretch;
	min-height: 100vh;
	background-color: var(--rpvwht);
	padding: 2rem;
	padding-top: calc(var(--navheight) + 2rem);
	background-color: #FFFFFFE6;
	backdrop-filter: blur(10px);
}

.pricing-bar {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 2.5rem;
	;
}

.pricing-bar>h1 {
	text-align: center;
}

.pricing-nav {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: .5rem;
}

.pricing-nav>li {
	display: inline-flex;
}

.pricing-nav>li>button {
	width: 100%;
	text-decoration: none;
	color: white;
	padding: 10px;
	background-color: var(--rpvred);
	transition: all 0.3s ease-in-out;
	border: 1px solid transparent;
	cursor: pointer;
	border-radius: var(--roundcorner);
}

.pricing-nav>li>button:hover {
	color: var(--rpvred);
	background-color: transparent;
	border-bottom: 3px solid var(--rpvred);
	padding-bottom: 8px;
}

.pricing-nav>.active-tab>button {
	color: var(--rpvblk);
	background-color: var(--rpvylw);
	padding-bottom: 10px;
	font-weight: bold;
}

.tab-pane {
	display: none;
	overflow: hidden;
	border: .5rem solid var(--rpvred);
	border-radius: calc(var(--roundcorner) * 2);
	padding: 2rem;
	background-color: var(--rpvwht);
	transition: all 0.5s ease-in-out;
}

.tab-pane.active-tab {
	display: flex;
	flex-direction: column;
	transition: all 0.5s ease-in-out;
}

.tab-pane>ul {
	list-style: disc;
	padding-left: 1rem;
}

.tab-pane>ul>li {
	line-height: 2rem;
	font-size: 1.25rem;
}

.tab-pane>h4 {
	font-size: 2rem;
	white-space: nowrap;
	text-align: center;
	margin-left: -1rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.tab-pane>h4>i {
	font-size: calc(0.5rem + 1vw);
}

.tab-pricing {
	display: flex;
	flex-direction: column;
}

.tab-pricing>table {
	margin: 20px 0px;
	font-size: 1.5rem;
}

tr:nth-child(odd) {
	background-color: lightgray;
}

.tab-pricing>table>tbody>tr>th {
	text-align: left;
	padding: 0.5rem;
	color: var(--rpvwht);
	background-color: var(--rpvblk);
}

/* PRICE CARDS - HORIZONTAL LAYOUT */
.price-card {
	background-color: #f9f9f9;
	border: 2px solid #e0e0e0;
	border-radius: calc(var(--roundcorner) * 2);
	padding: 1.5rem;
	transition: all 0.3s ease;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	align-items: center;
	margin-bottom: 1rem;
}

.price-card:hover {
	border-color: var(--rpvred);
	box-shadow: 0 4px 12px rgba(188, 43, 55, 0.1);
}

.price-card-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--rpvblk);
	text-align: left;
	grid-area: 1 / 1 / 2 / 1;
}

.price-card-weight {
	font-size: 0.95rem;
	color: #666;
	text-align: left;
}

.price-card-amount {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--rpvred);
	text-align: right;
	grid-row: 1 / 3;
}

/* CATS LAYOUT - SIDE BY SIDE */
.pricing-grid-cats {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.price-card-cat {
	flex: 1;
	min-width: 250px;
	margin-bottom: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
}

.price-card-cat .price-card-amount {
	grid-row: 1;
	grid-column: 2;
}

/* DOGS/FERAL LAYOUT - STACKED */
.pricing-grid-dogs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1vw;
}

.price-card-dog {
	margin-bottom: 1rem;
}

/* DETAILS SECTION */
.pricing-details {
	margin-top: 2rem;
	overflow-y: scroll;
	padding-right: 1.5rem;
}

.details-section {
	margin-bottom: 2rem;
}

.details-header {
	font-weight: 600;
	color: var(--rpvblk);
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--rpvred);
}

.details-list {
	list-style: none;
	padding-left: 0;
}

.details-list li {
	line-height: 1.6;
	margin-bottom: 0.75rem;
	padding-right: 1rem;
}

.details-list li:before {
	content: "–";
	margin-right: 0.75rem;
	color: var(--rpvred);
	font-weight: bold;
	flex-shrink: 0;
	/* Prevents the bullet from squishing */
}

/* #endregion PRICING SECTION */

/* #region FERAL CAT SECTION */
#feralcat {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 3rem;
	padding: 3rem;
	padding-top: calc(var(--navheight) + 3rem);
}

/* #endregion FERAL CAT SECTION */

/* #region RESTRICTIONS SECTION */
#restrictionSec {
	display: grid;
	grid-template-columns: 1fr 2fr;
	justify-content: flex-start;
	align-items: stretch;
	min-height: 100vh;
	color: var(--rpvwht);
	background-color: var(--rpvred);
	overflow: hidden;
}

.restriction-head {
	text-wrap: pretty;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
}

.restriction-list {
	overflow-y: scroll;
	padding-right: 1rem;
	color: var(--rpvred);
	background-color: white;
	padding: 2rem;
	border-radius: var(--roundcorner);
}

.restriction-list::-webkit-scrollbar-track {
	background: var(--rpvblk);
}

.restriction-list::-webkit-scrollbar-thumb {
	background: var(--rpvred);
	opacity: 1;
}

.restriction-list>ul>li:before {
	content: "✕";
	margin-right: 0.75rem;
	color: var(--rpvred);
	font-weight: bold;
}

/* #endregion RESTRICTIONS SECTION */

/* #region CONTACT SECTION */
#contactSec {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 3rem;
	padding: 3rem;
	padding-top: calc(var(--navheight) + 3rem);
	background-color: white;
	overflow: hidden;
}

.email-link {
	color: var(--rpvred);
	text-decoration: underline;
	font-weight: 600;
}

.contact-text {
	height: 100%;
	/*background-color: var(--rpvblk);*/
	/*color: var(--rpvwht);*/
	border-radius: var(--roundcorner);
	overflow-y: scroll;
}

.contact-text>span {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2rem;
}

.contact-text h3 {
	margin-top: 1rem;
}

.contact-text p {
	margin: 0.5rem 0;
	line-height: 2rem;
}

#contactSec>div:last-child {
	height: 100%;
	min-height: 400px;
}

/* #endregion CONTACT SECTION */

/* #region ASSISTANCE SECTION */
.assist-section {
	display: grid;
	grid-template-rows: 1fr 3fr;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	color: var(--rpvwht);
	background-color: var(--rpvred);
}

.assist-text p {
	line-height: 1.6;
	max-width: 70ch;
}

.assist-cards-container {
	background-color: var(--rpvwht);
	border-radius: var(--roundcorner);
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
}

.assist-cards {
	display: flex;
	flex-wrap: wrap;
	padding: 1.5rem;
	gap: 1.5rem;
	justify-content: center;
	overflow-y: auto;
}

.assist-card {
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
	background-color: var(--rpvylw);
	color: var(--rpvblk);
	border-radius: var(--roundcorner);
	flex: 1 1 60ch;
	gap: 0.5rem;
	border: solid .5rem transparent;
}

.assist-card p {
	margin: 0;
	line-height: 1.4;
	font-size: 0.95rem;
	padding-left: 1rem;
	text-indent: -1rem;
}

.assist-card-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
	line-height: 1.2;
}

.assist-card-tags {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
	opacity: 0.9;
	margin-bottom: 1rem;
}

/* #endregion ASSISTANCE SECTION */

/* #region STAFF SECTION */
#staffSec {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	height: auto;
	min-height: 100vh;
	padding: 2rem;
	padding-top: calc(var(--navheight) + var(--padtop));
	color: var(--rpvblk);
	background-color: var(--rpvwht);
}

#staffSec header {
	flex-shrink: 0;
	margin-bottom: 1rem;
}

.staffSecFlex {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, calc(50% - 1.25rem)));
	gap: 2.5rem;
	list-style: none;
	margin: 0;
	width: 100%;
	align-items: stretch;
	container-type: inline-size;
	justify-content: center;
}

.staffSecFlex::-webkit-scrollbar {
	width: none;
}

.staffCard {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1rem, 4vw, 1.8rem);
	padding: clamp(1.5rem, 3vw, 2rem);
	border-radius: calc(var(--roundcorner) * 2);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	align-items: center;
}

/* #endregion STAFF SECTION */

/* #region FOOTER */
footer {
	margin: 0;
	padding: 0.5rem;
	display: flex;
	justify-content: center;
	color: var(--rpvwht);
	background-color: var(--rpvblk);
	scroll-snap-align: end;
}

footer>p {
	opacity: 100%;
}

/* #endregion FOOTER */

/* #region TABLET */

@container (max-width: 600px) {
	.staffCard {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
		align-items: stretch;
	}

	.staffCard_img {
		grid-column: 1;
		grid-row: 1;
		width: 100%;
		height: clamp(200px, 60vw, 300px);
		aspect-ratio: 3 / 2;
	}

	.staffCard_info {
		grid-column: 1;
		grid-row: 2;
		justify-content: flex-start;
		gap: clamp(0.5rem, 2vw, 1rem);
	}

	.staffCard_name,
	.staffCard_title,
	.staffCard_position {
		text-align: center;
	}
}

/* #endregion TABLET */

@container (max-width: 350px) {
	.staffCard {
		grid-template-columns: 1fr 1.5fr;
		gap: clamp(1rem, 3vw, 1.5rem);
		padding: clamp(1rem, 2vw, 1.5rem);
	}

	.staffCard_img {
		width: clamp(100px, 30vw, 140px);
		height: clamp(100px, 30vw, 140px);
	}
}

.staffCard:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transform: translateY(-4px);
}

.staffCard_img {
	width: clamp(120px, 20vw, 240px);
	height: clamp(120px, 20vw, 240px);
	border-radius: 8px;
	overflow: hidden;
	background-color: #e0e0e0;
	flex-shrink: 0;
}

.staffCard_img>img,
.staffCard_img>div {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.staffCard_info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: clamp(0.5rem, 1.5vw, 1rem);
}

.staffCard_name {
	font-size: clamp(1.5rem, 3vw, 1.8rem);
	font-weight: 600;
	text-align: left;
	color: var(--rpvblk);
	margin: 0;
}

.staffCard_position {
	font-size: clamp(1.1rem, 1.8vw, 1.3rem);
	text-align: left;
	color: #666;
	margin: 0;
}

/* #region MOBILE */

@media only screen and (max-width: 801px) {
	:root {
		--navheight: 12dvh;
		--padtop: 1rem;
	}

	/* #region ScrollBar */
	::-webkit-scrollbar {
		width: 0;
		border-radius: var(--roundcorner);
	}

	::-webkit-scrollbar-track {
		background: white;
	}

	::-webkit-scrollbar-thumb {
		background: var(--rpvblk);
		opacity: 0.5;
	}

	::-webkit-scrollbar-thumb:hover {
		background: white;
	}

	/* #endregion ScrollBar */

	#navBookBtn {
		display: block;
		background-color: var(--rpvred);
		color: var(--rpvwht);
		border: none;
		border-radius: var(--roundcorner);
		padding: 0.5rem 1rem;
		margin-right: 1rem;
		font-size: 1rem;
		font-weight: bold;
		cursor: pointer;
		transition: opacity 0.3s ease;
	}

	#navBookBtn.transparent {
		opacity: 0;
		pointer-events: none;
	}

	html {
		font-size: 12px;
		scrollbar-gutter: auto;
	}

	h1 {
		max-width: 33ch;
		text-align: center;
		position: relative;
	}

	h4 {
		margin-bottom: -1em;
	}

	#header_img {
		max-height: 60px;
	}

	section {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		padding: 2rem;
		gap: 2rem;
		padding-top: calc(var(--navheight) + 2rem);
		padding-bottom: calc(var(--navheight) + 2rem);
	}

	/* Service section - stack hero */
	.service-hero {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 2rem;
		height: auto;
	}

	.service-image {
		grid-row: 1;
		min-height: 200px;
		max-height: 300px;
	}

	.service-highlights {
		display: none;
	}

	/* Service CTA - full width on mobile */
	.service-cta {
		position: initial;
		width: auto;
		padding-block: 3rem;
		margin-bottom: 4rem;
	}

	.cta-text p {
		white-space: normal;
	}

	.cta-button {
		width: 100%;
		align-self: stretch;
	}

	/* Pricing section */
	#pricingSec {
		grid-template-columns: 1fr;
		grid-template-rows: auto 4fr;
		height: fit-content;
		gap: 1rem;
		margin-bottom: 2.5rem;
	}

	.pricing-bar {
		gap: 1rem;
		flex-direction: row;
		justify-content: space-between;
	}

	.pricing-bar>h1 {
		text-align: left;
		font-size: clamp(3rem, 5vw, 3.5rem);
	}

	.pricing-nav {
		flex-direction: column;
		flex-wrap: nowrap;
		gap: 0;
		position: relative;
		border-radius: var(--roundcorner);
		overflow: hidden;
	}

	.tab-pane {
		height: auto;
		border: none;
		padding: 1rem 0;
	}

	/* Hide non-active tabs by default (collapsed state) */
	.pricing-nav>li {
		display: none;
	}

	.pricing-nav>li.active-tab {
		display: inline-flex;
	}

	/* Show the active tab button with a dropdown arrow */
	.pricing-nav>li.active-tab>button::after {
		content: " ▼";
		font-size: 1.5em;
		margin-left: 0.5rem;
	}

	/* When dropdown is open, show all tabs */
	.pricing-nav.dropdown-open>li {
		display: inline-flex;
	}

	/* Remove arrow when open */
	.pricing-nav.dropdown-open>li.active-tab>button::after {
		content: " ▲";
	}

	.pricing-nav>li>button {
		font-size: 1.25rem;
		padding: 0.5rem 0.75rem;
	}

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

	.pricing-grid-cats {
		flex-direction: column;
		margin-bottom: auto;
	}

	/* Resstrictions section */
	#restrictionSec {
		grid-template-columns: 1fr;
		grid-template-rows: auto 1fr;
		gap: 2rem;
		height: 100vh;
	}

	.restriction-head>p {
		max-width: 40ch;
		line-height: 1.8rem;
		margin: 0 auto;
	}

	#restrictionSec>div>ul {
		columns: 1;
	}

	.restriction-list {
		overflow-y: scroll;
		scrollbar-gutter: stable;
		padding: 0;
	}

	.restriction-list::-webkit-scrollbar {
		width: .5rem;
	}

	.restriction-list::-webkit-scrollbar-track {
		background: var(--rpvwht);
	}

	.restriction-list::-webkit-scrollbar-thumb {
		background: var(--rpvred);
	}

	.restriction-list>ul>li {
		padding: 1rem;
	}

	.restriction-list>ul>li:nth-child(odd) {
		background-color: #fff0f0;
	}

	/* Contact section */
	#contactSec {
		grid-template-columns: 1fr;
		padding-top: calc(var(--navheight) + 1.5rem);
		margin-bottom: 2rem;
	}


	.contact-text {
		height: fit-content;
	}

	.contact-text>span {
		padding: 0;
	}

	.directions-text {
		display: none;
	}

	#contactSec>div:last-child {
		min-height: 300px;
	}

	/* Assistance section */
	.assist-section {
		display: flex;
		height: auto;
	}

	.assist-cards-container {
		margin-block: 2rem;
	}

	.assist-card {
		flex: 1 1 100%;
	}

	.assist-card:hover {
		background-color: var(--rpvblk);
		color: var(--rpvylw);
		border: solid .5rem var(--rpvylw);

	}

	/* Staff */
	.staffSecFlex {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.staffCard_img {
		width: 180px;
		height: 180px;
	}

}

/* #endregion MOBILE */