/**
 * BGT Campus page – section-specific styles.
 * Enqueued only when template templates/page-campus-bgt.php is used.
 *
 * @package Caterpillar_Care
 */

/* ==========================================================================
   Section: BGT Hero
   ========================================================================== */

.bgt-hero {
	display: flex;
	align-items: center;
	position: relative;
}

.bgt-hero__bg {
	position: absolute;
	inset: 0;
	background-color: var(--cc-primary);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.bgt-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(63, 125, 10, 0.85) 0%, rgba(44, 87, 8, 0.75) 40%, rgba(124, 179, 66, 0.6) 100%);
	pointer-events: none;
}

.bgt-hero__shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.2;
	pointer-events: none;
}

.bgt-hero__shape--1 {
	width: 90px;
	height: 90px;
	background: #fff;
	top: 18%;
	right: 12%;
	animation: bgt-hero-float 8s ease-in-out infinite;
}

.bgt-hero__shape--2 {
	width: 55px;
	height: 55px;
	background: var(--cc-yellow);
	bottom: 30%;
	left: 10%;
	animation: bgt-hero-float 6s ease-in-out infinite 1s;
}

.bgt-hero__shape--3 {
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.7);
	top: 55%;
	right: 20%;
	animation: bgt-hero-float 7s ease-in-out infinite 0.5s;
}

@keyframes bgt-hero-float {
	0%, 100% { transform: translate(0, 0); }
	33% { transform: translate(10px, -12px); }
	66% { transform: translate(-8px, 8px); }
}

.bgt-hero__container {
	z-index: 2;
}

.bgt-hero__title {
	font-family: var(--cc-font-heading);
	font-weight: 700;
	font-size: clamp(2rem, 5vw, 3rem);
	line-height: 1.2;
	color: #fff;
	margin-bottom: var(--cc-space-sm);
	letter-spacing: 0.02em;
}

.bgt-hero__subheadline {
	font-family: var(--cc-font-heading);
	font-weight: 600;
	font-size: clamp(1.15rem, 2.5vw, 1.5rem);
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: var(--cc-space);
	letter-spacing: 0.02em;
}

.bgt-hero__body {
	font-family: var(--cc-font-body);
	font-size: 1.125rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: var(--cc-space-lg);
	max-width: 32rem;
	margin-left: auto;
	margin-right: auto;
}

