/* Single Pub Page Styles */
.pub-detail-page {
	font-family: var(--wp--preset--font-family--body-font);
	margin-top: 0;
	padding: 0;
}

/* Hero Section */
.pub-hero-section {
	background-size: cover;
	background-position: center;
	padding: 4rem 0;
	color: #FFFFFF;
	text-align: center;
	position: relative;
}

.lease-available-badge {
	background: #dc3545;
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 1rem;
}

.pub-hero-title {
	font-size: var(--wp--preset--font-size--heading-1);
	font-weight: 400;
	margin-bottom: var(--wp--preset--spacing--10);
}

.pub-postcode-badge {
	background: rgba(255, 255, 255, 0.3);
	padding: 0.25rem 0.75rem;
	border-radius: 15px;
	margin-left: 1rem;
}

.pub-hero-description {
	max-width: 600px;
	margin: 0 auto;
}

.pub-hero-container {
	position: relative;
	height: 50vh;
	min-height: 400px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
}

.pub-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.3) 0%,
			rgba(0, 0, 0, 0.6) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.pub-hero-content {
	text-align: center;
	color: #FFFFFF;
	max-width: 800px;
	padding-right: var(--wp--style--root--padding-right);
	padding-left: var(--wp--style--root--padding-left);
	padding-top: var(--wp--preset--spacing--50);
	margin: 0 auto;
	position: relative;
}

.location-badge {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
	display: inline-block;
	margin-bottom: 1rem;
	backdrop-filter: blur(10px);
}

