/**
 * HOF Driver LLC Public Stylesheet
 * Brand Colors: Black (#0a0a0a), White (#ffffff), Gold (#c9a84c / #d4af37)
 */

:root {
	--hof-black: #050505;
	--hof-black-light: #121212;
	--hof-gold: #d4af37;
	--hof-gold-light: #f3e7c4;
	--hof-gold-dark: #9a7b2c;
	--hof-white: #ffffff;
	--hof-gray-light: #f0f0f0;
	--hof-gray: #d0d0d0;
	--hof-gray-dark: #262626;

	/* Silver & Chrome System */
	--hof-silver: #c0c0c0;
	--hof-silver-light: #e5e5e5;
	--hof-silver-dark: #7a7a7a;
	--hof-chrome-gradient: linear-gradient(135deg, #ffffff 0%, #d8d8d8 25%, #8e8e8e 50%, #f0f0f0 75%, #5c5c5c 100%);
	--hof-metallic-gradient: linear-gradient(135deg, #d0d0d0 0%, #ffffff 15%, #d4af37 35%, #f3e7c4 50%, #ffffff 65%, #c0c0c0 80%, #161616 100%);
	
	--font-display: 'Outfit', sans-serif;
	--font-body: 'Inter', sans-serif;
}

/* Base resets & typography */
.hof-homepage-wrapper, 
.hof-booking-container, 
.hof-pricing-wrapper, 
.hof-memberships-wrapper, 
.hof-about-wrapper, 
.hof-contact-wrapper, 
.hof-terms-wrapper, 
.hof-dashboard-wrapper, 
.hof-confirmation-wrapper {
	box-sizing: border-box;
	font-family: var(--font-body);
	color: var(--hof-white);
	background-color: var(--hof-black);
	padding: 20px;
	border-radius: 8px;
	max-width: 1200px;
	margin: 20px auto;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hof-homepage-wrapper *, 
.hof-booking-container *, 
.hof-pricing-wrapper *, 
.hof-memberships-wrapper *, 
.hof-about-wrapper *, 
.hof-contact-wrapper *, 
.hof-terms-wrapper *, 
.hof-dashboard-wrapper *, 
.hof-confirmation-wrapper * {
	box-sizing: border-box;
}

/* Premium Typography styling */
.hof-hero-title, 
.hof-section-header h1, 
.hof-section-header h2,
.hof-booking-header h2,
.hof-db-header h2,
.hof-confirmation-success-box h2 {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--hof-white);
	margin: 0 0 10px 0;
	text-transform: uppercase;
}

.hof-hero-title {
	font-size: 3.5rem;
	background: var(--hof-metallic-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hof-hero-tagline {
	font-family: var(--font-display);
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: var(--hof-gold);
	margin: 0;
	text-transform: uppercase;
}

.hof-hero-divider {
	width: 80px;
	height: 3px;
	background: var(--hof-gold);
	margin: 20px auto;
}

.hof-hero-lead {
	font-size: 1.25rem;
	max-width: 600px;
	margin: 0 auto 30px auto;
	line-height: 1.6;
	color: var(--hof-gray);
}

/* Button & Action styling */
.hof-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 15px 30px;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	border: 2px solid transparent;
}

.hof-btn-gold {
	background: linear-gradient(135deg, var(--hof-gold-light) 0%, var(--hof-gold) 50%, var(--hof-gold-dark) 100%);
	color: var(--hof-black);
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
	border: 1px solid var(--hof-gold);
}

.hof-btn-gold:hover {
	background: linear-gradient(135deg, var(--hof-white) 0%, var(--hof-gold-light) 50%, var(--hof-gold) 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
	color: var(--hof-black);
}

.hof-btn-chrome {
	background: var(--hof-chrome-gradient);
	color: var(--hof-black);
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
	border: 1px solid var(--hof-silver);
}

.hof-btn-chrome:hover {
	background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 40%, #c0c0c0 70%, #e0e0e0 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
	color: var(--hof-black);
}

.hof-btn-silver {
	background: linear-gradient(135deg, var(--hof-silver-light) 0%, var(--hof-silver) 50%, var(--hof-silver-dark) 100%);
	color: var(--hof-black);
	box-shadow: 0 4px 15px rgba(192, 192, 192, 0.2);
	border: 1px solid var(--hof-silver-dark);
}

.hof-btn-silver:hover {
	background: linear-gradient(135deg, var(--hof-white) 0%, var(--hof-silver-light) 50%, var(--hof-silver) 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(192, 192, 192, 0.4);
	color: var(--hof-black);
}

.hof-btn-white {
	background: var(--hof-white);
	color: var(--hof-black);
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.hof-btn-white:hover {
	background: var(--hof-gray-light);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
	color: var(--hof-black);
}

.hof-btn-outline {
	background: transparent;
	border-color: var(--hof-white);
	color: var(--hof-white);
}

.hof-btn-outline:hover {
	background: var(--hof-white);
	color: var(--hof-black);
	transform: translateY(-2px);
}

.hof-btn-black {
	background: var(--hof-black);
	color: var(--hof-white);
	border-color: var(--hof-gold);
}

.hof-btn-black:hover {
	background: var(--hof-gold);
	color: var(--hof-black);
	transform: translateY(-2px);
}

.large-full-width {
	width: 100%;
}

.hof-btn-link {
	background: transparent;
	border: none;
	color: var(--hof-gold);
	font-family: var(--font-display);
	font-weight: 600;
	cursor: pointer;
	font-size: 0.95rem;
	padding: 5px 0;
	transition: color 0.2s ease;
}

.hof-btn-link:hover {
	color: var(--hof-gold-light);
	text-decoration: underline;
}

/* CTA Group spacing */
.hof-cta-group {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.hof-cta-group.centered {
	margin: 20px 0;
}

/* Sections & Cards */
.hof-section-header {
	text-align: center;
	margin-bottom: 50px;
}

.hof-section-lead {
	font-size: 1.15rem;
	color: var(--hof-gray);
	margin-bottom: 15px;
}

.hof-gold-line {
	width: 60px;
	height: 2px;
	background-color: var(--hof-gold);
	margin: 0 auto;
}

/* Hero Section */
.hof-hero {
	position: relative;
	background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.95) 100%), url('../assets/hero-bg-placeholder.jpg') center/cover;
	padding: 100px 20px;
	border-radius: 8px;
	text-align: center;
	border: 1px solid var(--hof-gray-dark);
}

.hof-hero-hours {
	margin-top: 30px;
	font-size: 0.95rem;
	color: var(--hof-gray);
	line-height: 1.5;
}

.hof-hours-subtext {
	color: var(--hof-gold);
	font-size: 0.85rem;
}

/* Trust Section Grid */
.hof-trust-section {
	padding: 50px 0;
}

.hof-trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.hof-trust-card {
	background: var(--hof-black-light);
	border: 1px solid var(--hof-gray-dark);
	border-radius: 8px;
	padding: 30px;
	text-align: center;
	transition: border-color 0.3s ease;
}

.hof-trust-card:hover {
	border-color: var(--hof-gold);
}

.hof-trust-icon {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.hof-trust-card h3 {
	font-family: var(--font-display);
	color: var(--hof-gold);
	margin: 0 0 10px 0;
	font-size: 1.25rem;
}

.hof-trust-card p {
	color: var(--hof-gray);
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0;
}

/* Form Container Step-by-Step Styling */
.hof-booking-logo-container,
.hof-confirmation-logo-container {
	text-align: center;
	margin-bottom: 30px;
	width: 100%;
}

.hof-form-logo {
	max-height: 120px;
	width: auto;
	filter: drop-shadow(0 0 15px rgba(201, 168, 76, 0.35));
	display: inline-block;
}

.hof-booking-container {
	background-color: #000000 !important;
	border: 2px solid var(--hof-gold) !important;
	border-radius: 12px !important;
	padding: 35px !important;
	box-shadow: 0 15px 40px rgba(201, 168, 76, 0.15) !important;
	color: #ffffff !important;
}

.hof-booking-header {
	text-align: center;
	border-bottom: 1px solid rgba(201, 168, 76, 0.2);
	padding-bottom: 20px;
	margin-bottom: 30px;
}

.hof-booking-intro {
	color: #ffffff;
	font-weight: 500;
	line-height: 1.5;
}

.hof-form-section {
	margin-bottom: 40px;
}

.hof-form-section h3 {
	font-family: var(--font-display);
	font-size: 1.25rem;
	border-bottom: 1px solid rgba(201, 168, 76, 0.2);
	padding-bottom: 10px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	color: var(--hof-white);
}

.step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: var(--hof-gold);
	color: #000000;
	font-size: 0.95rem;
	font-weight: 700;
	margin-right: 10px;
}

.hof-form-row {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.hof-form-group {
	margin-bottom: 20px;
	flex: 1;
	min-width: 250px;
}

.hof-form-group.col-6 {
	flex: 1;
	min-width: 250px;
}

.hof-form-group.col-12 {
	flex: none;
	width: 100%;
}

.hof-form-group label {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 8px;
	color: #e5e5e5;
}

.hof-form-group input,
.hof-form-group select,
.hof-form-group textarea {
	width: 100%;
	padding: 12px 15px;
	background-color: #0a0a0a;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	color: #ffffff;
	font-family: var(--font-body);
	font-size: 0.95rem;
	transition: all 0.25s ease;
}

.hof-form-group input:focus,
.hof-form-group select:focus,
.hof-form-group textarea:focus {
	border-color: var(--hof-gold);
	box-shadow: 0 0 10px rgba(201, 168, 76, 0.25);
	outline: none;
}

/* Address Fields with autocompletes */
.hof-address-input-wrapper {
	position: relative;
}

.address-icon {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.1rem;
}

.hof-address-input-wrapper input {
	padding-left: 45px;
}

.address-validation-msg,
.scheduler-availability-msg {
	margin-top: 8px;
	font-size: 0.85rem;
	line-height: 1.4;
}

.address-validation-msg.error,
.scheduler-availability-msg.error {
	color: #ff6b6b;
}

.address-validation-msg.success,
.scheduler-availability-msg.success {
	color: #2ecc71;
}

.address-validation-msg.warning,
.scheduler-availability-msg.warning {
	color: #c9a84c; /* Gold/yellow warning text */
}

/* Dynamic Stop Inputs styling */
.hof-stop-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
	animation: fadeIn 0.3s ease;
}

.hof-remove-stop-btn {
	background: transparent;
	border: none;
	color: #ff6b6b;
	font-size: 1.5rem;
	cursor: pointer;
	line-height: 1;
}

/* Square Container */
.square-card-container {
	background: var(--hof-black);
	border: 1px solid var(--hof-gray-dark);
	border-radius: 4px;
	padding: 15px;
	margin-top: 15px;
}

.square-payment-errors {
	color: #ff6b6b;
	font-size: 0.85rem;
	margin-top: 10px;
}

/* Upfront Fare Quote Summary Card */
.hof-quote-section {
	background-color: var(--hof-black);
	border: 2px solid var(--hof-gold);
	border-radius: 6px;
	padding: 20px;
	margin: 30px 0;
	animation: fadeIn 0.3s ease;
}

.hof-quote-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--hof-gray-dark);
	padding-bottom: 15px;
	margin-bottom: 15px;
	flex-wrap: wrap;
	gap: 15px;
}

.hof-quote-header h4 {
	margin: 0;
	font-family: var(--font-display);
	color: var(--hof-white);
	font-size: 1.2rem;
	text-transform: uppercase;
}

.hof-quote-total-wrapper {
	text-align: right;
}

.hof-quote-total-wrapper .label {
	display: block;
	font-size: 0.8rem;
	color: var(--hof-gray);
	text-transform: uppercase;
}

.hof-quote-total-wrapper .value {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 800;
	color: var(--hof-gold);
}

.hof-quote-breakdown {
	font-size: 0.9rem;
	line-height: 1.6;
}

.breakdown-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
	color: var(--hof-gray);
}

.breakdown-row:last-child {
	margin-bottom: 0;
}

.gold-text {
	color: var(--hof-gold);
	font-weight: 600;
}

/* Pricing Page Comparison Grids */
.hof-pricing-container, 
.hof-membership-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.hof-pricing-card, 
.hof-membership-card {
	background-color: var(--hof-black-light);
	border: 1px solid var(--hof-gray-dark);
	border-radius: 8px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
}

.hof-pricing-card h3, 
.hof-membership-card h3 {
	font-family: var(--font-display);
	color: var(--hof-gold);
	margin: 0 0 15px 0;
	font-size: 1.35rem;
	text-transform: uppercase;
}

/* Tiers List styling */
.hof-tiers-table {
	margin-top: 20px;
}

.table-header, .table-row {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid var(--hof-gray-dark);
	font-size: 0.95rem;
}

.table-header {
	font-weight: 700;
	color: var(--hof-white);
}

.table-row:last-child {
	border-bottom: none;
}

.hof-pricing-example {
	margin-top: 25px;
	background: var(--hof-black);
	padding: 15px;
	border-radius: 4px;
	font-size: 0.85rem;
	line-height: 1.5;
	color: var(--hof-gray);
}

.rate-item {
	margin-bottom: 25px;
}

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

.rate-item .label {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--hof-white);
	margin-bottom: 5px;
}

.rate-item .value {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--hof-gold);
	margin-bottom: 8px;
}