.bgt-hero__btn {
	font-family: var(--cc-font-heading);
	font-weight: 700;
	font-size: 1.0625rem;
	padding: 0.875rem 1.75rem;
	border-radius: var(--cc-radius-full);
	background: #fff;
	color: var(--cc-primary);
	border: none;
	transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.bgt-hero__btn:hover {
	background: var(--cc-light);
	color: var(--cc-primary-dark);
}

.bgt-hero__btn.bgt-hero__btn--bounce {
	animation: bgt-hero-btn-bounce 0.6s ease;
}

@keyframes bgt-hero-btn-bounce {
	0%, 100% { transform: scale(1); }
	30% { transform: scale(1.08); }
	50% { transform: scale(0.96); }
	70% { transform: scale(1.03); }
}

.bgt-hero__wave {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 80V50c80-15 160 15 240 15s160-30 240-30 160 15 240 15 160-30 240-30 160 15 240 15 160-30 240-30v50H0z'/%3E%3C/svg%3E") no-repeat bottom center;
	background-size: 100% 100px;
	pointer-events: none;
	z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
	.bgt-hero__shape {
		animation: none;
	}
	.bgt-hero__btn.bgt-hero__btn--bounce {
		animation: none;
	}
}

/* ==========================================================================
   Section: BGT About Campus
   ========================================================================== */

.bgt-about-campus {
	background: linear-gradient(180deg, #fefdfb 0%, #f5f9f2 50%, rgba(232, 245, 233, 0.4) 100%);
}

.bgt-about-campus__gallery {
	display: flex;
	flex-direction: column;
	gap: var(--cc-space);
}

.bgt-about-campus__gallery-item {
	width: 100%;
}

.bgt-about-campus__image-wrap {
	border-radius: var(--cc-radius-2xl);
	overflow: hidden;
	box-shadow: var(--cc-shadow-soft);
}

.bgt-about-campus__image-wrap img.bgt-about-campus__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	aspect-ratio: 4 / 3;
}

.bgt-about-campus__placeholder {
	aspect-ratio: 4 / 3;
	background: linear-gradient(145deg, var(--cc-leaf) 0%, var(--cc-primary) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.bgt-about-campus__placeholder span {
	font-family: var(--cc-font-body);
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.85);
}

.bgt-about-campus__content {
	padding: 0;
}

.bgt-about-campus__heading {
	font-family: var(--cc-font-heading);
	font-weight: 700;
	font-size: clamp(1.5rem, 3.5vw, 2rem);
	color: var(--cc-primary);
	margin-bottom: var(--cc-space);
	letter-spacing: 0.02em;
}

.bgt-about-campus__text {
	font-family: var(--cc-font-body);
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--cc-text);
	margin-bottom: var(--cc-space);
}

.bgt-about-campus__text:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   Section: BGT Programs
   ========================================================================== */

.bgt-programs {
	background: #fff;
}

.bgt-programs__heading {
	font-family: var(--cc-font-heading);
	font-weight: 700;
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	color: var(--cc-primary);
	margin-bottom: 0;
	letter-spacing: 0.02em;
}

.bgt-programs__card {
	height: 100%;
	border-radius: var(--cc-radius-xl);
	padding: var(--cc-space-lg);
	border: 3px solid transparent;
	box-shadow: var(--cc-shadow-soft);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bgt-programs__card:hover {
	transform: translateY(-6px);
	box-shadow: var(--cc-shadow-soft-lg);
}

.bgt-programs__card--1 {
	border-color: rgba(63, 125, 10, 0.4);
	background: rgba(232, 245, 233, 0.4);
}

.bgt-programs__card--2 {
	border-color: rgba(230, 126, 34, 0.4);
	background: rgba(255, 243, 224, 0.5);
}

.bgt-programs__card--3 {
	border-color: rgba(41, 98, 255, 0.35);
	background: rgba(227, 242, 253, 0.4);
}

.bgt-programs__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: var(--cc-radius-lg);
	font-size: 1.25rem;
	margin-bottom: var(--cc-space);
}

.bgt-programs__card--1 .bgt-programs__icon {
	background: rgba(63, 125, 10, 0.2);
	color: var(--cc-primary);
}

.bgt-programs__card--2 .bgt-programs__icon {
	background: rgba(230, 126, 34, 0.25);
	color: #e65100;
}

.bgt-programs__card--3 .bgt-programs__icon {
	background: rgba(41, 98, 255, 0.2);
	color: #1565c0;
}

.bgt-programs__title {
	font-family: var(--cc-font-heading);
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--cc-dark);
	margin-bottom: var(--cc-space-sm);
}

.bgt-programs__text {
	font-family: var(--cc-font-body);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--cc-text);
	margin-bottom: var(--cc-space);
}

.bgt-programs__link {
	font-family: var(--cc-font-heading);
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--cc-primary);
	text-decoration: none;
}

.bgt-programs__link:hover {
	text-decoration: underline;
	color: var(--cc-primary-dark);
}

.bgt-programs__cta {
	font-family: var(--cc-font-heading);
	font-weight: 700;
	padding: 0.75rem 1.5rem;
	border-radius: var(--cc-radius-full);
	background: var(--cc-primary);
	color: #fff;
	border: none;
	transition: background 0.25s ease;
}

.bgt-programs__cta:hover {
	background: var(--cc-primary-dark);
	color: #fff;
}

@media (prefers-reduced-motion: reduce) {
	.bgt-programs__card:hover {
		transform: none;
	}
}

/* ==========================================================================
   Section: BGT Reviews (slider – same as front page)
   ========================================================================== */

.bgt-reviews {
	background: linear-gradient(165deg, rgba(255, 248, 240, 0.9) 0%, rgba(255, 217, 61, 0.08) 30%, rgba(248, 251, 240, 0.95) 70%, rgba(232, 245, 233, 0.4) 100%);
	position: relative;
	overflow: hidden;
}

.bgt-reviews__heading {
	font-family: var(--cc-font-heading);
	font-weight: 700;
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
	line-height: 1.25;
	color: var(--cc-primary);
	text-align: center;
	margin-bottom: var(--cc-space-sm);
	letter-spacing: 0.02em;
}

.bgt-reviews__intro {
	font-family: var(--cc-font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--cc-text);
	text-align: center;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--cc-space-sm);
}

.bgt-reviews__intro:last-of-type {
	margin-bottom: var(--cc-space-xl);
}

.bgt-reviews__slider-wrap {
	position: relative;
	padding: 0 52px 48px;
	margin-bottom: var(--cc-space-lg);
}

.bgt-reviews .parents-love-us-slick {
	overflow: hidden;
}

.bgt-reviews .parents-love-us-slick .slick-list {
	min-height: 280px;
}