.pub-hero-badges {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.lease-badge {
	background: #ffc107;
	color: #000;
	padding: 0.5rem 1.5rem;
	border-radius: 25px;
	font-weight: 700;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.category-badge {
	padding: 0.5rem 1.5rem;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.category-classic {
	background: #007cba;
	color: white;
}

.category-premium {
	background: #8b5a3c;
	color: white;
}

.category-signature {
	background: #2c3e50;
	color: white;
}

.pub-hero-address {
	font-size: 1.1rem;
	margin-bottom: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.pub-hero-address .postcode {
	background: rgba(255, 255, 255, 0.3);
	padding: 0.25rem 0.75rem;
	border-radius: 15px;
	font-size: 0.9rem;
}

.pub-hero-location {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.pub-hero-location .location-name {
	font-weight: 600;
}

.pub-hero-location .postcode {
	background: rgba(255, 255, 255, 0.2);
	padding: 0.25rem 0.75rem;
	border-radius: 15px;
	font-size: 0.9rem;
}

/* Main Content */
.pub-main-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Pub Details Section */
.pub-details-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	padding: 4rem 0;
	align-items: start;
}

.pub-image-column {
	position: relative;
}

.pub-main-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pub-info-column {
	padding-left: 2rem;
}

.pub-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #333;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.external-link {
	color: #666;
	text-decoration: none;
	font-size: 1.5rem;
	transition: color 0.3s ease;
}

.external-link:hover {
	color: #007cba;
}


/* Lease Details */
.lease-detail {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
	border-bottom: 1px solid #eee;
}

.lease-detail:last-of-type {
	border-bottom: none;
	margin-bottom: 2rem;
}

.lease-label {
	font-weight: 600;
	color: #333;
}

.lease-value {
	font-weight: 700;
	color: #007cba;
}

/* Facilities */
.facilities-section {
	margin: 2rem 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.facility-badge {
	background: #f8f9fa;
	color: #333;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
	border: 1px solid #e9ecef;
}

.submit-enquiry-btn {
	background: #2c3e50;
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 6px;
	font-weight: 700;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	max-width: 300px;
}

.submit-enquiry-btn:hover {
	background: #34495e;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.submit-enquiry-btn:focus {
	outline: 2px solid #007cba;
	outline-offset: 2px;
}

.submit-enquiry-btn:active {
	transform: translateY(0);
}

.pub-hero-actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
	padding: 1rem 2rem;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
	display: inline-block;
}

.btn-primary {
	background: #ffc107;
	color: #000;
	border-color: #ffc107;
}

.btn-primary:hover {
	background: #e6ac00;
	border-color: #e6ac00;
	color: #000;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.btn-secondary {
	background: transparent;
	color: white;
	border-color: white;
}

.btn-secondary:hover {
	background: white;
	color: #333;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* =====[OVERVIEW]===== */
.overview-section {
	background: var(--wp--preset--color--secondary);
	padding: var(--wp--preset--spacing--50) 0;
	margin: 0;
}

.overview-section .two-column-layout {
	margin: 0 auto;
}

.overview-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.overview-text h3 {
	font-size: var(--wp--preset--font-size--heading-3);
	font-weight: 600;
	margin-bottom: var(--wp--preset--spacing--30);
	color: var(--wp--preset--color--black);
}

.overview-text p {
	font-size: var(--wp--preset--font-size--body);
	color: var(--wp--preset--color--black);
}

.overview-text h2 {
	font-size: var(--wp--preset--font-size--heading-1);
	font-weight: 600;
	margin-bottom: var(--wp--preset--spacing--30);
	color: var(--wp--preset--color--black);
}

.overview-text .overview-description p {
	margin-top: 1.2rem;
}

.overview-text .overview-description h2+p {
	margin: 0;
}

.overview-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Overview specific layout: make the image column wider than text */
.overview-section .two-column-grid {
	grid-template-columns: 1fr 1.8fr;
}

@media (max-width: 991px) {
	.overview-section .two-column-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

/* Financial Section */
.financial-section {
	background: white;
	padding: 4rem 0;
	margin: 4rem 0;
}

/* Two Column Layout */
.two-column-layout {
	max-width: var(--wp--style--global--wide-size, 1200px);
	margin: 4rem auto;
	padding-block-start: 0;
	padding-left: var(--wp--style--root--padding-left);
	padding-right: var(--wp--style--root--padding-right);
}

.two-column-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
	width: 100%;
}

.two-column-grid>* {
	min-width: 0;
}

@media (max-width: 768px) {
	.two-column-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

/* Featured Image */
.featured-image {
	min-width: 0;
}

.featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* =====[PUB DETAILS]===== */
.pub-details-group .two-column-layout {
	margin: 0 auto;
	padding-top: var(--wp--preset--spacing--50);
	padding-bottom: var(--wp--preset--spacing--50);
}

.pub-details-group .two-column-grid {
	gap: 2em var(--wp--preset--spacing--50);
}

.pub-details {
	min-width: 0;
	overflow: hidden;
}

.pub-details-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.pub-details-header h2 {
	font-size: var(--wp--preset--font-size--heading-1);
	font-weight: 600;
	color: var(--wp--preset--color--black);
	margin: 0;
	position: relative;
}

.pub-website-link {
	position: static;
}

.pub-website-link:after {
	content: '';
	inset: 0;
	position: absolute;
	z-index: 1;
}

.pub-website-link svg {
	width: 24px;
	height: 24px;
}

.pub-address {
	font-size: 0.95rem;
	margin-bottom: 1rem;
}

.pub-description p {
	margin-top: 1rem;
}

.pub-description p:first-child {
	margin-top: 0;
}

/* Lease Information */
.lease-info-card {
	margin-bottom: 1rem;
}

.lease-info-card h3 {
	margin: 0 0 1.5rem 0;
	font-size: 1.1rem;
	color: #333;
	font-weight: 600;
}

.lease-info-item {
	margin-top: 1rem;
}

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

.lease-info-label {
	font-weight: 700;
}

/* Facilities */
.facilities-section {
	margin: 1rem 0;
}

.facilities-grid {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	padding: 0.5rem 0;
	flex-wrap: nowrap;
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE and Edge */
}

.facility-tag .facility-icon {
	width: 20px;
	height: 20px;
	object-fit: contain;
	display: inline-block;
	margin-right: 0.25rem;
}

.facilities-grid::-webkit-scrollbar {
	display: none;
	/* Chrome, Safari and Opera */
}

.facility-tag {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	white-space: nowrap;
	flex-shrink: 0;
	position: relative;
}

.facility-tag:not(:last-child)::after {
	content: '';
	position: absolute;
	right: -0.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 60%;
	background: #dee2e6;
	pointer-events: none;
}

.facility-name {
	font-size: 0.9rem;
	color: #333;
	font-weight: 500;
}

/* CTA Button */
.cta-section {
	margin-top: 1rem;
}

.cta-button {
	font-family: inherit;
	font-weight: var(--wp--custom--font-weight--bold);
	font-size: var(--wp--preset--font-size--button);
	color: var(--wp--preset--color--white);
	background: var(--wp--preset--color--primary);
	padding: 1rem 2rem;
	border: none;
	text-transform: uppercase;
	letter-spacing: 0;
	cursor: pointer;
	transition: all 0.3s ease;
}

/* =====[FINANCIAL & BUSINESS INFO]===== */
.financial-business-section {
	max-width: var(--wp--style--global--wide-size, 1200px);
	margin: 0 auto;
	padding-left: var(--wp--style--root--padding-left);
	padding-right: var(--wp--style--root--padding-right);
	padding-top: var(--wp--preset--spacing--50);
	padding-bottom: var(--wp--preset--spacing--50);
}

.financial-business-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem var(--wp--preset--spacing--40);
	align-items: start;
}

@media (max-width: 768px) {
	.financial-business-grid {
		grid-template-columns: 1fr;
		/*       gap: 2rem; */
	}
}

.info-section h2 {
	font-size: var(--wp--preset--font-size--heading-1);
	font-weight: 600;
	margin-bottom: var(--wp--preset--spacing--30);
	color: var(--wp--preset--color--black);
}

.info-card {
	background: transparent;
	padding: 0;
	border-radius: 0;
	border: none;
}

.info-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 52px;
	padding: 0.75rem 1.25rem;
	border: none;
	/* margin-bottom: 12px; */
}

.info-item:not(:last-child) {
	border-bottom: none;
}

/* Alternate row backgrounds to match design */
.info-card .info-item:nth-child(odd) {
	background: var(--wp--preset--color--secondary);
}

.info-card .info-item:nth-child(even) {
	background: transparent;
}

.info-label {
	font-size: var(--wp--preset--font-size--body);
	padding-right: 1rem;
}

.info-value {
	font-size: var(--wp--preset--font-size--body);
	font-weight: 700;
}

.info-value a {
	color: var(--wp--preset--color--primary);
	text-decoration: underline;
}

/* Cover Image Section */
.cover-image-section {
	background-size: cover;
	background-position: center;
	color: white;
	position: relative;
	min-height: 600px;
}

.cover-image-overlay {
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
	position: absolute;
	inset: 0;
}

.cover-content {
	position: relative;
	max-width: var(--wp--style--global--wide-size, 1200px);
	margin: 0 auto;
	padding-left: var(--wp--style--root--padding-left);
	padding-right: var(--wp--style--root--padding-right);
	z-index: 1;
}

.cover-content-inner {
	max-width: 580px;
	position: relative;
	border-left: 2px solid var(--wp--preset--color--dark);
	padding-top: var(--wp--preset--spacing--60);
	padding-left: var(--wp--preset--spacing--30);
}

.cover-accent-line {
	display: none;
}

.cover-description {
	color: #FFFFFF;
}

.cover-description h1,
.cover-description h2,
.cover-description h3 {
	font-weight: 600;
	color: #FFFFFF;
	margin-bottom: var(--wp--preset--spacing--30);
}

.cover-description h2 {
	font-size: clamp(1.5rem, 2.4vw, 2.25rem);
}

.cover-description h3 {
	font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.cover-description p {
	margin: 1.2rem 0 0 0;
}

@media (max-width: 767px) {
	.cover-image-section {
		min-height: 440px;
	}
}


/* =====[FAQ SECTION]===== */
.faq-section {
	padding-top: var(--wp--preset--spacing--60);
	padding-bottom: var(--wp--preset--spacing--60);
}

.faq-container {
	max-width: var(--wp--style--global--wide-size, 1200px);
	margin: 0 auto;
	padding-left: var(--wp--style--root--padding-left);
	padding-right: var(--wp--style--root--padding-right);
}

.faq-title {
	font-size: var(--wp--preset--font-size--heading-1);
	font-weight: 600;
	text-align: center;
	margin-bottom: var(--wp--preset--spacing--40);
}

.faq-item {
	background: transparent;
	overflow: hidden;
}

.faq-list .faq-item:nth-child(odd) {
   background: var(--wp--preset--color--secondary);
}
.faq-list .faq-item:nth-child(even) {
   background: #E6E9F6;
}

.faq-question {
	font-family: inherit;
	font-size: clamp(18px, 2vw, 20px);
	font-weight: 600;
	color: var(--wp--preset--color--black);
	width: 100%;
	border: none;
	padding: 1.5rem 1.5rem;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--title-background, transparent);
	position: relative;
	transition: all .3s ease;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	z-index: 2;
}

.faq-question:hover {
	background: transparent;
}

.faq-question.active {
	background: #E6E9F6;
}

.faq-icon {
	font-size: 1.2rem;
	font-weight: 400;
	transform-origin: center;
	transition: transform 0.3s ease;
	min-width: 20px;
	text-align: center;
}

.faq-question.active .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: white;
}

.faq-answer.open {
	max-height: 500px;
}

.faq-answer-content {
	padding: 1.5rem 1.5rem;
}

.faq-answer-content p {
	margin-bottom: 1.2rem;
}

.faq-answer-content p:last-child {
	margin-bottom: 0;
}

/* =====[GALLERY SECTION]===== */
.gallery-section {
	border-top: 1px solid #E5E5E5;
	padding-top: var(--wp--preset--spacing--40);
}

.gallery-container {
	max-width: var(--wp--style--global--wide-size, 1200px);
	margin: 0 auto;
	padding-left: var(--wp--style--root--padding-left);
	padding-right: var(--wp--style--root--padding-right);
}

.gallery-title {
	font-size: var(--wp--preset--font-size--heading-1);
	font-weight: 600;
	margin-bottom: var(--wp--preset--spacing--30);
	color: var(--wp--preset--color--black);
}

.gallery-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
}

.gallery-arrows {
	display: flex;
	gap: 1rem;
}

.gallery-prev,
.gallery-next {
	background: none;
	border: none;
	color: #0e1531;
	width: auto;
	height: auto;
	cursor: pointer;
	font-size: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
	color: #1f2a56;
}

/* Use Splide arrows but restyle and move them to the top-right near the heading */
.gallery-section .splide {
	position: relative;
}

.gallery-section .splide__arrows {
	position: absolute;
	top: -56px;
	right: 24px;
	display: flex;
	gap: 12px;
	z-index: 10;
}

.gallery-section .splide__arrow {
	background: transparent;
	display: inline-flex;
	align-content: center;
	justify-content: center;
	border: none;
	width: 24px;
	height: 24px;
	padding: 0;
	color: var(--wp--preset--color--primary);
	opacity: 1;
	cursor: pointer;
}

.gallery-section .splide__arrow svg {
	display: none;
}

.gallery-section .splide__arrow--prev::after {
	content: '←';
	font-size: 20px;
}

.gallery-section .splide__arrow--next::after {
	content: '→';
	font-size: 20px;
}

/* Image loading optimization */
.gallery-image,
.pub-main-image,
.overview-image img {
	transition: opacity 0.3s ease;
}

.gallery-image:not([src]),
.pub-main-image:not([src]),
.overview-image img:not([src]) {
	opacity: 0;
}

/* Accessibility improvements */
.gallery-carousel .swiper-button-prev,
.gallery-carousel .swiper-button-next {
	font-size: 0;
	/* Hide text, show only icons */
}

.gallery-carousel .swiper-button-prev::after,
.gallery-carousel .swiper-button-next::after {
	font-size: 1.5rem;
	font-weight: 700;
}

/* Focus states for accessibility */
.facility-badge:focus,
.external-link:focus {
	outline: 2px solid #007cba;
	outline-offset: 2px;
	border-radius: 4px;
}

.lease-gallery-section h2 {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
}

.gallery-carousel {
	overflow: visible;
}

.gallery-carousel .splide__slide {
	margin-right: 1rem;
}

.gallery-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 8px;
}