.rate-item .desc {
	font-size: 0.85rem;
	color: var(--hof-gray);
	margin: 0;
	line-height: 1.4;
}

/* Membership Card specifics */
.hof-membership-card {
	position: relative;
}

.hof-membership-card.popular {
	border-color: var(--hof-gold);
	box-shadow: 0 4px 20px rgba(201, 168, 76, 0.15);
	transform: scale(1.02);
}

.popular-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--hof-gold);
	color: var(--hof-black);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.75rem;
	padding: 4px 12px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.price-wrapper {
	margin: 15px 0;
}

.price-wrapper .currency {
	font-size: 1.25rem;
	color: var(--hof-gold);
	vertical-align: top;
	font-weight: 700;
}

.price-wrapper .price {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--hof-white);
	line-height: 1;
	font-family: var(--font-display);
}

.price-wrapper .cycle {
	font-size: 0.9rem;
	color: var(--hof-gray);
}

.yearly-option {
	font-size: 0.85rem;
	color: var(--hof-gold);
	margin-bottom: 20px;
}

.perks-list {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
	font-size: 0.95rem;
}

.perks-list li {
	margin-bottom: 12px;
	display: flex;
	align-items: flex-start;
	line-height: 1.4;
}

.perks-list li .icon {
	margin-right: 10px;
}