.bgt-reviews .parents-love-us-slick .slick-track {
	display: flex;
	align-items: stretch;
}

.bgt-reviews .parents-love-us-slick .slick-slide {
	height: auto;
	padding: 0 8px;
	display: flex;
}

.bgt-reviews .parents-love-us-slick .slick-slide > div {
	height: 100%;
	width: 100%;
	display: flex;
}

.bgt-reviews .review-card {
	background: #fff;
	border-radius: var(--cc-radius-2xl);
	padding: var(--cc-space-lg) var(--cc-space-xl);
	height: 100%;
	min-height: 280px;
	display: flex;
	flex-direction: column;
	border: 2px solid rgba(255, 217, 61, 0.4);
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bgt-reviews .parents-love-us-slick .slick-slide.slick-active .review-card {
	box-shadow: var(--cc-shadow-soft-lg);
	border-color: var(--cc-yellow);
}

.bgt-reviews .review-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--cc-shadow-soft-lg);
}

.bgt-reviews .review-card-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: var(--cc-space-sm);
	margin-bottom: var(--cc-space-sm);
}

.bgt-reviews .review-card-quote {
	flex-shrink: 0;
	font-size: 2rem;
	color: var(--cc-yellow);
	opacity: 0.5;
	line-height: 1;
}

.bgt-reviews .review-card-stars {
	color: var(--cc-yellow);
	font-size: 1.125rem;
	letter-spacing: 0.2em;
	margin-bottom: 0;
	line-height: 1;
	flex-shrink: 0;
}

.bgt-reviews .review-card-desc {
	font-family: var(--cc-font-body);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--cc-text);
	margin-bottom: var(--cc-space);
	flex-grow: 1;
	font-style: italic;
	padding-right: 0;
}

.bgt-reviews .review-card-footer {
	margin-top: auto;
	padding-top: var(--cc-space-sm);
	border-top: 1px solid rgba(63, 125, 10, 0.12);
}

.bgt-reviews .review-card-name {
	font-family: var(--cc-font-heading);
	font-weight: 700;
	font-size: 1rem;
	color: var(--cc-primary);
	font-style: normal;
	display: block;
}

.bgt-reviews .review-card-role {
	font-family: var(--cc-font-body);
	font-size: 0.8125rem;
	color: var(--cc-text-muted);
	display: block;
	margin-top: 0.15rem;
}