/* Dark Text Section */
.dark-text-section {
	background: #1a1a1a;
	color: white;
	padding: 4rem 0;
	margin: 4rem 0;
	position: relative;
	overflow: hidden;
}

.dark-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.dark-text {
	position: relative;
	z-index: 2;
}

.dark-text::before {
	content: '';
	position: absolute;
	left: -2rem;
	top: 0;
	bottom: 0;
	width: 4px;
	background: #dc3545;
}

.dark-text h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: white;
	line-height: 1.2;
}

.dark-text h3 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
	color: white;
	line-height: 1.2;
}

.dark-text p {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	color: #ccc;
}

.dark-image img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 8px;
}

/* Financial Information Layout */
.lease-financial-section {
	padding: 4rem 0;
	background: white;
}

.lease-financial-section h2 {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
}

.financial-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	max-width: 1000px;
	margin: 0 auto;
}

.financial-column,
.business-column {
	background: #f8f9fa;
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.financial-column h3,
.business-column h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
	color: #333;
	border-bottom: 3px solid #007cba;
	padding-bottom: 0.5rem;
}

.business-column h3 {
	border-bottom-color: #28a745;
}

.financial-item,
.business-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
	border-bottom: 1px solid #e9ecef;
}

.financial-item:last-child,
.business-item:last-child {
	border-bottom: none;
}