.perks-list li.disabled {
	color: var(--hof-gray-dark);
	text-decoration: line-through;
}

.hof-membership-card .card-footer {
	margin-top: auto;
}

/* About Pillars grid layout */
.hof-about-container {
	margin-top: 40px;
}

.hof-about-main-text {
	font-size: 1.2rem;
	line-height: 1.7;
	color: var(--hof-gray);
	margin-bottom: 40px;
}

.hof-pillars-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 25px;
}

.pillar-card {
	background-color: var(--hof-black-light);
	border: 1px solid var(--hof-gray-dark);
	border-radius: 6px;
	padding: 25px;
}

.pillar-card h4 {
	font-family: var(--font-display);
	color: var(--hof-gold);
	margin: 0 0 10px 0;
	font-size: 1.15rem;
	text-transform: uppercase;
}

.pillar-card p {
	color: var(--hof-gray);
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
}

/* Contact Details Cards */
.hof-contact-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	margin-top: 40px;
}

.hof-contact-info-card, 
.hof-contact-buttons-card {
	background-color: var(--hof-black-light);
	border: 1px solid var(--hof-gray-dark);
	border-radius: 8px;
	padding: 35px;
}

.hof-contact-info-card h3, 
.hof-contact-buttons-card h3 {
	font-family: var(--font-display);
	color: var(--hof-gold);
	margin: 0 0 10px 0;
	font-size: 1.4rem;
	text-transform: uppercase;
}