.bgt-reviews .parents-love-us-nav {
	position: absolute;
	top: 38%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	background: #fff;
	color: var(--cc-primary);
	box-shadow: var(--cc-shadow-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	cursor: pointer;
	z-index: 10;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.bgt-reviews .parents-love-us-nav:hover {
	background: var(--cc-primary);
	color: #fff;
	transform: translateY(-50%) scale(1.08);
}

.bgt-reviews .parents-love-us-nav--prev {
	left: 0;
}

.bgt-reviews .parents-love-us-nav--next {
	right: 0;
}

.bgt-reviews .parents-love-us-pagination {
	position: relative;
	margin-top: var(--cc-space-lg);
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.bgt-reviews .parents-love-us-pagination .slick-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bgt-reviews .parents-love-us-pagination .slick-dots li button {
	width: 12px;
	height: 12px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: var(--cc-yellow);
	opacity: 0.4;
	text-indent: -9999px;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.bgt-reviews .parents-love-us-pagination .slick-dots li.slick-active button {
	opacity: 1;
	transform: scale(1.25);
}

.bgt-reviews__cta {
	text-align: center;
}

.bgt-reviews__btn {
	font-family: var(--cc-font-heading);
	font-weight: 700;
	font-size: 1.0625rem;
	padding: 0.75rem 1.5rem;
	border-radius: var(--cc-radius-full);
	background: var(--cc-primary);
	color: #fff;
	border: none;
	transition: background 0.25s ease;
}

.bgt-reviews__btn:hover {
	background: var(--cc-primary-dark);
	color: #fff;
}

@media (max-width: 767.98px) {
	.bgt-reviews__slider-wrap {
		padding: 0 44px 40px;
	}
	.bgt-reviews .parents-love-us-nav {
		width: 40px;
		height: 40px;
		font-size: 0.875rem;
	}
}

/* ==========================================================================
   Section: BGT Gallery (grid + lightbox)
   ========================================================================== */

.bgt-gallery {
	background: #fff;
}

.bgt-gallery__heading {
	font-family: var(--cc-font-heading);
	font-weight: 700;
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	color: var(--cc-primary);
	margin-bottom: 0;
	letter-spacing: 0.02em;
}

.bgt-gallery__grid {
	margin-bottom: var(--cc-space-lg);
}

.bgt-gallery__item {
	display: block;
	text-decoration: none;
	color: inherit;
	border-radius: var(--cc-radius-xl);
	overflow: hidden;
	box-shadow: var(--cc-shadow-soft);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bgt-gallery__item:hover {
	transform: scale(1.03);
	box-shadow: var(--cc-shadow-soft-lg);
}

.bgt-gallery__image-wrap {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.bgt-gallery__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.bgt-gallery__item:hover .bgt-gallery__image-wrap img {
	transform: scale(1.08);
}

.bgt-gallery__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(145deg, var(--cc-leaf) 0%, var(--cc-primary) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.bgt-gallery__placeholder span {
	font-family: var(--cc-font-body);
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.85);
}

.bgt-gallery__caption {
	font-family: var(--cc-font-body);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--cc-text-muted);
	text-align: center;
	max-width: 36rem;
	margin: var(--cc-space-xl) auto 0;
}

/* Instagram reel slider inside Gallery */
.bgt-gallery-reels {
	margin-top: var(--cc-space-xl);
	padding-top: var(--cc-space-xl);
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.bgt-gallery-reels__heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	font-family: var(--cc-font-heading);
	font-weight: 700;
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	color: var(--cc-primary);
	text-align: center;
	margin-bottom: var(--cc-space-lg);
}

.bgt-gallery-reels__heading i {
	color: var(--cc-orange);
	font-size: 1.25em;
}

.bgt-gallery-reels__slider-wrap {
	position: relative;
	padding: 0 2.75rem;
}

.bgt-gallery-reels-slick .slick-list {
	overflow: hidden;
	padding: 0.5rem 0 1rem;
}

.bgt-gallery-reels-slick .slick-track {
	display: flex;
	align-items: stretch;
}

.bgt-gallery-reels-slick .slick-slide {
	height: auto;
}

.bgt-gallery-reels-slick .slick-slide > div {
	height: 100%;
}

.bgt-gallery-reels__slide {
	height: 100%;
	display: flex;
	justify-content: center;
	padding: 0 0.5rem;
}

.bgt-gallery-reels__embed {
	width: 100%;
	max-width: 326px;
	margin: 0 auto;
	border-radius: var(--cc-radius-xl);
	overflow: hidden;
	box-shadow: var(--cc-shadow-soft);
	background: #fff;
}

.bgt-gallery-reels__embed iframe {
	width: 100%;
	min-height: 580px;
	border: 0;
	display: block;
	background: #fff;
}

.bgt-gallery-reels-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.75rem;
	height: 2.75rem;
	border: none;
	border-radius: 50%;
	background: var(--cc-primary);
	color: #fff;
	font-size: 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, transform 0.2s ease;
	z-index: 2;
}

.bgt-gallery-reels-nav:hover {
	background: var(--cc-orange);
	transform: translateY(-50%) scale(1.05);
}

.bgt-gallery-reels-nav--prev {
	left: 0;
}

.bgt-gallery-reels-nav--next {
	right: 0;
}

.bgt-gallery-reels-pagination {
	margin-top: var(--cc-space);
	text-align: center;
}

.bgt-gallery-reels-pagination .slick-dots {
	display: inline-flex;
	gap: 0.5rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.bgt-gallery-reels-pagination .slick-dots li button {
	width: 0.625rem;
	height: 0.625rem;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.2);
	font-size: 0;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.bgt-gallery-reels-pagination .slick-dots li.slick-active button {
	background: var(--cc-primary);
	transform: scale(1.2);
}

@media (max-width: 767px) {
	.bgt-gallery-reels__slider-wrap {
		padding: 0 2.25rem;
	}

	.bgt-gallery-reels-nav {
		width: 2.25rem;
		height: 2.25rem;
		font-size: 0.875rem;
	}

	.bgt-gallery-reels__embed iframe {
		min-height: 520px;
	}
}

.bgt-gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--cc-space-lg);
}

.bgt-gallery-lightbox[hidden] {
	display: none;
}

.bgt-gallery-lightbox__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	cursor: pointer;
}

.bgt-gallery-lightbox__inner {
	position: relative;
	z-index: 1;
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.bgt-gallery-lightbox__close {
	position: absolute;
	top: -48px;
	right: 0;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background: #fff;
	color: var(--cc-dark);
	font-size: 1.25rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, color 0.2s ease;
}

.bgt-gallery-lightbox__close:hover {
	background: var(--cc-primary);
	color: #fff;
}

.bgt-gallery-lightbox__content {
	background: #fff;
	border-radius: var(--cc-radius-lg);
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	max-width: 100%;
}

.bgt-gallery-lightbox__img {
	display: block;
	max-width: 85vw;
	max-height: 70vh;
	width: auto;
	height: auto;
	object-fit: contain;
}

.bgt-gallery-lightbox__img[src=""] {
	display: none;
}

.bgt-gallery-lightbox__caption {
	font-family: var(--cc-font-body);
	font-size: 0.9375rem;
	color: var(--cc-text);
	text-align: center;
	padding: var(--cc-space);
	margin: 0;
}

.bgt-gallery-lightbox__caption:empty {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	.bgt-gallery__item:hover {
		transform: none;
	}
	.bgt-gallery__item:hover .bgt-gallery__image-wrap img {
		transform: none;
	}
}

/* ==========================================================================
   Section: BGT Location & Contact
   ========================================================================== */

.bgt-location-contact {
	background: linear-gradient(180deg, #f5f9f2 0%, rgba(232, 245, 233, 0.3) 100%);
}

.bgt-location-contact__map-wrap {
	border-radius: var(--cc-radius-2xl);
	overflow: hidden;
	box-shadow: var(--cc-shadow-soft);
	height: 100%;
	min-height: 280px;
}

.bgt-location-contact__map-placeholder {
	width: 100%;
	height: 100%;
	min-height: 280px;
	background: linear-gradient(145deg, #e8e8e8 0%, #d0d0d0 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.bgt-location-contact__map-placeholder span {
	font-family: var(--cc-font-body);
	font-size: 1rem;
	color: var(--cc-text-muted);
}

.bgt-location-contact__map-wrap iframe {
	width: 100%;
	height: 100%;
	min-height: 280px;
	display: block;
	border: none;
}

.bgt-location-contact__card {
	background: #fff;
	border-radius: var(--cc-radius-2xl);
	padding: var(--cc-space-lg);
	box-shadow: var(--cc-shadow-soft);
	height: 100%;
	display: flex;
	flex-direction: column;
}

@media (min-width: 992px) {
	.bgt-location-contact__card {
		padding: var(--cc-space-xl);
	}
}

.bgt-location-contact__heading {
	font-family: var(--cc-font-heading);
	font-weight: 700;
	font-size: clamp(1.375rem, 3vw, 1.75rem);
	color: var(--cc-primary);
	margin-bottom: var(--cc-space);
	letter-spacing: 0.02em;
}

.bgt-location-contact__address {
	margin-bottom: var(--cc-space);
}

.bgt-location-contact__address-line {
	font-family: var(--cc-font-body);
	font-size: 1rem;
	line-height: 1.5;
	color: var(--cc-text);
	margin: 0 0 0.25rem 0;
}

.bgt-location-contact__address-line:last-child {
	margin-bottom: 0;
}

.bgt-location-contact__contact {
	margin-bottom: var(--cc-space-lg);
}

.bgt-location-contact__contact-item {
	font-family: var(--cc-font-body);
	font-size: 1rem;
	margin-bottom: var(--cc-space-sm);
}

.bgt-location-contact__contact-item:last-child {
	margin-bottom: 0;
}

.bgt-location-contact__label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--cc-dark);
	margin-bottom: 0.2rem;
}

.bgt-location-contact__link {
	color: var(--cc-primary);
	font-weight: 600;
	text-decoration: none;
}

.bgt-location-contact__link:hover {
	text-decoration: underline;
}

.bgt-location-contact__note,
.bgt-location-contact__hours {
	display: block;
	font-size: 0.875rem;
	color: var(--cc-text-muted);
	margin-top: 0.15rem;
}

.bgt-location-contact__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--cc-space-sm);
	margin-top: auto;
}

.bgt-location-contact__btn {
	font-family: var(--cc-font-heading);
	font-weight: 700;
	padding: 0.6rem 1.25rem;
	border-radius: var(--cc-radius-full);
	font-size: 0.9375rem;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.bgt-location-contact__btn--primary {
	background: var(--cc-primary);
	color: #fff;
	border: none;
}

.bgt-location-contact__btn--primary:hover {
	background: var(--cc-primary-dark);
	color: #fff;
}

.bgt-location-contact__btn--outline {
	background: transparent;
	color: var(--cc-primary);
	border: 2px solid var(--cc-primary);
}

.bgt-location-contact__btn--outline:hover {
	background: var(--cc-primary);
	color: #fff;
}