.item-label {
	font-weight: 600;
	color: #555;
	flex: 1;
}

.item-value {
	font-weight: 700;
	color: #333;
	text-align: right;
	flex: 0 0 auto;
	min-width: 120px;
}

.no-data {
	color: #666;
	font-style: italic;
	text-align: center;
	padding: 2rem;
}

/* Contact Section */
.pub-contact-section {
	margin: 3rem 0;
	padding: 2rem;
	background: #f8f9fa;
	border-radius: 12px;
}

.pub-contact-section h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
	color: #333;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.contact-item h4 {
	font-weight: 600;
	color: #666;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.contact-item p {
	margin: 0;
	font-weight: 600;
	color: #333;
}

.contact-item a {
	color: #007cba;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item a:hover {
	color: #005a87;
	text-decoration: underline;
}

/* Facilities Section */
.pub-facilities-section {
	margin: 3rem 0;
}

.pub-facilities-section h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #333;
}

.facilities-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}


/* Lease Enquiry Section */
.lease-enquiry-section {
	background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
	color: white;
}

.lease-enquiry-section h2 {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 2.5rem;
	font-weight: 700;
	color: white;
}

.enquiry-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.enquiry-info {
	padding-right: 2rem;
}

.enquiry-info p {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.enquiry-benefits {
	list-style: none;
	padding: 0;
	margin: 0;
}

.enquiry-benefits li {
	padding: 0.75rem 0;
	padding-left: 2rem;
	position: relative;
	font-weight: 500;
}

.enquiry-benefits li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #ffc107;
	font-weight: 700;
	font-size: 1.2rem;
}