.hof-contact-info-card .tagline {
	color: var(--hof-gray);
	margin-bottom: 30px;
	display: block;
}

.info-row {
	display: flex;
	margin-bottom: 25px;
}

.info-row:last-child {
	margin-bottom: 0;
}

.info-row .icon {
	font-size: 1.5rem;
	margin-right: 15px;
}

.info-row strong {
	display: block;
	color: var(--hof-white);
	margin-bottom: 5px;
}

.info-row p {
	margin: 0;
	color: var(--hof-gray);
}

.phone-link {
	font-family: var(--font-display);
	font-size: 1.4rem;
	color: var(--hof-gold);
	font-weight: 700;
	text-decoration: none;
}

.phone-link:hover {
	color: var(--hof-gold-light);
	text-decoration: underline;
}

.hof-contact-actions-vertical {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 25px;
}

/* Terms blockquotes and lists */
.hof-terms-content {
	line-height: 1.7;
	color: var(--hof-gray);
}

.hof-terms-content blockquote {
	background: var(--hof-black-light);
	border-left: 3px solid var(--hof-gold);
	padding: 20px;
	margin: 0 0 30px 0;
	color: var(--hof-gold);
	font-size: 0.95rem;
	border-radius: 0 4px 4px 0;
}

.hof-terms-content h3 {
	font-family: var(--font-display);
	color: var(--hof-white);
	font-size: 1.2rem;
	margin-top: 30px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.hof-terms-content ul {
	margin-bottom: 20px;
	padding-left: 20px;
}

.hof-terms-content li {
	margin-bottom: 8px;
}

/* Confirmation box styling */
.hof-confirmation-wrapper {
	max-width: 700px;
	background-color: #000000 !important;
	border: 2px solid var(--hof-gold) !important;
	border-radius: 12px !important;
	padding: 35px !important;
	box-shadow: 0 15px 40px rgba(201, 168, 76, 0.15) !important;
	color: #ffffff !important;
	margin: 20px auto;
}

.hof-confirmation-success-box {
	text-align: center;
	padding: 20px 0;
}

.success-icon {
	font-size: 4rem;
	margin-bottom: 20px;
	animation: bounce 1s infinite alternate;
}

.reference-id {
	font-family: var(--font-display);
	color: var(--hof-gold);
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 25px;
}

.success-message {
	background-color: #0a0a0a;
	border: 1px solid rgba(201, 168, 76, 0.2);
	border-left: 4px solid var(--hof-gold);
	padding: 20px;
	border-radius: 0 6px 6px 0;
	text-align: left;
	line-height: 1.6;
}

.hof-confirmation-card {
	background-color: #0a0a0a;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 30px;
	margin-top: 30px;
}

.hof-confirmation-card h3 {
	font-family: var(--font-display);
	color: var(--hof-gold);
	margin: 0 0 20px 0;
	text-transform: uppercase;
}

.details-grid {
	font-size: 0.95rem;
}

.details-row {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid var(--hof-gray-dark);
}

.details-row .label {
	color: var(--hof-gray);
}

.details-row .value {
	text-align: right;
	max-width: 60%;
	color: var(--hof-white);
}

.details-row.total-row {
	border-bottom: none;
	padding-top: 20px;
	font-size: 1.2rem;
}

.details-row.total-row .label {
	color: var(--hof-white);
	font-weight: 700;
}

.details-row.total-row .value {
	color: var(--hof-gold);
	font-size: 1.5rem;
}

.stops-list-ordered {
	padding-left: 15px;
	margin: 0;
	text-align: left;
}

.action-subtext {
	text-align: center;
	color: var(--hof-gray-dark);
	margin-top: 15px;
}

/* Customer Account Dashboard */
.hof-db-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--hof-gray-dark);
	padding-bottom: 20px;
	margin-bottom: 30px;
	flex-wrap: wrap;
	gap: 20px;
}

.hof-db-header h2 {
	margin-bottom: 5px;
}

.hof-db-header .tagline {
	color: var(--hof-gray);
	margin: 0;
}

.hof-db-grid {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.hof-db-col-left {
	flex: 2;
	min-width: 320px;
}

.hof-db-col-right {
	flex: 1;
	min-width: 280px;
}

.hof-responsive-table {
	overflow-x: auto;
}

.hof-db-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.hof-db-table th, 
.hof-db-table td {
	padding: 12px;
	text-align: left;
	border-bottom: 1px solid var(--hof-gray-dark);
}

.hof-db-table th {
	font-weight: 700;
	color: var(--hof-white);
}

.hof-db-table td .addr {
	display: inline-block;
	max-width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.membership-details, 
.profile-details {
	font-size: 0.95rem;
}

.membership-details .hof-membership-label.large {
	font-size: 1.1rem;
	padding: 6px 12px;
	margin-bottom: 20px;
	display: inline-block;
}

.detail-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.description-text {
	margin-top: 25px;
	color: var(--hof-gray-dark);
	line-height: 1.4;
}

.dashboard-promo {
	line-height: 1.5;
	color: var(--hof-gray);
	margin-bottom: 20px;
}

/* Animations */
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
	from { transform: translateY(0); }
	to { transform: translateY(-8px); }
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
	.hof-hero-title {
		font-size: 2.2rem;
	}
	.hof-hero-tagline {
		font-size: 1.2rem;
	}
	.hof-cta-group {
		flex-direction: column;
		width: 100%;
	}
	.hof-btn {
		width: 100%;
	}
	.hof-form-row {
		flex-direction: column;
		gap: 0;
	}
	.hof-form-group.col-6 {
		width: 100%;
		flex: none;
	}
	.hof-db-grid {
		flex-direction: column;
	}
}

/* Premium Route Selection Cards */
.hof-route-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px;
	margin-bottom: 15px;
}

.hof-route-card {
	background-color: var(--hof-black-light);
	border: 1px solid var(--hof-gray-dark);
	border-radius: 6px;
	padding: 12px;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	color: var(--hof-white);
	display: flex;
	flex-direction: column;
}

.hof-route-card:hover {
	border-color: var(--hof-gray);
	background-color: #1a1a1a;
	transform: translateY(-2px);
}