/* Enquiry Form */
.enquiry-form {
	background: white;
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	font-weight: 600;
	color: #333;
	margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid #ddd;
	border-radius: 6px;
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #007cba;
	box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.form-group button {
	width: 100%;
	font-size: 1.1rem;
	padding: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.pub-main-content {
		padding: 0 1rem;
	}

	.pub-hero-address {
		flex-direction: column;
		gap: 0.5rem;
	}

	.pub-details-section,
	.overview-content,
	.financial-layout,
	.dark-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.pub-info-column {
		padding-left: 0;
	}

	.pub-title {
		font-size: 1.5rem;
	}

	.overview-text h2 {
		font-size: 2rem;
	}

	.dark-text h2,
	.dark-text h3 {
		font-size: 2rem;
	}

	.financial-column,
	.business-column {
		padding: 1.5rem;
	}

	.item-value {
		min-width: auto;
		margin-left: 1rem;
	}

	.submit-enquiry-btn {
		width: 100%;
	}

	.gallery-header {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	.dark-text::before {
		left: -1rem;
	}

	.dark-content {
		padding: 0 1rem;
	}

	.facilities-grid {
		gap: 0.75rem;
		padding: 0.25rem 0;
	}
}

@media (max-width: 480px) {
	.pub-hero-container {
		height: 60vh;
		min-height: 400px;
	}

	.pub-hero-badges {
		flex-direction: column;
		align-items: center;
		gap: 0.5rem;
	}

	.financial-item,
	.business-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
		text-align: left;
	}

	.item-value {
		margin-left: 0;
		font-size: 1.1rem;
	}
}


/* =====[STREET CHECK]===== */
.street-check-link {
	color: var(--wp--preset--color--primary);
	text-decoration: underline;
	font-weight: 600;
	transition: color 0.2s ease;
}

.street-check-link:hover {
	color: #007cba;
	text-decoration: underline;
}

.street-check-item {
	padding: 0.75rem 1.25rem;
}

/* Apply Pub Section Styles */
.section-apply-pub {
   background-color: var(--wp--preset--color--secondary);
   padding-left: var(--wp--style--root--padding-left);
   padding-right: var(--wp--style--root--padding-right);
   padding-top: var(--wp--preset--spacing--50);
   padding-bottom: var(--wp--preset--spacing--50);
   position: relative;
}
.container-apply-pub {
   width: 100%;
   max-width: var(--wp--style--global--wide-size);
   margin-left: auto;
   margin-right: auto;
}
.hero-apply-pub {
   text-align: center;
   width: 100%;
   max-width: 580px;
   margin: 0 auto var(--wp--preset--spacing--20) auto;
}
.hero-apply-pub h2 {
   font-family: var(--wp--preset--font-family--heading-font);
   font-size: var(--wp--preset--font-size--heading-1);
   font-weight: 400;
   color: var(--wp--preset--spacing--20);
   margin-bottom: var(--wp--preset--spacing--20);
}
.form-apply-pub {
   width: 100%;
   max-width: 840px;
   margin-left: auto;
   margin-right: auto;
}
.form-apply-pub div.wpforms-container-full .wpforms-form button.wpforms-submit {
   font-family: var(--wp--preset--font-family--body-font);
   font-size: var(--wp--preset--font-size--button);
   font-weight: var(--wp--custom--font-weight--bold);
   color: var(--wp--preset--color--white)!important;
   background-color: var(--wp--preset--color--primary)!important;
   border-radius: 0px;
   border-width: 0;
   letter-spacing: 3.2px;
   line-height: 1.4;
   padding: 10px 25px;
   text-decoration: none;
   text-transform: uppercase;
   height: auto;
}
.form-apply-pub div.wpforms-container-full .wpforms-form button.wpforms-submit:after {
   display: none;
}