.hof-route-card.selected {
	border-color: var(--hof-gold);
	background-color: #1a1813;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.hof-route-card-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--hof-gold);
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.hof-route-card-details {
	font-size: 0.8rem;
	color: var(--hof-gray);
	line-height: 1.4;
}

.hof-route-card-price {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--hof-white);
	margin-top: auto;
	padding-top: 10px;
	border-top: 1px solid rgba(255,255,255,0.05);
}

/* Tipping section styles */
.hof-tip-btn {
	background: #111;
	border: 1px solid #333;
	color: #fff;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.2s ease;
	flex: 1 1 auto;
	min-width: 80px;
	text-align: center;
}

.hof-tip-btn:hover {
	border-color: var(--hof-gold);
	background: #1a1a1a;
}

.hof-tip-btn.active {
	border-color: var(--hof-gold);
	background: var(--hof-gold);
	color: #000;
}

#hof-custom-tip-input {
	background: #111;
	border: 1px solid #333;
	color: #fff;
	padding: 8px 12px;
	border-radius: 4px;
	font-weight: bold;
	font-size: 1rem;
	margin-top: 5px;
}

#hof-custom-tip-input:focus {
	border-color: var(--hof-gold);
	outline: none;
}

/* ==========================================================================
   HOF DRIVER LLC PREMIUM SINGLE-PAGE WEBSITE STYLES
   ========================================================================== */

.hof-premium-body {
	background-color: #000000 !important;
	color: #ffffff !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow-x: hidden !important;
}

/* Style standard WordPress editor elements to look luxury black, gold, & white */
.hof-main-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.hof-premium-body h1,
.hof-premium-body h2,
.hof-premium-body h3,
.hof-premium-body h4 {
	font-family: var(--font-display) !important;
	color: #ffffff !important;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin-top: 1.5em;
	margin-bottom: 0.5em;
}

.hof-premium-body h1 {
	font-size: 3rem;
	background: linear-gradient(135deg, #ffffff 40%, var(--hof-gold) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-top: 0.5em;
}

.hof-premium-body h2 {
	font-size: 2.2rem;
	border-left: 4px solid var(--hof-gold);
	padding-left: 15px;
	margin-top: 2em;
}

.hof-premium-body h3 {
	font-size: 1.5rem;
	color: var(--hof-gold) !important;
}

.hof-premium-body p {
	font-family: var(--font-body);
	color: rgba(255, 255, 255, 0.85) !important;
	font-size: 1.05rem;
	line-height: 1.7;
	margin-bottom: 1.5em;
}

/* Automate standard Gutenberg buttons to look like HOF luxury buttons */
.hof-premium-body .wp-block-button__link {
	background: linear-gradient(135deg, var(--hof-gold) 0%, var(--hof-gold-dark) 100%) !important;
	color: #000000 !important;
	font-family: var(--font-display);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 14px 28px !important;
	border-radius: 50px !important;
	text-decoration: none !important;
	border: none !important;
	box-shadow: 0 4px 15px rgba(201, 168, 76, 0.25) !important;
	transition: all 0.3s ease !important;
}

.hof-premium-body .wp-block-button__link:hover {
	background: linear-gradient(135deg, var(--hof-gold-light) 0%, var(--hof-gold) 100%) !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4) !important;
	color: #000000 !important;
}

.hof-premium-body .wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent !important;
	color: #ffffff !important;
	border: 2px solid #ffffff !important;
}

.hof-premium-body .wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: #ffffff !important;
	color: #000000 !important;
}

/* Style Gutenberg Columns/Groups as cards if user adds background styling */
.hof-premium-body .wp-block-column,
.hof-premium-body .wp-block-group {
	transition: all 0.3s ease;
}

.hof-premium-body .wp-block-group.has-background,
.hof-premium-body .wp-block-column.has-background {
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	padding: 25px !important;
}

.hof-premium-body .wp-block-group.has-background:hover,
.hof-premium-body .wp-block-column.has-background:hover {
	border-color: var(--hof-gold);
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(201, 168, 76, 0.1);
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px; /* Offset to prevent sticky header overlapping content */
}

/* Sticky Glassmorphic Header Navigation */
.hof-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	z-index: 9999;
	background: rgba(10, 10, 10, 0.75);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hof-header.scrolled {
	height: 65px;
	background: rgba(5, 5, 5, 0.95);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
	border-bottom-color: rgba(201, 168, 76, 0.2);
}

.hof-header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.hof-logo-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	gap: 12px;
}

.hof-header-logo {
	height: 48px;
	width: auto;
	transition: all 0.3s ease;
	filter: drop-shadow(0 0 5px rgba(201,168,76,0.2));
}

.hof-header.scrolled .hof-header-logo {
	height: 38px;
}

.hof-logo-text {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.3rem;
	letter-spacing: 1px;
}

.gold-text-logo {
	color: var(--hof-gold);
}

.silver-text-logo {
	color: #e5e5e5;
}

/* Main Navigation Links */
.hof-nav {
	display: flex;
	align-items: center;
}

.hof-nav-list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 25px;
	align-items: center;
}

.hof-nav-list a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.2s ease;
	position: relative;
}

.hof-nav-list a:hover {
	color: var(--hof-gold);
}

/* Hover line effect for nav items */
.hof-nav-list a:not(.nav-book-btn)::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -4px;
	left: 0;
	background-color: var(--hof-gold);
	transition: width 0.25s ease;
}

.hof-nav-list a:not(.nav-book-btn):hover::after {
	width: 100%;
}

.nav-book-btn {
	padding: 10px 20px !important;
	font-size: 0.8rem !important;
	box-shadow: 0 4px 10px rgba(201, 168, 76, 0.2);
}

/* Mobile Hamburger Toggle Button */
.hof-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 25px;
	height: 18px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 10000;
}

.hof-menu-toggle .bar {
	width: 100%;
	height: 2px;
	background-color: var(--hof-white);
	transition: all 0.3s ease;
}

/* Single Page Section Dividers */
.hof-homepage-wrapper {
	margin-top: 100px !important;
	padding: 0 20px;
}

.hof-section-divider {
	padding: 90px 0 60px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hof-section-divider:last-of-type {
	border-bottom: none;
}

.hof-section-subtitle {
	display: block;
	font-family: var(--font-display);
	color: var(--hof-gold);
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 12px;
	text-align: center;
}

/* Dynamic Hero Section Enhancements */
.hof-hero {
	background: linear-gradient(180deg, rgba(5, 5, 5, 0.5) 0%, rgba(10, 10, 10, 0.95) 100%), url('../assets/hero-bg.png') center/cover no-repeat;
	padding: 120px 20px;
	border-radius: 12px;
	border: 1px solid rgba(201, 168, 76, 0.15);
	position: relative;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.hof-hero-logo-wrapper {
	margin-bottom: 25px;
	animation: fadeIn 1.2s ease;
}

.hof-hero-logo {
	height: 150px;
	width: auto;
	filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.35));
}

.gold-gradient-text {
	background: linear-gradient(135deg, var(--hof-gold-light) 0%, var(--hof-gold) 50%, var(--hof-gold-dark) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: var(--font-display);
	font-weight: 800;
}

.silver-gradient-text {
	background: linear-gradient(135deg, var(--hof-silver-light) 0%, var(--hof-silver) 50%, var(--hof-silver-dark) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: var(--font-display);
	font-weight: 800;
}

.chrome-gradient-text {
	background: var(--hof-chrome-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: var(--font-display);
	font-weight: 800;
}

.metallic-gradient-text {
	background: var(--hof-metallic-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: var(--font-display);
	font-weight: 800;
}

.hof-hero-hours-card {
	display: inline-block;
	background: rgba(22, 22, 22, 0.8);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(201, 168, 76, 0.25);
	border-radius: 8px;
	padding: 15px 30px;
	margin-top: 35px;
	font-size: 0.95rem;
	color: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Pillar Animations and Cards */
.pillar-card {
	background-color: var(--hof-black-light);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	padding: 25px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.pillar-card:hover {
	transform: translateY(-5px);
	border-color: var(--hof-gold);
	box-shadow: 0 10px 25px rgba(201, 168, 76, 0.12);
}

.pillar-icon {
	font-size: 2.2rem;
	margin-bottom: 15px;
}

/* Booking Spliced Container */
.hof-booking-section-wrapper {
	background-color: var(--hof-black-light);
	border: 2px solid var(--hof-gold);
	border-radius: 12px;
	padding: 10px;
	box-shadow: 0 15px 45px rgba(0,0,0,0.6);
	position: relative;
}

.hof-booking-section-wrapper .hof-booking-container {
	margin: 0 auto !important;
	border: none !important;
	box-shadow: none !important;
	background: transparent !important;
	padding: 10px !important;
}

/* Contact Branding header in card */
.hof-contact-card-brand {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 25px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	padding-bottom: 15px;
}

.hof-contact-card-logo {
	height: 60px;
	width: auto;
	filter: drop-shadow(0 0 8px rgba(201,168,76,0.25));
}

/* Premium Web Footer */
.hof-footer {
	text-align: center;
	padding: 60px 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	margin-top: 60px;
}

.hof-footer-logo-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

.hof-footer-logo {
	height: 75px;
	width: auto;
	filter: drop-shadow(0 0 10px rgba(201,168,76,0.3));
}

.hof-footer-title {
	font-family: var(--font-display);
	font-weight: 800;
	color: #fff;
	font-size: 1.4rem;
	letter-spacing: 1px;
}

.hof-footer-disclaimer {
	max-width: 800px;
	margin: 0 auto 25px auto;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.4);
	line-height: 1.6;
}

.hof-footer-links {
	margin-bottom: 15px;
}

.hof-footer-links a {
	color: var(--hof-gold);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	margin: 0 10px;
	transition: color 0.2s ease;
}

.hof-footer-links a:hover {
	color: #fff;
}

.hof-footer-copyright {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.3);
}

/* Responsive Overrides */
@media (max-width: 991px) {
	.hof-menu-toggle {
		display: flex;
	}
	
	.hof-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 290px;
		height: 100vh;
		background: #090909;
		border-left: 1px solid rgba(201, 168, 76, 0.2);
		padding: 100px 30px 30px 30px;
		transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		z-index: 9998;
		box-shadow: -10px 0 40px rgba(0, 0, 0, 0.85);
	}
	
	.hof-nav.active {
		right: 0;
	}
	
	.hof-nav-list {
		flex-direction: column;
		align-items: flex-start;
		gap: 25px;
		width: 100%;
	}
	
	.hof-nav-list li {
		width: 100%;
	}
	
	.hof-nav-list a {
		display: block;
		font-size: 1.05rem;
		padding: 8px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	}
	
	.nav-book-btn {
		width: 100%;
		text-align: center;
		margin-top: 15px;
		background: var(--hof-gold);
		color: var(--hof-black);
	}

	/* Hamburger morphing effect */
	.hof-menu-toggle.active .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
	
	.hof-menu-toggle.active .bar:nth-child(2) {
		opacity: 0;
	}
	
	.hof-menu-toggle.active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}
}

@media (max-width: 768px) {
	.hof-section-divider {
		padding: 60px 0 40px 0;
	}
	
	.hof-hero {
		padding: 80px 15px;
	}
	
	.hof-hero-logo {
		height: 110px;
	}
	
	.hof-footer-logo {
		height: 65px;
	}
}

/* Payment Cards Selector */
.hof-payment-cards-grid {
	display: flex;
	gap: 20px;
	margin-top: 10px;
	margin-bottom: 20px;
	flex-wrap: wrap;
	width: 100%;
}

.hof-payment-card {
	flex: 1;
	min-width: 240px;
	background: #0d0d0d;
	border: 2px solid #222;
	border-radius: 8px;
	padding: 20px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}

.hof-payment-card:hover {
	border-color: #444;
	transform: translateY(-2px);
	background: #111;
}

.hof-payment-card.selected {
	border-color: var(--hof-gold);
	background: rgba(201, 168, 76, 0.06);
	box-shadow: 0 4px 15px rgba(201, 168, 76, 0.15);
}

.hof-payment-card-icon {
	font-size: 2.2rem;
	margin-bottom: 12px;
}

.hof-payment-card-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--hof-white);
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.hof-payment-card-subtitle {
	font-size: 0.85rem;
	color: #999;
	line-height: 1.4;
}

.hof-payment-card.selected .hof-payment-card-title {
	color: var(--hof-gold);
}

/* Custom Autocomplete Dropdown */
.hof-autocomplete-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #1a1a1a;
	border: 1px solid #333;
	border-top: none;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
	z-index: 1000;
	max-height: 250px;
	overflow-y: auto;
	display: none;
}

.hof-autocomplete-item {
	padding: 12px 15px;
	font-size: 0.95rem;
	color: #e0e0e0;
	cursor: pointer;
	border-bottom: 1px solid #262626;
	transition: background-color 0.2s ease, color 0.2s ease;
	text-align: left;
}

.hof-autocomplete-item:last-child {
	border-bottom: none;
	border-radius: 0 0 8px 8px;
}

.hof-autocomplete-item:hover,
.hof-autocomplete-item.active {
	background-color: #262626;
	color: var(--hof-gold);
}


