/* ================================================================
   PRO.CSS — Bootstrap 5 Variable Overrides + Minimal Custom Styles
   Capitol Buildings | Professional Theme
   ================================================================ */

/* ----------------------------------------------------------------
   1. BOOTSTRAP 5 BRAND COLOR OVERRIDES
   ---------------------------------------------------------------- */
:root {
	--bs-primary:             #1D5999;
	--bs-primary-rgb:         29, 89, 153;
	--bs-secondary-color:     #31A2E1;
	--bs-link-color:          #1D5999;
	--bs-link-hover-color:    #31A2E1;
	--bs-dark-navy:           #0f1f3d;
	--bs-dark-navy-2:         #1a1a2e;
	--bs-accent:              #31A2E1;

	/* Button overrides */
	--bs-btn-font-size:       0.8125rem;
}

/* Primary button */
.btn-primary {
	--bs-btn-bg:              #1D5999;
	--bs-btn-border-color:    #1D5999;
	--bs-btn-hover-bg:        #31A2E1;
	--bs-btn-hover-border-color: #31A2E1;
	--bs-btn-active-bg:       #174880;
	--bs-btn-active-border-color: #174880;
	--bs-btn-focus-shadow-rgb: 29, 89, 153;
	letter-spacing: 0.5px;
}

/* Outline-primary button */
.btn-outline-primary {
	--bs-btn-color:           #1D5999;
	--bs-btn-border-color:    #1D5999;
	--bs-btn-hover-bg:        #1D5999;
	--bs-btn-hover-border-color: #1D5999;
	--bs-btn-active-bg:       #174880;
	letter-spacing: 0.5px;
}

/* text-primary, bg-primary, border-primary */
.text-primary   { color: #1D5999 !important; }
.bg-primary     { background-color: #1D5999 !important; }
.border-primary { border-color: #1D5999 !important; }
.text-accent    { color: #31A2E1 !important; }
.bg-accent      { background-color: #31A2E1 !important; }

/* ----------------------------------------------------------------
   2. TYPOGRAPHY & GLOBAL
   ---------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;700&display=swap');

body {
	font-family: 'Nunito Sans', sans-serif;
	color: #3a3a3a;
	font-size: 15px;
	line-height: 1.75;
	font-weight: 300;
}

p {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 15px;
	line-height: 1.75;
	color: #555;
	margin: 0;
}

h1,h2,h3,h4,h5,h6 {
	font-family: 'Nunito Sans', sans-serif;
	color: #111;
	margin: 0;
	line-height: 1.25;
}
h1 { font-size: 44px; }
h2 { font-size: 36px; }
h3 { font-size: 26px; }
h4 { font-size: 20px; }
h5 { font-size: 17px; }
h6 { font-size: 15px; }

/* Letter spacing utilities */
.ls-1 { letter-spacing: 0.5px; }
.ls-2 { letter-spacing: 1.5px; }
.ls-3 { letter-spacing: 2.5px; }
.letter-spacing { letter-spacing: 0.8px; }

/* Extra padding utilities */
.py-6  { padding-top: 4.5rem !important; padding-bottom: 4.5rem !important; }
.pt-6  { padding-top: 4.5rem !important; }
.pb-6  { padding-bottom: 4.5rem !important; }

/* Section label pill */
.section-pill {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: #1D5999;
	background: rgba(29,89,153,0.09);
	padding: 5px 14px;
	border-radius: 30px;
}
.section-pill-light {
	color: rgba(255,255,255,0.8);
	background: rgba(255,255,255,0.12);
}

/* Title divider underline */
.title-divider {
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #1D5999, #31A2E1);
	border-radius: 2px;
}
.title-divider-light {
	background: rgba(255,255,255,0.45);
}

/* ----------------------------------------------------------------
   3. TOPBAR
   ---------------------------------------------------------------- */
.topbar-strip {
	background: #0f1f3d;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-social-link {
	color: rgba(255,255,255,0.5);
	font-size: 14px;
	text-decoration: none;
	transition: color 0.2s;
}
.topbar-social-link:hover { color: #31A2E1; }

.topbar-download-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255,255,255,0.85) !important;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	text-decoration: none;
	border: 1px solid rgba(255,255,255,0.35);
	padding: 4px 12px;
	border-radius: 2px;
	transition: color 0.2s, border-color 0.2s, background 0.2s;
	white-space: nowrap;
}
.topbar-download-btn:hover {
	color: #fff !important;
	border-color: rgba(255,255,255,0.7);
	background: rgba(255,255,255,0.08);
}

/* ----------------------------------------------------------------
   4. NAVBAR
   ---------------------------------------------------------------- */
.site-navbar {
	border-bottom: 1px solid rgba(0,0,0,0.06);
	z-index: 1030;
}
.site-navbar .navbar-brand img {
	transition: opacity 0.2s;
}
.site-navbar .navbar-brand:hover img { opacity: 0.85; }

.site-navbar .nav-link {
	padding: 8px 12px;
	border-bottom: 2px solid transparent;
	transition: all 0.2s;
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
	color: #1D5999 !important;
	border-bottom-color: #1D5999;
}


/* ----------------------------------------------------------------
   5. HERO CAROUSEL
   ---------------------------------------------------------------- */
.hero-img {
	height: 620px;
	object-fit: cover;
	object-position: center;
	width: 100%;
}
.hero-slide { position: relative; overflow: hidden; }
.hero-overlay {
	display: none;
}
.hero-caption {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	z-index: 2;
}
.hero-panel {
	background: rgba(0, 0, 0, 0.52);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	border-radius: 16px;
	padding: 36px 40px;
	border: none;
	box-shadow: none;
	max-width: 560px;
}
.hero-tag {
	display: inline-flex;
	align-items: center;
	background: rgba(29,89,153,0.85);
	border: 1px solid rgba(49,162,225,0.5);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	padding: 6px 18px;
	border-radius: 4px;
	margin-bottom: 14px;
}
.hero-building-name {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 46px;
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 14px;
	display: block;
	text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.4);
}
.hero-address {
	color: rgba(255,255,255,0.85);
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.hero-address i { color: #31A2E1; }

.hero-badge-open {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(39,174,96,0.18);
	border: 1px solid rgba(39,174,96,0.45);
	color: #2ecc71;
	padding: 9px 20px;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 700;
}
.hero-badge-none {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.2);
	color: rgba(255,255,255,0.65);
	padding: 9px 20px;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 700;
}
.hero-carousel-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #1D5999;
	color: #fff;
	padding: 12px 28px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	text-decoration: none;
	transition: all 0.25s;
	border: 2px solid #1D5999;
}
.hero-carousel-btn:hover {
	background: #31A2E1;
	border-color: #31A2E1;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 22px rgba(0,0,0,0.35);
}

/* Carousel controls — z-index must exceed hero-caption (z-index:2) */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
	width: 54px;
	opacity: 0.7;
	transition: opacity 0.2s;
	z-index: 10;
}
#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover { opacity: 1; }
#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
	width: 38px;
	height: 38px;
	background-color: rgba(0,0,0,0.45);
	border-radius: 50%;
	background-size: 16px;
}
#heroCarousel .carousel-indicators { z-index: 10; }
#heroCarousel .carousel-indicators [data-bs-slide-to] {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,0.7);
	background: transparent;
	opacity: 1;
	transition: all 0.3s;
}
#heroCarousel .carousel-indicators .active {
	background: #31A2E1;
	border-color: #31A2E1;
	transform: scale(1.2);
}

/* ----------------------------------------------------------------
   6. STATS BAR
   ---------------------------------------------------------------- */
.stats-bar { background: #0f1f3d; }
.stat-tile {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 26px 28px;
	border-right: 1px solid rgba(255,255,255,0.07);
	transition: background 0.2s;
}
.stat-tile:last-child { border-right: none; }
.stat-tile:hover { background: rgba(255,255,255,0.04); }
.stat-tile-icon { font-size: 34px; color: #31A2E1; line-height: 1; }
.stat-tile h4 {
	color: #fff;
	font-size: 24px;
	font-weight: 800;
	margin: 0;
	line-height: 1;
}
.stat-tile p {
	color: rgba(255,255,255,0.5);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin: 4px 0 0;
}

/* ----------------------------------------------------------------
   7. SECTION: OUR PROPERTIES
   ---------------------------------------------------------------- */
.properties-section { background: #fff; }

/* Fix: Bootstrap carousel-inner has overflow:hidden which clips the row's
   negative margins from g-4, making gutter gaps show a gray background.
   Explicit white background + padding compensation fixes it. */
#propertiesCarousel,
#propertiesCarousel .carousel-inner,
#propertiesCarousel .carousel-item { background: #fff; }
/* Compensate for row g-4 negative margins (-0.75rem each side) so cards
   aren't clipped and no background bleeds through the gutters */
#propertiesCarousel .carousel-inner { padding: 4px 0.75rem; }

.prop-card {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(29,89,153,0.10);
	background: #fff;
	transition: transform 0.3s, box-shadow 0.3s;
}
.prop-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 40px rgba(29,89,153,0.18);
}
.prop-card-thumb {
	position: relative;
	overflow: hidden;
	height: 200px;
	background: #e8edf4;
}
.prop-card-thumb img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.4s;
	display: block;
	color: transparent; /* hide alt text on broken images */
}
.prop-card:hover .prop-card-thumb img { transform: scale(1.06); }
.prop-card-label {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	padding: 32px 14px 12px;
	background: linear-gradient(transparent, rgba(8,16,38,0.82));
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}
.prop-card-body { padding: 14px 16px 16px; }
.prop-card-address {
	font-size: 12px;
	color: #777;
	margin-bottom: 10px;
	line-height: 1.5;
	display: flex;
	align-items: flex-start;
	gap: 5px;
}
.prop-card-address i { color: #1D5999; margin-top: 1px; flex-shrink: 0; }
.prop-badge-open {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #27ae60;
}
.prop-badge-open i { font-size: 13px; }
.prop-badge-none {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #e74c3c;
}
.prop-badge-none i { font-size: 13px; }
.prop-nav-btn {
	width: 38px;
	height: 38px;
	background: #1D5999;
	color: #fff;
	border: none;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	cursor: pointer;
	transition: background 0.2s;
	line-height: 1;
}
.prop-nav-btn:hover { background: #31A2E1; }
.prop-counter {
	font-size: 13px;
	color: #888;
	min-width: 38px;
	text-align: center;
	font-weight: 600;
}

/* ----------------------------------------------------------------
   8. SECTION: ABOUT
   ---------------------------------------------------------------- */
.about-section { background: #fff; }

.feature-card {
	background: #f7f9fc;
	border-radius: 10px;
	padding: 20px 18px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	border: 1px solid #eef2f8;
	transition: all 0.25s;
}
.feature-card:hover {
	background: #fff;
	box-shadow: 0 8px 30px rgba(29,89,153,0.1);
	border-color: rgba(29,89,153,0.18);
	transform: translateY(-3px);
}
.feature-icon-wrap {
	width: 46px;
	height: 46px;
	background: linear-gradient(135deg, #1D5999, #31A2E1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.feature-icon-wrap i { color: #fff; font-size: 20px; }

.highlight-check { display: flex; align-items: center; gap: 10px; }
.highlight-check i { color: #1D5999; font-size: 18px; }
.highlight-check span { color: #444; font-size: 14px; }

/* ----------------------------------------------------------------
   9. SECTION: AVAILABLE SPACES
   ---------------------------------------------------------------- */
.spaces-section { background: #f4f7fb; }

.space-card {
	border: none !important;
	border-radius: 10px !important;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
}
.space-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 45px rgba(29,89,153,0.15) !important;
}
.space-card-thumb {
	position: relative;
	overflow: hidden;
	height: 190px;
}
.space-card-thumb img {
	width: 100%;
	height: 190px;
	object-fit: cover;
	transition: transform 0.4s;
}
.space-card:hover .space-card-thumb img { transform: scale(1.06); }
.space-card-overlay {
	position: absolute;
	inset: 0;
	background: rgba(29,89,153,0.75);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
}
.space-card:hover .space-card-overlay { opacity: 1; }

/* ----------------------------------------------------------------
   9. SECTION: WHY CHOOSE US
   ---------------------------------------------------------------- */
.why-section {
	position: relative;
	background: linear-gradient(135deg, #0f1f3d 0%, #1D5999 65%, #163d72 100%);
	overflow: hidden;
}
.why-section::before {
	content: '';
	position: absolute;
	top: -80px; right: -80px;
	width: 340px; height: 340px;
	border-radius: 50%;
	background: rgba(255,255,255,0.03);
	pointer-events: none;
}
.why-section::after {
	content: '';
	position: absolute;
	bottom: -90px; left: -60px;
	width: 280px; height: 280px;
	border-radius: 50%;
	background: rgba(255,255,255,0.025);
	pointer-events: none;
}
.why-card {
	border: 1px solid rgba(255,255,255,0.08) !important;
	border-radius: 10px !important;
	transition: all 0.3s;
	background: transparent;
}
.why-card:hover {
	background: rgba(255,255,255,0.07) !important;
	border-color: rgba(255,255,255,0.15) !important;
	transform: translateY(-4px);
}
.why-icon-circle {
	width: 64px;
	height: 64px;
	background: rgba(49,162,225,0.15);
	border: 1px solid rgba(49,162,225,0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	transition: background 0.3s;
}
.why-card:hover .why-icon-circle { background: rgba(49,162,225,0.25); }
.why-icon-circle i { color: #31A2E1; font-size: 26px; }

/* ----------------------------------------------------------------
   10. SECTION: TESTIMONIALS
   ---------------------------------------------------------------- */
.testimonial-card {
	border: 1px solid #eef2f8 !important;
	border-radius: 10px !important;
	transition: all 0.3s;
}
.testimonial-card:hover {
	box-shadow: 0 14px 40px rgba(29,89,153,0.1) !important;
	border-color: rgba(29,89,153,0.12) !important;
	transform: translateY(-4px);
}
.testimonial-avatar {
	width: 46px;
	height: 46px;
	background: linear-gradient(135deg, #1D5999, #31A2E1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.testimonial-avatar i { color: #fff; font-size: 22px; }

/* ----------------------------------------------------------------
   11. SECTION: CTA
   ---------------------------------------------------------------- */
.cta-section {
	background: linear-gradient(90deg, #f7f9fc 0%, #eef2f8 100%);
	border-top: 1px solid #e0e8f2;
}

/* ----------------------------------------------------------------
   12. FOOTER
   ---------------------------------------------------------------- */
.site-footer {
	background: #0b1829;
	color: rgba(255,255,255,0.6);
}

/* Top accent bar */
.footer-top-bar {
	height: 4px;
	background: linear-gradient(90deg, #1D5999 0%, #31A2E1 50%, #1D5999 100%);
}

/* Main body */
.footer-main {
	padding: 64px 0 48px;
}

/* --- Brand column --- */
.footer-brand {
	margin-bottom: 16px;
}
.footer-brand-name {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.3px;
	line-height: 1.2;
}
.footer-brand-tagline {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #31A2E1;
	margin-top: 4px;
	font-weight: 600;
}
.footer-brand-desc {
	font-size: 13.5px;
	color: rgba(255,255,255,0.5);
	line-height: 1.75;
	margin: 0 0 20px;
}
.footer-brand-desc p { color: rgba(255,255,255,0.5); font-size: 13.5px; line-height: 1.75; margin-bottom: 0; }

/* Contact stack */
.footer-contact-stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }
.footer-contact-row { display: flex; align-items: center; gap: 10px; }
.footer-contact-icon {
	width: 30px;
	height: 30px;
	border-radius: 6px;
	background: rgba(49,162,225,0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: #31A2E1;
	flex-shrink: 0;
}
.footer-contact-text {
	font-size: 13px;
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	transition: color 0.2s;
}
.footer-contact-text:hover { color: #31A2E1; }

/* Social */
.footer-social-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: rgba(255,255,255,0.4);
	font-weight: 600;
}
.footer-social-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 8px;
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	font-size: 13px;
	transition: all 0.25s;
}
.footer-social-btn:hover {
	background: #1D5999;
	border-color: #1D5999;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(29,89,153,0.4);
}

/* --- Column titles --- */
.footer-col-title {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	position: relative;
}
.footer-col-title::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 32px;
	height: 2px;
	background: #31A2E1;
	border-radius: 2px;
}

/* --- Quick links --- */
.footer-nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.footer-nav-list li a {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	color: rgba(255,255,255,0.55);
	text-decoration: none;
	padding: 6px 0;
	transition: color 0.2s, gap 0.2s;
	border-bottom: 1px solid transparent;
}
.footer-nav-list li a i {
	font-size: 9px;
	color: #31A2E1;
	transition: transform 0.2s;
}
.footer-nav-list li a:hover {
	color: #fff;
	gap: 12px;
}
.footer-nav-list li a:hover i { transform: translateX(2px); }

/* --- Photo grid --- */
.footer-photo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
}
.footer-photo-grid a {
	display: block;
	overflow: hidden;
	border-radius: 6px;
	position: relative;
}
.footer-photo-grid img {
	width: 100%;
	height: 64px;
	object-fit: cover;
	transition: transform 0.35s;
	display: block;
}
.footer-photo-overlay {
	position: absolute;
	inset: 0;
	background: rgba(29,89,153,0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	opacity: 0;
	transition: opacity 0.25s;
}
.footer-photo-grid a:hover img { transform: scale(1.1); }
.footer-photo-grid a:hover .footer-photo-overlay { opacity: 1; }

/* --- Testimonials --- */
.footer-testi-item {
	border-bottom: 1px solid rgba(255,255,255,0.07);
	padding-bottom: 16px;
	margin-bottom: 16px;
}
.footer-testi-item:last-of-type { border-bottom: none; margin-bottom: 0; }
.footer-testi-stars { color: #f59e0b; font-size: 11px; letter-spacing: 2px; margin-bottom: 7px; }
.footer-testi-text {
	font-size: 12.5px;
	color: rgba(255,255,255,0.5);
	font-style: italic;
	line-height: 1.65;
	margin-bottom: 10px;
}
.footer-testi-author {
	display: flex;
	align-items: center;
	gap: 8px;
}
.footer-testi-avatar {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(49,162,225,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	color: #31A2E1;
	flex-shrink: 0;
}
.footer-testi-author span { font-size: 12px; color: #31A2E1; font-weight: 600; }

/* Footer CTA button */
.footer-cta-btn {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(90deg, #1D5999 0%, #31A2E1 100%);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 10px 20px;
	border-radius: 6px;
	text-decoration: none;
	transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}
.footer-cta-btn:hover {
	color: #fff;
	opacity: 0.9;
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(29,89,153,0.4);
}

/* Empty state */
.footer-empty-note { font-size: 12.5px; color: rgba(255,255,255,0.3); font-style: italic; }

/* --- Bottom bar --- */
.footer-bottom {
	background: rgba(0,0,0,0.3);
	border-top: 1px solid rgba(255,255,255,0.07);
	padding: 18px 0;
}
.footer-copy {
	font-size: 12.5px;
	color: rgba(255,255,255,0.35);
	margin: 0;
}
.footer-copy strong { color: rgba(255,255,255,0.55); font-weight: 600; }
.footer-bottom-link {
	font-size: 12px;
	color: rgba(255,255,255,0.35);
	text-decoration: none;
	transition: color 0.2s;
}
.footer-bottom-link:hover { color: #31A2E1; }

/* Legacy aliases kept for any other views still using old classes */
.footer-nav-link { color: rgba(255,255,255,0.4); font-size: 12px; text-decoration: none; transition: color 0.2s; }
.footer-nav-link:hover { color: #31A2E1; }
.copyright-bar { background: rgba(0,0,0,0.25); border-top: 1px solid rgba(255,255,255,0.06); }
.copyright-bar p { color: rgba(255,255,255,0.4); font-size: 12px; margin: 0; }
.site-footer p { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.75; }

/* ----------------------------------------------------------------
   13. BACK TO TOP
   ---------------------------------------------------------------- */
.back-to-top {
	position: fixed;
	bottom: 28px;
	right: 28px;
	width: 42px;
	height: 42px;
	background: #1D5999;
	color: #fff;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 16px;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s;
	z-index: 9999;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: #31A2E1; color: #fff; transform: translateY(-3px); }

/* ----------------------------------------------------------------
   14. RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 991.98px) {
	.hero-img { height: 440px; }
	.hero-building-name { font-size: 30px; }
	.hero-panel { padding: 28px 28px; max-width: 100%; }
	.stat-tile { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
}
@media (max-width: 767.98px) {
	.hero-img { height: 320px; }
	.hero-building-name { font-size: 22px; }
	.hero-address { font-size: 13px; }
	.py-6 { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
}
@media (max-width: 575.98px) {
	.hero-img { height: 420px; }
	.hero-caption .d-flex { flex-direction: column; align-items: flex-start; }
	.hero-panel { padding: 20px; border-radius: 12px; }
	.hero-building-name { font-size: 20px; }
}

/* ----------------------------------------------------------------
   15. SECTION: MISSION & VISION
   ---------------------------------------------------------------- */
.mv-section { background: #f4f7fb; }
.mv-card {
	background: #fff;
	border-radius: 12px;
	padding: 36px 32px;
	border: 1px solid #eef2f8;
	text-align: center;
	transition: all 0.3s;
}
.mv-card:hover {
	box-shadow: 0 12px 40px rgba(29,89,153,0.12);
	border-color: rgba(29,89,153,0.15);
	transform: translateY(-4px);
}
.mv-icon-wrap {
	width: 72px;
	height: 72px;
	background: linear-gradient(135deg, #1D5999, #31A2E1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}
.mv-icon-wrap i { color: #fff; font-size: 30px; }
.mv-icon-accent { background: linear-gradient(135deg, #31A2E1, #1D5999); }

/* ----------------------------------------------------------------
   16. SECTION: HOW IT WORKS
   ---------------------------------------------------------------- */
.how-section { background: #fff; }
.how-card {
	background: #f7f9fc;
	border-radius: 12px;
	padding: 36px 28px;
	border: 1px solid #eef2f8;
	transition: all 0.3s;
}
.how-card:hover {
	box-shadow: 0 12px 40px rgba(29,89,153,0.1);
	transform: translateY(-4px);
}
.how-card-featured {
	background: #fff;
	border-color: rgba(29,89,153,0.2);
	box-shadow: 0 8px 32px rgba(29,89,153,0.12);
}
.how-step-num {
	font-size: 52px;
	font-weight: 800;
	color: rgba(29,89,153,0.07);
	line-height: 1;
	margin-bottom: 16px;
	letter-spacing: -2px;
}
.how-icon-wrap {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #1D5999, #31A2E1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
}
.how-icon-wrap i { color: #fff; font-size: 26px; }

/* ----------------------------------------------------------------
   17. TRUST BADGES
   ---------------------------------------------------------------- */
.trust-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(29,89,153,0.06);
	border: 1px solid rgba(29,89,153,0.15);
	color: #1D5999;
	padding: 7px 16px;
	border-radius: 30px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.3px;
}
.trust-badge i { font-size: 15px; }

/* ----------------------------------------------------------------
   18. STAR RATINGS
   ---------------------------------------------------------------- */
.star-rating {
	color: #f5a623;
	font-size: 16px;
	letter-spacing: 2px;
	line-height: 1;
}

/* ----------------------------------------------------------------
   19. FAQ ACCORDION
   ---------------------------------------------------------------- */
.faq-section { background: #f4f7fb; }
.faq-accordion { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
	background: #fff;
	border-radius: 8px;
	border: 1px solid #eef2f8;
	overflow: hidden;
}
.faq-btn {
	display: block;
	width: 100%;
	background: transparent;
	border: none;
	text-align: left;
	padding: 16px 20px;
	font-size: 14px;
	font-weight: 700;
	color: #1D5999;
	cursor: pointer;
	position: relative;
	transition: color 0.2s;
	font-family: inherit;
}
.faq-btn::after {
	content: '\2212';
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	font-weight: 300;
	color: #1D5999;
}
.faq-btn.collapsed { color: #333; }
.faq-btn.collapsed::after {
	content: '\002B';
	color: #888;
}
.faq-body {
	padding: 0 20px 16px;
	font-size: 14px;
	color: #666;
	line-height: 1.7;
}

/* ----------------------------------------------------------------
   20. LEAD CAPTURE SECTION
   ---------------------------------------------------------------- */
.lead-capture-section {
	background: linear-gradient(135deg, #0f1f3d 0%, #1D5999 65%, #163d72 100%);
	position: relative;
	overflow: hidden;
}
.lead-capture-section::before {
	content: '';
	position: absolute;
	top: -100px; right: -100px;
	width: 350px; height: 350px;
	border-radius: 50%;
	background: rgba(255,255,255,0.03);
	pointer-events: none;
}
.lead-form-card {
	background: #fff;
	border-radius: 14px;
	padding: 36px 32px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.lead-input {
	display: block;
	width: 100%;
	padding: 11px 16px;
	font-size: 14px;
	border: 1.5px solid #dde4ee;
	border-radius: 6px;
	color: #333;
	background: #f9fafc;
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none;
	font-family: inherit;
}
.lead-input:focus {
	border-color: #1D5999;
	box-shadow: 0 0 0 3px rgba(29,89,153,0.1);
	background: #fff;
}
.lead-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255,255,255,0.75);
	font-size: 14px;
}
.lead-trust-item i { color: #31A2E1; font-size: 18px; flex-shrink: 0; }

/* ----------------------------------------------------------------
   21. HERO SECONDARY BUTTON (Book a Tour — outline)
   ---------------------------------------------------------------- */
.hero-carousel-btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: #fff;
	padding: 12px 28px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	text-decoration: none;
	transition: all 0.25s;
	border: 2px solid rgba(255,255,255,0.7);
}
.hero-carousel-btn-outline:hover {
	background: rgba(255,255,255,0.12);
	border-color: #fff;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 22px rgba(0,0,0,0.25);
}

/* ----------------------------------------------------------------
   22. SECTION TITLE
   ---------------------------------------------------------------- */
.section-title {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 38px;
	font-weight: 800;
	color: #111;
	line-height: 1.2;
	letter-spacing: -0.3px;
}
.section-title .text-primary { color: #1D5999 !important; }
.section-title .text-accent  { color: #31A2E1 !important; }

/* White variant for dark sections */
.section-title.text-white { color: #fff !important; }

/* ----------------------------------------------------------------
   23. ABOUT: INLINE STATS + FEATURE ROWS
   ---------------------------------------------------------------- */
.about-mini-stats {
	display: flex;
	align-items: center;
	background: linear-gradient(90deg, #0f1f3d 0%, #1D5999 100%);
	border: none;
	border-radius: 10px;
	overflow: hidden;
}
.about-mini-stat {
	flex: 1;
	text-align: center;
	padding: 22px 16px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.about-stat-num {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 28px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
}
.about-stat-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.3;
}
.about-mini-stat-divider {
	width: 1px;
	height: 48px;
	background: rgba(255, 255, 255, 0.15);
	flex-shrink: 0;
}

.about-features-wrap { display: flex; flex-direction: column; }
.about-feature-row {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 20px 0;
	border-bottom: 1px solid #eef2f8;
}
.about-feature-row:last-child { border-bottom: none; }
.af-icon {
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, rgba(29,89,153,0.08), rgba(49,162,225,0.1));
	border: 1px solid rgba(29,89,153,0.12);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 22px;
	color: #1D5999;
	transition: all 0.25s;
}
.about-feature-row:hover .af-icon {
	background: linear-gradient(135deg, #1D5999, #31A2E1);
	border-color: transparent;
	color: #fff;
	transform: scale(1.05);
}

/* ----------------------------------------------------------------
   24. HOW IT WORKS — STEP CIRCLES
   ---------------------------------------------------------------- */
.how-steps-wrap { position: relative; }
.how-steps-wrap::before {
	content: '';
	position: absolute;
	top: 60px;
	left: 20%;
	right: 20%;
	height: 2px;
	background: linear-gradient(90deg, #1D5999, #31A2E1, #1D5999);
	opacity: 0.12;
	pointer-events: none;
}
.how-step { padding: 20px 0; }
.how-step-circle {
	width: 80px;
	height: 80px;
	background: #f4f7fb;
	border: 2px solid #dde4ee;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: #1D5999;
	position: relative;
	transition: all 0.3s;
}
.how-step:hover .how-step-circle {
	background: #1D5999;
	border-color: #1D5999;
	color: #fff;
	box-shadow: 0 8px 24px rgba(29,89,153,0.30);
	transform: scale(1.08);
}
.how-step-circle-accent {
	background: #1D5999 !important;
	border-color: #1D5999 !important;
	color: #fff !important;
	box-shadow: 0 8px 28px rgba(29,89,153,0.38);
}
.how-step-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 26px;
	height: 26px;
	background: #31A2E1;
	color: #fff;
	border-radius: 50%;
	font-size: 10px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #fff;
	line-height: 1;
}

/* ----------------------------------------------------------------
   25. AVAILABLE SPACES: CARD REDESIGN
   ---------------------------------------------------------------- */
.space-card-overlay-btn {
	position: absolute;
	bottom: -44px;
	left: 0;
	right: 0;
	background: #1D5999;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	padding: 13px 0;
	transition: bottom 0.3s;
	display: block;
}
.space-card:hover .space-card-overlay-btn { bottom: 0; }
.space-card-body {
	padding: 14px 16px 16px;
	background: #fff;
}
.space-card-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}
.space-meta-item {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 13px;
	color: #555;
	font-weight: 600;
}
.space-meta-item i  { color: #1D5999; font-size: 15px; }
.space-meta-item em { font-style: normal; color: #999; font-size: 11px; font-weight: 400; }

/* ----------------------------------------------------------------
   26. WHY CHOOSE US — BENEFIT ROWS
   ---------------------------------------------------------------- */
.benefit-rows { display: flex; flex-direction: column; gap: 10px; }
.benefit-row {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 18px 20px;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.07);
	transition: all 0.25s;
}
.benefit-row:hover {
	background: rgba(255,255,255,0.07);
	border-color: rgba(255,255,255,0.14);
}
.benefit-row-icon {
	width: 50px;
	height: 50px;
	background: rgba(49,162,225,0.14);
	border: 1px solid rgba(49,162,225,0.28);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: #31A2E1;
	flex-shrink: 0;
	transition: all 0.25s;
}
.benefit-row:hover .benefit-row-icon {
	background: #31A2E1;
	border-color: #31A2E1;
	color: #fff;
}

/* ----------------------------------------------------------------
   27. TESTIMONIALS
   ---------------------------------------------------------------- */
.testi-section { background: #f4f7fb; }
.testi-card {
	background: #fff;
	border-radius: 12px;
	padding: 28px 26px 22px;
	border: 1px solid #eef2f8;
	box-shadow: 0 2px 12px rgba(29,89,153,0.05);
	transition: all 0.3s;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.testi-card:hover {
	box-shadow: 0 14px 40px rgba(29,89,153,0.12);
	border-color: rgba(29,89,153,0.14);
	transform: translateY(-4px);
}
.testi-quote-mark {
	font-family: Georgia, serif;
	font-size: 52px;
	line-height: 1;
	color: #1D5999;
	opacity: 0.18;
	margin-bottom: 6px;
	display: block;
}
.testi-body {
	font-size: 14px;
	color: #555;
	line-height: 1.75;
	flex: 1;
	margin-bottom: 18px;
	font-style: italic;
}
.testi-footer {
	display: flex;
	align-items: center;
	gap: 12px;
	border-top: 1px solid #eef2f8;
	padding-top: 16px;
}
.testi-avatar {
	width: 42px;
	height: 42px;
	background: linear-gradient(135deg, #1D5999, #31A2E1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 20px;
	color: #fff;
}
.testi-name {
	font-size: 13px;
	font-weight: 700;
	color: #1a1a2e;
	line-height: 1.3;
}
.testi-role {
	font-size: 11px;
	color: #999;
	line-height: 1.4;
}
.testi-stars {
	color: #f5a623;
	font-size: 13px;
	letter-spacing: 2px;
	line-height: 1;
}

/* ----------------------------------------------------------------
   28. INQUIRY SECTION + CTA BAND
   ---------------------------------------------------------------- */
.inquiry-section { background: #f4f7fb; }
.inquiry-form-card {
	background: #fff;
	border-radius: 14px;
	padding: 36px 32px;
	box-shadow: 0 6px 30px rgba(29,89,153,0.08);
	border: 1px solid #eef2f8;
}
.inquiry-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #555;
	font-size: 14px;
}
.inquiry-trust-item i { color: #1D5999; font-size: 18px; flex-shrink: 0; }

.cta-band {
	background: linear-gradient(135deg, #0f1f3d 0%, #1D5999 55%, #2471c0 100%);
	padding: 72px 0;
	position: relative;
	overflow: hidden;
}
.cta-band::before {
	content: '';
	position: absolute;
	top: -80px; right: -80px;
	width: 340px; height: 340px;
	border-radius: 50%;
	background: rgba(255,255,255,0.05);
	pointer-events: none;
}
.cta-band::after {
	content: '';
	position: absolute;
	bottom: -60px; left: -60px;
	width: 220px; height: 220px;
	border-radius: 50%;
	background: rgba(255,255,255,0.04);
	pointer-events: none;
}
.cta-band-title {
	font-size: 34px;
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 12px;
	letter-spacing: -0.3px;
}
.cta-band-sub {
	font-size: 16px;
	color: rgba(255,255,255,0.75);
	line-height: 1.7;
	margin: 0;
	max-width: 520px;
}

/* ----------------------------------------------------------------
   29. RESPONSIVE — NEW SECTIONS
   ---------------------------------------------------------------- */
@media (max-width: 991.98px) {
	.section-title { font-size: 26px; }
	.how-steps-wrap::before { display: none; }
	.about-mini-stats { border-radius: 8px; }
}
@media (max-width: 767.98px) {
	.section-title { font-size: 22px; }
	.about-mini-stat { padding: 16px 10px; }
	.about-stat-num { font-size: 22px; }
	.inquiry-form-card { padding: 24px 20px; }
	.benefit-row { padding: 14px 14px; }
}
@media (max-width: 575.98px) {
	.about-mini-stats { flex-direction: column; }
	.about-mini-stat-divider { width: 60px; height: 1px; }
}

/* ================================================================
   CONTACT US PAGE
   ================================================================ */

/* --- Hero --- */
.contact-hero {
	background: linear-gradient(135deg, #0f1f3d 0%, #1D5999 100%);
	padding: 64px 0 56px;
}
.contact-hero-title {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	line-height: 1.25;
}
.contact-hero-sub {
	font-size: 15px;
	color: rgba(255,255,255,0.72);
	max-width: 580px;
	margin: 0 auto;
	line-height: 1.75;
}
.contact-hero-sub strong { color: #fff; }

/* Trust chips */
.contact-trust-chips {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}
.contact-trust-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.2);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.3px;
	padding: 7px 16px;
	border-radius: 30px;
}
.contact-trust-chip i { font-size: 14px; color: #31A2E1; }

/* --- Main Section --- */
.contact-main-section {
	background: #f4f7fb;
	padding: 56px 0 64px;
}

/* --- Info Card --- */
.contact-info-card {
	background: #fff;
	border-radius: 12px;
	padding: 28px 24px;
	box-shadow: 0 2px 16px rgba(29,89,153,0.08);
	border: 1px solid #eef2f8;
}
.contact-info-card-title {
	font-size: 17px;
	font-weight: 700;
	color: #111;
}
.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid #f0f4f9;
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon {
	width: 38px;
	height: 38px;
	background: rgba(29,89,153,0.09);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #1D5999;
	font-size: 17px;
}
.contact-info-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #aaa;
	margin-bottom: 3px;
}
.contact-info-value {
	font-size: 14px;
	color: #333;
	line-height: 1.5;
}
.contact-info-link {
	color: #1D5999;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s;
}
.contact-info-link:hover { color: #31A2E1; }

/* Social buttons */
.contact-social-btn {
	width: 36px;
	height: 36px;
	background: rgba(29,89,153,0.09);
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #1D5999;
	font-size: 16px;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}
.contact-social-btn:hover {
	background: #1D5999;
	color: #fff;
}

/* --- Why Card --- */
.contact-why-card {
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 2px 16px rgba(29,89,153,0.08);
	border: 1px solid #eef2f8;
}
.contact-why-title {
	font-size: 15px;
	font-weight: 700;
	color: #111;
	margin-bottom: 16px;
}
.contact-why-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 11px;
}
.contact-why-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: #555;
	line-height: 1.5;
}
.contact-why-list li i {
	color: #27ae60;
	font-size: 14px;
	margin-top: 2px;
	flex-shrink: 0;
}

/* --- Form Card --- */
.contact-form-card {
	background: #fff;
	border-radius: 12px;
	padding: 36px 36px 32px;
	box-shadow: 0 4px 28px rgba(29,89,153,0.10);
	border: 1px solid #eef2f8;
}
.contact-form-header { margin-bottom: 28px; }
.contact-form-title {
	font-size: 22px;
	font-weight: 700;
	color: #111;
}
.contact-form-subtitle {
	font-size: 14px;
	color: #777;
	margin-top: 6px;
}

/* Form inputs */
.contact-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #444;
	margin-bottom: 6px;
}
.contact-input {
	display: block;
	width: 100%;
	padding: 10px 14px;
	font-size: 14px;
	font-family: 'Nunito Sans', sans-serif;
	color: #333;
	background: #f8fafd;
	border: 1.5px solid #dde5f0;
	border-radius: 6px;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
	line-height: 1.5;
}
.contact-input:focus {
	border-color: #1D5999;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(29,89,153,0.12);
}
.contact-input::placeholder { color: #bbb; }
textarea.contact-input { resize: vertical; min-height: 120px; }
.contact-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231D5999' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* CTA */
.contact-submit-btn { min-width: 180px; }
.contact-reassurance {
	font-size: 13px;
	color: #777;
}
.contact-reassurance strong { color: #333; }
.contact-privacy {
	font-size: 12px;
	color: #aaa;
	margin: 0;
}
.contact-privacy i { color: #1D5999; }

/* --- Credibility strip --- */
.contact-cred-strip {
	background: #fff;
	border-radius: 10px;
	border: 1px solid #eef2f8;
	padding: 18px 24px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 12px;
	box-shadow: 0 2px 10px rgba(29,89,153,0.06);
}
.contact-cred-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	color: #555;
}
.contact-cred-item i { color: #1D5999; font-size: 15px; }
.contact-cred-divider {
	width: 1px;
	height: 24px;
	background: #e0e8f4;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
	.contact-hero { padding: 48px 0 40px; }
	.contact-hero-title { font-size: 28px; }
	.contact-form-card { padding: 28px 24px; }
	.contact-cred-divider { display: none; }
}
@media (max-width: 575.98px) {
	.contact-hero-title { font-size: 24px; }
	.contact-trust-chips { gap: 8px; }
	.contact-trust-chip { font-size: 11px; padding: 6px 12px; }
	.contact-form-card { padding: 22px 18px; }
	.contact-cred-strip { justify-content: flex-start; gap: 16px; }
}

/* ================================================================
   BUILDINGS LISTING PAGE
   ================================================================ */

/* --- Hero --- */
.bldg-hero {
	background: linear-gradient(135deg, #0f1f3d 0%, #1D5999 100%);
	padding: 64px 0 56px;
}
.bldg-hero-title {
	font-size: 38px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}
.bldg-hero-sub {
	font-size: 15px;
	color: rgba(255,255,255,0.72);
	max-width: 580px;
	margin: 0 auto;
	line-height: 1.75;
}

/* Hero inline stats */
.bldg-hero-stats {
	display: inline-flex;
	align-items: center;
	gap: 0;
	background: rgba(255,255,255,0.10);
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 50px;
	padding: 14px 28px;
	flex-wrap: wrap;
	justify-content: center;
}
.bldg-hero-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 24px;
}
.bldg-hero-stat-num {
	font-size: 24px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
}
.bldg-hero-stat-label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(255,255,255,0.6);
	margin-top: 4px;
}
.bldg-hero-stat-div {
	width: 1px;
	height: 36px;
	background: rgba(255,255,255,0.2);
}

/* --- Filter Bar --- */
.bldg-filter-bar {
	background: #fff;
	border-bottom: 1px solid #eef2f8;
	padding: 12px 0;
	position: sticky;
	top: 0;
	z-index: 100;
	transition: box-shadow 0.2s;
}
.bldg-filter-bar--stuck {
	box-shadow: 0 4px 18px rgba(29,89,153,0.10);
}
.bldg-filter-count {
	font-size: 13px;
	color: #666;
}
.bldg-filter-count strong { color: #1D5999; }
.bldg-filter-label { font-size: 12px; color: #999; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.bldg-view-toggle {
	display: inline-flex;
	border: 1.5px solid #dde5f0;
	border-radius: 6px;
	overflow: hidden;
}
.bldg-view-btn {
	background: #fff;
	border: none;
	padding: 7px 14px;
	font-size: 13px;
	color: #999;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	line-height: 1;
}
.bldg-view-btn.active,
.bldg-view-btn:hover {
	background: #1D5999;
	color: #fff;
}

/* --- Grid Section --- */
.bldg-grid-section {
	background: #f4f7fb;
	padding: 40px 0 56px;
}

/* --- Building Card --- */
.bldg-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(29,89,153,0.08);
	border: 1px solid #eef2f8;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform 0.28s, box-shadow 0.28s;
}
.bldg-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 44px rgba(29,89,153,0.16);
}

/* Thumb */
.bldg-card-thumb {
	position: relative;
	overflow: hidden;
	height: 220px;
	background: #e8edf4;
	flex-shrink: 0;
}
.bldg-card-thumb a { display: block; height: 100%; }
.bldg-card-thumb img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
	color: transparent;
}
.bldg-card:hover .bldg-card-thumb img { transform: scale(1.06); }

/* Availability badge */
.bldg-card-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	padding: 5px 11px;
	border-radius: 20px;
	backdrop-filter: blur(4px);
}
.bldg-card-badge--open {
	background: rgba(39,174,96,0.92);
	color: #fff;
}
.bldg-card-badge--none {
	background: rgba(231,76,60,0.88);
	color: #fff;
}

/* Building name overlay */
.bldg-card-name-overlay {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	padding: 40px 14px 12px;
	background: linear-gradient(transparent, rgba(8,16,38,0.85));
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}

/* Card body */
.bldg-card-body {
	padding: 14px 16px 10px;
	flex: 1;
}
.bldg-card-address {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	font-size: 12px;
	color: #777;
	line-height: 1.5;
}
.bldg-card-address i { color: #1D5999; margin-top: 1px; flex-shrink: 0; font-size: 13px; }
.bldg-card-submarket {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	color: #888;
	background: #f0f4fa;
	border-radius: 4px;
	padding: 3px 9px;
	font-weight: 600;
}
.bldg-card-submarket i { font-size: 10px; color: #1D5999; }
.bldg-card-spaces-badge {
	font-size: 11px;
	font-weight: 700;
	color: #27ae60;
	background: rgba(39,174,96,0.10);
	padding: 3px 9px;
	border-radius: 4px;
}
.bldg-card-spaces-badge--none {
	color: #e74c3c;
	background: rgba(231,76,60,0.09);
}

/* Card footer */
.bldg-card-footer {
	padding: 12px 16px 14px;
	border-top: 1px solid #f0f4f9;
	display: flex;
	gap: 8px;
	align-items: center;
}
.bldg-card-cta {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	background: #1D5999;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	text-decoration: none;
	padding: 9px 14px;
	border-radius: 5px;
	transition: background 0.2s;
}
.bldg-card-cta:hover { background: #31A2E1; color: #fff; }
.bldg-card-cta-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	background: transparent;
	color: #1D5999;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	padding: 9px 12px;
	border-radius: 5px;
	border: 1.5px solid #dde5f0;
	transition: background 0.2s, border-color 0.2s;
}
.bldg-card-cta-secondary:hover { background: #f0f4fa; border-color: #1D5999; color: #1D5999; }

/* --- Empty State --- */
.bldg-empty {
	text-align: center;
	padding: 80px 20px;
}
.bldg-empty-icon {
	font-size: 56px;
	color: #dde5f0;
	display: block;
	margin-bottom: 16px;
}
.bldg-empty h3 { font-size: 20px; color: #333; margin-bottom: 8px; }
.bldg-empty p  { font-size: 14px; color: #999; max-width: 380px; margin: 0 auto; }

/* --- Pagination --- */
.bldg-pagination { text-align: center; }
.bldg-pagination ul.pagination {
	display: inline-flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 4px;
}
.bldg-pagination ul.pagination li a,
.bldg-pagination ul.pagination li.active a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border-radius: 6px;
	border: 1.5px solid #dde5f0;
	background: #fff;
	color: #1D5999;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s;
}
.bldg-pagination ul.pagination li a:hover { background: #f0f4fa; border-color: #1D5999; }
.bldg-pagination ul.pagination li.active a { background: #1D5999; border-color: #1D5999; color: #fff; }

/* --- Map View --- */
.bldg-map-section { background: #f4f7fb; padding: 0; }
.bldg-map-wrap {
	display: flex;
	height: 620px;
}
.bldg-map-canvas { flex: 1; position: relative; }
.bldg-map-sidebar {
	width: 320px;
	flex-shrink: 0;
	background: #fff;
	border-left: 1px solid #eef2f8;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.bldg-map-sidebar-header {
	padding: 14px 18px;
	border-bottom: 1px solid #eef2f8;
	background: #fafbfd;
	flex-shrink: 0;
}
.bldg-map-sidebar-list { flex: 1; overflow-y: auto; }
.bldg-map-item {
	display: flex;
	gap: 12px;
	padding: 14px 16px;
	border-bottom: 1px solid #f0f4f9;
	text-decoration: none;
	transition: background 0.15s;
	align-items: flex-start;
}
.bldg-map-item:hover { background: #f4f7fb; }
.bldg-map-item-img {
	width: 64px;
	height: 56px;
	border-radius: 6px;
	overflow: hidden;
	flex-shrink: 0;
	background: #e8edf4;
}
.bldg-map-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bldg-map-item-name { font-size: 13px; font-weight: 700; color: #111; line-height: 1.3; margin-bottom: 3px; }
.bldg-map-item-addr { font-size: 11px; color: #999; line-height: 1.4; margin-bottom: 4px; }
.bldg-map-item-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.bldg-map-item-badge--open { color: #27ae60; }
.bldg-map-item-badge--none { color: #e74c3c; }

/* --- Responsive --- */
@media (max-width: 991.98px) {
	.bldg-hero { padding: 48px 0 40px; }
	.bldg-hero-title { font-size: 28px; }
	.bldg-hero-stats { padding: 12px 16px; gap: 4px; }
	.bldg-hero-stat { padding: 0 14px; }
	.bldg-hero-stat-num { font-size: 20px; }
	.bldg-map-sidebar { display: none; }
	.bldg-map-wrap { height: 480px; }
}
@media (max-width: 575.98px) {
	.bldg-hero-title { font-size: 22px; }
	.bldg-hero-stat-div { display: none; }
	.bldg-hero-stats { border-radius: 12px; gap: 12px; }
	.bldg-hero-stat { padding: 0; }
}


/* ============================================================
   ABOUT US PAGE
   ============================================================ */

/* --- Hero --- */
.about-hero {
	background: linear-gradient(135deg, #0f1f3d 0%, #1D5999 60%, #31A2E1 100%);
	padding: 72px 0 60px;
	color: #fff;
	position: relative;
	overflow: hidden;
}
.about-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.about-hero-title {
	font-size: 42px;
	font-weight: 800;
	color: #fff;
	line-height: 1.15;
	letter-spacing: -0.5px;
}
.about-hero-sub {
	font-size: 17px;
	color: rgba(255,255,255,0.78);
	line-height: 1.7;
	max-width: 600px;
	margin: 0 auto;
}

/* --- Shared section labels & titles --- */
.about-section-title {
	font-size: 30px;
	font-weight: 800;
	color: #0f1f3d;
	line-height: 1.2;
	margin-bottom: 8px;
}
.about-section-sub {
	font-size: 15.5px;
	color: #666;
	line-height: 1.7;
}
.about-text { font-size: 15.5px; color: #4a5568; line-height: 1.75; }
.about-content-detail { font-size: 15.5px; color: #4a5568; line-height: 1.75; }
.about-content-detail p { margin-bottom: 1rem; }

/* --- Who We Are --- */
.about-who-section {
	padding: 80px 0;
	background: #fff;
}
.about-who-visual {
	position: relative;
	height: 380px;
}
.about-who-graphic {
	width: 100%;
	height: 320px;
	background: linear-gradient(135deg, #e8f0fb 0%, #dce8f5 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.about-who-graphic-icon {
	font-size: 100px;
	color: #1D5999;
	opacity: 0.25;
}
.about-who-badge {
	position: absolute;
	bottom: 0;
	left: -12px;
	background: #1D5999;
	color: #fff;
	border-radius: 14px;
	padding: 16px 22px;
	text-align: center;
	box-shadow: 0 8px 24px rgba(29,89,153,0.35);
	min-width: 120px;
}
.about-who-badge-num {
	font-size: 36px;
	font-weight: 900;
	line-height: 1;
}
.about-who-badge-num span { font-size: 22px; }
.about-who-badge-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	opacity: 0.85;
	margin-top: 4px;
}
.about-who-side-stat {
	position: absolute;
	top: 20px;
	right: -12px;
	background: #fff;
	border-radius: 12px;
	padding: 14px 18px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	border: 1px solid #eef2f8;
	min-width: 110px;
}
.about-who-side-stat-num {
	font-size: 26px;
	font-weight: 900;
	color: #1D5999;
	line-height: 1;
}
.about-who-side-stat-label {
	font-size: 11px;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	margin-top: 4px;
}
.about-quick-facts { display: flex; flex-direction: column; gap: 10px; }
.about-quick-fact {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14.5px;
	color: #444;
}
.about-quick-fact i { color: #1D5999; font-size: 15px; flex-shrink: 0; }

/* --- Stats Bar --- */
.about-stats-bar {
	background: linear-gradient(90deg, #0f1f3d 0%, #1D5999 100%);
	padding: 0;
}
.about-stat-tile {
	padding: 36px 20px;
	text-align: center;
	border-right: 1px solid rgba(255,255,255,0.1);
	color: #fff;
}
.about-stat-tile:last-child { border-right: none; }
.about-stat-icon {
	font-size: 24px;
	color: #31A2E1;
	margin-bottom: 10px;
	display: block;
}
.about-stat-num {
	font-size: 36px;
	font-weight: 900;
	color: #fff;
	line-height: 1;
	margin-bottom: 6px;
}
.about-stat-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: rgba(255,255,255,0.65);
}

/* --- Mission & Values --- */
.about-values-section {
	padding: 80px 0;
	background: #f4f7fb;
}
.about-value-card {
	background: #fff;
	border-radius: 16px;
	padding: 32px 24px;
	height: 100%;
	text-align: center;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
	border: 1px solid #eef2f8;
	transition: transform 0.25s, box-shadow 0.25s;
}
.about-value-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(29,89,153,0.12);
}
.about-value-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, #1D5999 0%, #31A2E1 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	font-size: 24px;
	color: #fff;
}
.about-value-title {
	font-size: 17px;
	font-weight: 700;
	color: #0f1f3d;
	margin-bottom: 8px;
}
.about-value-text {
	font-size: 14px;
	color: #666;
	line-height: 1.65;
	margin: 0;
}

/* --- Core Services --- */
.about-services-section {
	padding: 80px 0;
	background: #fff;
}
.about-service-card {
	background: #f8fafd;
	border: 1px solid #eef2f8;
	border-radius: 16px;
	padding: 32px 28px;
	height: 100%;
	position: relative;
	transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.about-service-card:hover {
	box-shadow: 0 8px 32px rgba(29,89,153,0.12);
	transform: translateY(-4px);
	border-color: #c8d8ed;
}
.about-service-num {
	font-size: 48px;
	font-weight: 900;
	color: #1D5999;
	opacity: 0.08;
	line-height: 1;
	position: absolute;
	top: 20px;
	right: 24px;
}
.about-service-icon-wrap {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: linear-gradient(135deg, #1D5999 0%, #31A2E1 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #fff;
	margin-bottom: 18px;
}
.about-service-title {
	font-size: 18px;
	font-weight: 700;
	color: #0f1f3d;
	margin-bottom: 10px;
}
.about-service-text {
	font-size: 14px;
	color: #666;
	line-height: 1.65;
	margin-bottom: 16px;
}
.about-service-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.about-service-list li {
	font-size: 13.5px;
	color: #555;
	padding-left: 20px;
	position: relative;
}
.about-service-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 7px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #31A2E1;
}

/* --- Why Choose Us --- */
.about-why-section {
	padding: 80px 0;
	background: #f4f7fb;
}
.about-usp-list { display: flex; flex-direction: column; gap: 20px; }
.about-usp-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.about-usp-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #e8f0fb;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #1D5999;
	font-size: 14px;
}
.about-usp-item strong { display: block; font-size: 15px; color: #0f1f3d; margin-bottom: 3px; }
.about-usp-item p { font-size: 13.5px; color: #666; line-height: 1.6; margin: 0; }

/* --- Credibility Panel --- */
.about-cred-panel {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 30px rgba(0,0,0,0.08);
	border: 1px solid #eef2f8;
}
.about-cred-panel-header {
	background: linear-gradient(90deg, #0f1f3d 0%, #1D5999 100%);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	padding: 18px 24px;
}
.about-cred-panel-body { padding: 28px 28px 20px; }
.about-cred-quote-icon { font-size: 32px; color: #e8f0fb; margin-bottom: 12px; }
.about-cred-quote-text {
	font-size: 15px;
	color: #333;
	line-height: 1.7;
	font-style: italic;
	margin-bottom: 18px;
}
.about-cred-quote-author { display: flex; align-items: center; gap: 14px; }
.about-cred-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #e8f0fb;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #1D5999;
	flex-shrink: 0;
}
.about-cred-role { font-size: 12px; color: #999; margin-top: 2px; }
.about-cred-stars { color: #f59e0b; font-size: 15px; letter-spacing: 2px; }
.about-cred-panel-footer {
	display: flex;
	align-items: stretch;
	border-top: 1px solid #eef2f8;
	background: #f8fafd;
}
.about-cred-kpi { flex: 1; text-align: center; padding: 18px 10px; }
.about-cred-kpi-num {
	font-size: 24px;
	font-weight: 900;
	color: #1D5999;
	line-height: 1;
	margin-bottom: 4px;
}
.about-cred-kpi-label { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.6px; }
.about-cred-kpi-div { width: 1px; background: #eef2f8; }

/* --- Testimonials --- */
.about-testimonials-section {
	padding: 80px 0;
	background: #fff;
}
.about-testi-card {
	background: #f8fafd;
	border: 1px solid #eef2f8;
	border-radius: 16px;
	padding: 28px 24px;
	height: 100%;
	transition: box-shadow 0.25s, transform 0.25s;
}
.about-testi-card:hover {
	box-shadow: 0 8px 28px rgba(29,89,153,0.1);
	transform: translateY(-3px);
}
.about-testi-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; }
.about-testi-text {
	font-size: 14.5px;
	color: #444;
	line-height: 1.7;
	font-style: italic;
	margin-bottom: 20px;
	flex: 1;
}
.about-testi-author { display: flex; align-items: center; gap: 12px; }
.about-testi-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #e8f0fb;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #1D5999;
	flex-shrink: 0;
}
.about-testi-name { font-size: 14px; color: #111; }
.about-testi-role { font-size: 12px; color: #999; margin-top: 2px; }

/* --- Responsive --- */
@media (max-width: 991.98px) {
	.about-hero { padding: 52px 0 44px; }
	.about-hero-title { font-size: 30px; }
	.about-who-section,
	.about-values-section,
	.about-services-section,
	.about-why-section,
	.about-testimonials-section { padding: 56px 0; }
	.about-who-visual { height: 280px; margin-bottom: 40px; }
	.about-who-graphic { height: 240px; }
	.about-stat-num { font-size: 28px; }
}
@media (max-width: 575.98px) {
	.about-hero-title { font-size: 24px; }
	.about-section-title { font-size: 24px; }
	.about-stat-tile { padding: 24px 12px; }
	.about-stat-num { font-size: 22px; }
	.about-who-badge { left: 0; }
	.about-who-side-stat { right: 0; }
}


/* ============================================================
   BUILDING INFO PAGE  (binfo-*)
   ============================================================ */

/* ---- Hero Carousel ---- */
.binfo-hero {
	position: relative;
	background: #0f1f3d;
	overflow: hidden;
}
.binfo-carousel { display: block; }
.binfo-carousel-img {
	width: 100%;
	height: 540px;
	object-fit: cover;
	display: block;
	filter: brightness(0.75);
}
.binfo-hero-fallback {
	height: 400px;
	background: linear-gradient(135deg, #0f1f3d 0%, #1D5999 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}
.binfo-hero-fallback-icon { font-size: 90px; color: rgba(255,255,255,0.12); }

/* Indicators */
.binfo-indicators {
	bottom: 80px;
}
.binfo-indicators [data-bs-target] {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255,255,255,0.5);
	border: none;
	margin: 0 4px;
	transition: all 0.3s;
}
.binfo-indicators .active {
	width: 24px;
	border-radius: 4px;
	background: #fff;
}

/* Prev/Next controls */
.binfo-ctrl {
	width: 48px;
	height: 48px;
	background: rgba(255,255,255,0.15) !important;
	backdrop-filter: blur(8px);
	border-radius: 50% !important;
	border: 1px solid rgba(255,255,255,0.25) !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	opacity: 1 !important;
	transition: background 0.25s !important;
}
.binfo-ctrl:hover { background: rgba(29,89,153,0.7) !important; }
.binfo-ctrl i { font-size: 16px; color: #fff; }
.carousel-control-prev.binfo-ctrl { left: 20px; }
.carousel-control-next.binfo-ctrl { right: 20px; }

/* Gradient overlay */
.binfo-hero-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(10,20,40,0.92) 0%, rgba(10,20,40,0.55) 50%, transparent 100%);
	padding: 40px 0 28px;
	color: #fff;
}

/* Breadcrumb inside hero */
.binfo-breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: rgba(255,255,255,0.65);
	margin-bottom: 14px;
}
.binfo-breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.binfo-breadcrumb a:hover { color: #31A2E1; }
.binfo-bc-sep { font-size: 9px; opacity: 0.5; }

/* Hero title/address */
.binfo-hero-content {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.binfo-hero-title {
	font-size: 36px;
	font-weight: 800;
	color: #fff;
	line-height: 1.15;
	margin: 0 0 8px;
	letter-spacing: -0.4px;
	text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.binfo-hero-address {
	font-size: 14px;
	color: rgba(255,255,255,0.75);
	margin: 0;
}

/* Vacancy badge in hero */
.binfo-vacancy-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	font-weight: 700;
	padding: 9px 18px;
	border-radius: 30px;
	white-space: nowrap;
}
.binfo-has-vacancy {
	background: rgba(39,174,96,0.2);
	border: 1px solid rgba(39,174,96,0.5);
	color: #5cdb8b;
}
.binfo-no-vacancy {
	background: rgba(231,76,60,0.2);
	border: 1px solid rgba(231,76,60,0.5);
	color: #ff8a7a;
}

/* ---- Key Info Strip ---- */
.binfo-key-strip {
	background: #fff;
	border-bottom: 1px solid #eef2f8;
	box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.binfo-key-tile {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 20px;
	border-right: 1px solid #eef2f8;
	transition: background 0.2s;
}
.binfo-key-tile:last-child { border-right: none; }
.binfo-key-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: linear-gradient(135deg, #e8f0fb 0%, #dce8f5 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	color: #1D5999;
	flex-shrink: 0;
}
.binfo-key-val {
	font-size: 16px;
	font-weight: 800;
	color: #0f1f3d;
	line-height: 1.2;
}
.binfo-key-label {
	font-size: 11.5px;
	color: #888;
	margin-top: 1px;
}

/* ---- Main Section ---- */
.binfo-main-section {
	background: #f4f7fb;
	padding: 40px 0 60px;
}

/* ---- Cards ---- */
.binfo-card {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #eef2f8;
	overflow: hidden;
	margin-bottom: 24px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.binfo-card-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px 24px;
	border-bottom: 1px solid #eef2f8;
	background: #fafbfd;
}
.binfo-card-head i { font-size: 17px; color: #1D5999; }
.binfo-card-head h3 {
	font-size: 16px;
	font-weight: 700;
	color: #0f1f3d;
	margin: 0;
	flex: 1;
}
.binfo-spaces-count {
	font-size: 11px;
	font-weight: 700;
	background: #e8f0fb;
	color: #1D5999;
	padding: 3px 10px;
	border-radius: 30px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.binfo-card-body { padding: 24px; }

/* Description */
.binfo-desc {
	font-size: 15px;
	color: #4a5568;
	line-height: 1.8;
	margin: 0 0 16px;
}
.binfo-neighbourhood {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	background: #f4f7fb;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 13.5px;
	color: #555;
}
.binfo-neighbourhood i { color: #1D5999; margin-top: 2px; flex-shrink: 0; }
.binfo-empty { font-size: 14px; color: #aaa; font-style: italic; margin: 0; }

/* ---- Amenities Grid ---- */
.binfo-amenities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 12px;
}
.binfo-amenity {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	padding: 16px 10px;
	background: #f8fafd;
	border: 1px solid #eef2f8;
	border-radius: 10px;
	font-size: 12px;
	color: #555;
	font-weight: 500;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.binfo-amenity:hover {
	border-color: #c8d8ed;
	box-shadow: 0 4px 14px rgba(29,89,153,0.08);
	transform: translateY(-2px);
}
.binfo-amenity-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: linear-gradient(135deg, #1D5999 0%, #31A2E1 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #fff;
}

/* ---- Available Spaces ---- */
.binfo-spaces-list { padding: 0; }
.binfo-space-item {
	display: flex;
	gap: 20px;
	align-items: stretch;
	padding: 24px;
	border-bottom: 1px solid #eef2f8;
	transition: background 0.15s;
}
.binfo-space-item:last-child { border-bottom: none; }
.binfo-space-item:hover { background: #fafcff; }

/* Thumbnail */
.binfo-space-thumb {
	width: 140px;
	min-height: 150px;
	flex-shrink: 0;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	display: block;
	background: #e8edf4;
	align-self: stretch;
}
.binfo-space-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s;
}
.binfo-space-thumb:hover img { transform: scale(1.06); }
.binfo-space-thumb-fallback {
	width: 100%;
	height: 100%;
	min-height: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 32px;
	color: #a0b4c8;
	background: #e8edf4;
}
.binfo-space-thumb-fallback::after {
	content: 'NO PHOTO';
	font-size: 9px;
	font-weight: 700;
	color: #b0c0cc;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.binfo-space-thumb-overlay {
	position: absolute;
	inset: 0;
	background: rgba(29,89,153,0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	opacity: 0;
	transition: opacity 0.25s;
	border-radius: 10px;
}
.binfo-space-thumb:hover .binfo-space-thumb-overlay { opacity: 1; }

/* Space info */
.binfo-space-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}
.binfo-space-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
}
.binfo-space-name {
	font-size: 17px;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
}
.binfo-space-name a {
	color: #0f1f3d;
	text-decoration: none;
	transition: color 0.2s;
}
.binfo-space-name a:hover { color: #1D5999; }
.binfo-available-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #fff;
	background: #22c55e;
	padding: 5px 12px;
	border-radius: 20px;
	white-space: nowrap;
	flex-shrink: 0;
}
.binfo-available-pill i { font-size: 12px; }
.binfo-space-desc {
	font-size: 13px;
	color: #6b7a8d;
	line-height: 1.65;
	margin: 0 0 14px;
}
.binfo-space-metrics {
	display: flex;
	gap: 0;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 16px;
	border: 1px solid #eef2f8;
	border-radius: 10px;
	overflow: hidden;
	background: #f8fafd;
}
.binfo-metric {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	border-right: 1px solid #eef2f8;
	flex: 1;
}
.binfo-metric:last-child { border-right: none; }
.binfo-metric-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: #eef4fb;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #1D5999;
	flex-shrink: 0;
}
.binfo-metric-text strong {
	display: block;
	font-size: 17px;
	font-weight: 800;
	color: #0f1f3d;
	line-height: 1.1;
}
.binfo-metric-text span {
	display: block;
	font-size: 11px;
	color: #999;
	margin-top: 2px;
}
.binfo-space-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: #1D5999;
	text-decoration: none;
	margin-top: auto;
	transition: gap 0.2s, color 0.2s;
}
.binfo-space-cta:hover { color: #31A2E1; gap: 10px; }
.binfo-space-cta i { font-size: 12px; transition: transform 0.2s; }
.binfo-space-cta:hover i { transform: translateX(3px); }

/* No spaces state */
.binfo-no-spaces .binfo-no-spaces-icon {
	width: 72px;
	height: 72px;
	background: #e8f0fb;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: #1D5999;
	margin: 0 auto;
}

/* ---- Sidebar ---- */
.binfo-sidebar-sticky {
	position: sticky;
	top: 24px;
}

/* Contact Card */
.binfo-contact-card {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #eef2f8;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.07);
	margin-bottom: 20px;
}
/* Card header bar */
.binfo-cc-header {
	background: linear-gradient(135deg, #1D5999 0%, #31A2E1 100%);
	padding: 18px 20px 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.3px;
}
.binfo-cc-header i { font-size: 17px; }

/* Profile section (photo overlapping header) */
.binfo-cc-profile {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: -44px;
	padding: 0 20px 16px;
}
.binfo-cc-avatar {
	width: 82px;
	height: 82px;
	border-radius: 50%;
	border: 3px solid #fff;
	box-shadow: 0 2px 14px rgba(29,89,153,0.2);
	background: #e8f0fb;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: #1D5999;
	overflow: hidden;
	flex-shrink: 0;
}
.binfo-cc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.binfo-cc-name {
	font-size: 16px;
	font-weight: 700;
	color: #1a2a45;
	margin-top: 10px;
	text-align: center;
	line-height: 1.2;
}
.binfo-cc-company {
	font-size: 12.5px;
	color: #888;
	text-align: center;
	margin-top: 3px;
}

/* Contact rows */
.binfo-contact-rows { padding: 4px 0; border-top: 1px solid #f0f4f9; }
.binfo-contact-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 20px;
	border-bottom: 1px solid #f0f4f9;
}
.binfo-contact-row:last-child { border-bottom: none; }
.binfo-contact-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: #1D5999;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #fff;
	flex-shrink: 0;
	margin-top: 1px;
}
.binfo-contact-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px; color: #aaa; margin-bottom: 3px; }
.binfo-contact-val { font-size: 13.5px; color: #333; font-weight: 600; }
.binfo-contact-val a { color: #1a2a45; text-decoration: none; transition: color 0.2s; }
.binfo-contact-val a:hover { color: #1D5999; }

/* Mini map card */
.binfo-mini-map-card {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #eef2f8;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	margin-bottom: 16px;
}
.binfo-mini-map-head {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 18px;
	border-bottom: 1px solid #eef2f8;
	font-size: 13px;
	color: #333;
}
.binfo-mini-map-head i { color: #1D5999; font-size: 15px; }
.binfo-mini-map {
	height: 180px;
	width: 100%;
}
.binfo-mini-map-addr {
	padding: 12px 16px;
	font-size: 12px;
	color: #666;
	line-height: 1.5;
}

/* Back link */
.binfo-back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #666;
	text-decoration: none;
	padding: 8px 0;
	transition: color 0.2s, gap 0.2s;
}
.binfo-back-link:hover { color: #1D5999; gap: 12px; }

/* ---- Full Map Section ---- */
.binfo-map-section {
	background: #fff;
	border-top: 1px solid #eef2f8;
}
.binfo-map-header {
	padding: 24px 0;
	border-bottom: 1px solid #eef2f8;
}
.binfo-map-title {
	font-size: 18px;
	font-weight: 700;
	color: #0f1f3d;
	margin: 0 0 4px;
}
.binfo-map-sub { font-size: 13px; color: #888; margin: 0; }
.binfo-map-directions-btn {
	display: inline-flex;
	align-items: center;
	background: #1D5999;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 10px 20px;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s, transform 0.2s;
	white-space: nowrap;
}
.binfo-map-directions-btn:hover {
	background: #31A2E1;
	color: #fff;
	transform: translateY(-1px);
}
.binfo-map-canvas {
	height: 420px;
	width: 100%;
	display: block;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
	.binfo-carousel-img { height: 380px; }
	.binfo-hero-title { font-size: 26px; }
	.binfo-sidebar-sticky { position: static; }
	.binfo-amenities-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
}
@media (max-width: 767.98px) {
	.binfo-carousel-img { height: 280px; }
	.binfo-hero-title { font-size: 22px; }
	.binfo-space-item { flex-direction: column; gap: 14px; }
	.binfo-space-thumb { width: 100%; min-height: 180px; align-self: auto; }
	.binfo-space-metrics { flex-direction: row; }
	.binfo-metric { flex: 1 1 auto; }
	.binfo-hero-content { flex-direction: column; align-items: flex-start; }
	.binfo-key-tile { padding: 14px 12px; gap: 10px; }
	.binfo-map-canvas { height: 300px; }
}
@media (max-width: 575.98px) {
	.binfo-hero-title { font-size: 20px; }
	.binfo-amenities-grid { grid-template-columns: repeat(3, 1fr); }
	.binfo-amenity { padding: 12px 6px; font-size: 11px; }
	.binfo-amenity-icon { width: 34px; height: 34px; font-size: 14px; }
}


/* ============================================================
   BUILDING INFO — PHOTO GALLERY + LIGHTBOX
   ============================================================ */

/* ---- Gallery Section ---- */
.binfo-gallery-section {
	background: #fff;
	padding: 28px 0 0;
}

/* breadcrumb reused from binfo-breadcrumb already defined */

/* Title row */
.binfo-title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.binfo-page-title {
	font-size: 28px;
	font-weight: 800;
	color: #0f1f3d;
	line-height: 1.2;
	margin: 0 0 6px;
}
.binfo-page-address {
	font-size: 14px;
	color: #777;
	margin: 0;
}

/* ---- Photo Grid ---- */
.binfo-photo-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 480px;
	gap: 6px;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	margin-top: 4px;
}

/* Large main photo */
.binfo-photo-main {
	grid-column: 1;
	grid-row: 1;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.binfo-photo-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
	display: block;
}
.binfo-photo-main:hover img { transform: scale(1.03); }

/* Thumbnail 2×2 grid */
.binfo-photo-thumbs {
	grid-column: 2;
	grid-row: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 6px;
}

.binfo-photo-thumb {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.binfo-photo-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
	display: block;
}
.binfo-photo-thumb:hover img { transform: scale(1.05); }
.binfo-photo-thumb-empty {
	background: #e8edf4;
	cursor: default;
}

/* Hover overlay on each photo */
.binfo-photo-hover-overlay {
	position: absolute;
	inset: 0;
	background: rgba(15,31,61,0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 22px;
	opacity: 0;
	transition: opacity 0.25s;
}
.binfo-photo-main:hover .binfo-photo-hover-overlay,
.binfo-photo-thumb:hover .binfo-photo-hover-overlay { opacity: 1; }

/* "+X more" overlay on last thumb */
.binfo-photo-count-overlay {
	position: absolute;
	inset: 0;
	background: rgba(15,31,61,0.62);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.3px;
}

/* "Show all X photos" button */
.binfo-show-all-btn {
	position: absolute;
	bottom: 16px;
	right: 16px;
	background: #fff;
	color: #0f1f3d;
	border: 1.5px solid rgba(0,0,0,0.18);
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
	padding: 9px 18px;
	cursor: pointer;
	transition: background 0.2s, box-shadow 0.2s;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
	z-index: 10;
}
.binfo-show-all-btn:hover {
	background: #f4f7fb;
	box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

/* Fallback (no photos) */
.binfo-photo-fallback {
	height: 320px;
	border-radius: 16px;
	background: linear-gradient(135deg, #e8f0fb 0%, #dce8f5 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: #9ab4cc;
	font-size: 60px;
}
.binfo-photo-fallback span {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

/* ---- Lightbox ---- */
.binfo-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}
.binfo-lb-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(5,10,20,0.96);
}

/* Header bar */
.binfo-lb-header {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	background: rgba(0,0,0,0.4);
	flex-shrink: 0;
}
.binfo-lb-title {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-right: 16px;
}
.binfo-lb-counter {
	font-size: 13px;
	color: rgba(255,255,255,0.65);
	white-space: nowrap;
	margin-right: 20px;
}
.binfo-lb-close {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255,255,255,0.12);
	border: none;
	color: #fff;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s;
	flex-shrink: 0;
}
.binfo-lb-close:hover { background: rgba(255,255,255,0.25); }

/* Stage — main image area */
.binfo-lb-stage {
	position: relative;
	z-index: 2;
	flex: 1;
	overflow: hidden;
	display: flex;
	align-items: center;
}
.binfo-lb-track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
}
.binfo-lb-slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 80px;
}
.binfo-lb-slide img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: 6px;
	box-shadow: 0 8px 48px rgba(0,0,0,0.6);
	user-select: none;
	-webkit-user-drag: none;
}

/* Prev / Next nav buttons */
.binfo-lb-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.2);
	color: #fff;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s;
	backdrop-filter: blur(6px);
}
.binfo-lb-nav:hover { background: rgba(255,255,255,0.25); }
.binfo-lb-prev { left: 16px; }
.binfo-lb-next { right: 16px; }

/* Thumbnail strip */
.binfo-lb-strip {
	position: relative;
	z-index: 2;
	display: flex;
	gap: 6px;
	padding: 10px 16px;
	background: rgba(0,0,0,0.5);
	overflow-x: auto;
	flex-shrink: 0;
	scrollbar-width: thin;
	scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.binfo-lb-strip::-webkit-scrollbar { height: 4px; }
.binfo-lb-strip::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }
.binfo-lb-strip-thumb {
	flex-shrink: 0;
	width: 72px;
	height: 52px;
	border-radius: 6px;
	overflow: hidden;
	cursor: pointer;
	opacity: 0.5;
	border: 2px solid transparent;
	transition: opacity 0.2s, border-color 0.2s;
}
.binfo-lb-strip-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.binfo-lb-strip-thumb:hover { opacity: 0.8; }
.binfo-lb-strip-thumb.active {
	opacity: 1;
	border-color: #31A2E1;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
	.binfo-photo-grid { grid-template-rows: 360px; }
	.binfo-page-title { font-size: 22px; }
}
@media (max-width: 767.98px) {
	.binfo-photo-grid {
		grid-template-columns: 1fr;
		grid-template-rows: 260px auto;
	}
	.binfo-photo-thumbs {
		grid-column: 1;
		grid-row: 2;
		grid-template-rows: 120px;
		grid-template-columns: repeat(4, 1fr);
	}
	.binfo-photo-grid { grid-template-rows: unset; }
	.binfo-photo-main { height: 260px; }
	.binfo-lb-slide { padding: 8px 56px; }
	.binfo-lb-nav { width: 40px; height: 40px; font-size: 15px; }
	.binfo-lb-prev { left: 8px; }
	.binfo-lb-next { right: 8px; }
}
@media (max-width: 575.98px) {
	.binfo-photo-thumbs { display: none; }
	.binfo-show-all-btn { bottom: 12px; right: 12px; font-size: 12px; padding: 8px 14px; }
	.binfo-lb-strip-thumb { width: 56px; height: 40px; }
}

/* ============================================================
   SPACE INFO PAGE — sinfo-* classes
   ============================================================ */

/* No Photo Placeholder */
.sinfo-no-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: #f0f4f8;
  color: #9ca3af;
  gap: 12px;
}
.sinfo-no-photo i { font-size: 64px; }
.sinfo-no-photo p { font-size: 16px; margin: 0; }

/* Breadcrumb Bar */
.sinfo-breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid #e8edf2;
  padding: 12px 0;
}
.sinfo-breadcrumb-bar .breadcrumb {
  font-size: 13px;
  margin: 0;
  gap: 4px;
}
.sinfo-breadcrumb-bar .breadcrumb-item a {
  color: #1D5999;
  text-decoration: none;
}
.sinfo-breadcrumb-bar .breadcrumb-item a:hover { text-decoration: underline; }
.sinfo-breadcrumb-bar .breadcrumb-item.active { color: #6b7280; }

/* Metrics Strip */
.sinfo-metrics-strip {
  background: linear-gradient(90deg, #0f1f3d 0%, #1D5999 100%);
  padding: 22px 0;
}
.sinfo-metrics-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
}
.sinfo-metric-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 32px;
  color: #fff;
}
.sinfo-metric-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.sinfo-metric-val {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.sinfo-metric-label {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
}
.sinfo-metric-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .sinfo-metrics-inner { gap: 4px; }
  .sinfo-metric-item { padding: 8px 16px; }
  .sinfo-metric-divider { display: none; }
}

/* Main Section */
.sinfo-main-section { padding: 60px 0; background: #f4f7fb; }

/* Title Row */
.sinfo-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.sinfo-space-title {
  font-size: 32px;
  font-weight: 800;
  color: #0f1f3d;
  margin: 0 0 6px;
  letter-spacing: -0.5px;
}
.sinfo-space-address {
  color: #6b7280;
  font-size: 15px;
  margin: 0;
}
.sinfo-brochure-btn {
  flex-shrink: 0;
  border-radius: 8px !important;
  font-weight: 700;
  font-size: 14px;
}

/* Cards */
.sinfo-desc-card,
.sinfo-details-card,
.sinfo-floorplan-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8edf2;
  padding: 28px 30px;
}
.sinfo-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f1f3d;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f4f8;
}
.sinfo-desc-body {
  color: #4b5563;
  line-height: 1.75;
  font-size: 15px;
}
.sinfo-desc-body p { margin-bottom: 12px; }
.sinfo-desc-body p:last-child { margin-bottom: 0; }

/* Details Grid */
.sinfo-details-grid { display: flex; flex-direction: column; gap: 0; }
.sinfo-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 14px;
}
.sinfo-detail-row:last-child { border-bottom: none; }
.sinfo-detail-label {
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sinfo-detail-label i { color: #1D5999; width: 16px; text-align: center; }
.sinfo-detail-val { font-weight: 700; color: #0f1f3d; }

/* Floorplan */
.sinfo-floorplan-wrap { text-align: center; }
.sinfo-floorplan-img {
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid #e8edf2;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}
.sinfo-floorplan-img.sinfo-floorplan-zoomed {
  transform: scale(1.5);
  cursor: zoom-out;
  z-index: 10;
  position: relative;
}
.sinfo-floorplan-hint {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 10px;
  margin-bottom: 0;
}

/* Contact Sidebar */
.sinfo-contact-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8edf2;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(29,89,153,0.08);
}
.sinfo-contact-header {
  background: linear-gradient(135deg, #1D5999, #31A2E1);
  color: #fff;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
}
.sinfo-contact-body { padding: 24px 22px; }
.sinfo-agent-photo-wrap { text-align: center; margin-bottom: 16px; }
.sinfo-agent-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e8edf2;
}
.sinfo-agent-photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #9ca3af;
  margin: 0 auto;
  border: 3px solid #e8edf2;
}
.sinfo-agent-name {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: #0f1f3d;
}
.sinfo-agent-role {
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 2px 0;
}
.sinfo-agent-company {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
}
.sinfo-contact-methods { display: flex; flex-direction: column; gap: 10px; }
.sinfo-contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e8edf2;
  transition: border-color 0.2s, background 0.2s;
}
.sinfo-contact-method:hover { border-color: #1D5999; background: #eff6ff; }
.sinfo-contact-method-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #1D5999;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.sinfo-contact-method-label { font-size: 11px; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.5px; }
.sinfo-contact-method-val { font-size: 13px; font-weight: 600; color: #0f1f3d; }
.sinfo-cta-btn {
  background: linear-gradient(135deg, #1D5999, #31A2E1) !important;
  border: none !important;
  border-radius: 10px !important;
  font-weight: 700;
  font-size: 14px;
  padding: 12px !important;
}
.sinfo-cta-btn-outline {
  border-radius: 10px !important;
  font-weight: 700;
  font-size: 14px;
  padding: 11px !important;
}
.sinfo-trust-items { display: flex; flex-direction: column; gap: 8px; }
.sinfo-trust-item {
  font-size: 13px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sinfo-trust-item i { color: #1D5999; }

/* Other Spaces Section */
.sinfo-other-section {
  padding: 70px 0;
  background: #fff;
}
.sinfo-section-title {
  font-size: 28px;
  font-weight: 800;
  color: #0f1f3d;
  margin: 0 0 12px;
}
.sinfo-other-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8edf2;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.sinfo-other-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(29,89,153,0.12);
}
.sinfo-other-photo {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #f0f4f8;
}
.sinfo-other-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.sinfo-other-card:hover .sinfo-other-photo img { transform: scale(1.04); }
.sinfo-other-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f0f4fa;
  color: #9ca3af;
}
.sinfo-other-photo-placeholder i { font-size: 48px; color: #b0bec5; }
.sinfo-other-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #22c55e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.sinfo-other-body { padding: 18px 20px 20px; }
.sinfo-other-name {
  font-size: 16px;
  font-weight: 700;
  color: #0f1f3d;
  margin: 0 0 8px;
}
.sinfo-other-metrics { display: flex; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; align-items: center; }
.sinfo-other-metric {
  font-size: 14px;
  color: #1D5999;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.sinfo-other-metric i { font-size: 14px; color: #1D5999; }
.sinfo-other-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #1D5999;
  text-decoration: none;
  border-top: 1px solid #f0f4f8;
  padding-top: 14px;
  width: 100%;
  transition: gap 0.2s, color 0.2s;
}
.sinfo-other-link:hover { gap: 10px; color: #31A2E1; }

/* Map Section */
.sinfo-map-section { padding: 60px 0 0; background: #f4f7fb; }
.sinfo-map-wrap { margin-top: 20px; }
#sinfo-map-canvas {
  width: 100%;
  height: 420px;
}
@media (max-width: 767px) {
  #sinfo-map-canvas { height: 280px; }
  .sinfo-space-title { font-size: 24px; }
  .sinfo-desc-card, .sinfo-details-card, .sinfo-floorplan-card { padding: 20px; }
}

/* Gallery section dark bg */
.sinfo-gallery-section { background: #0f1f3d; }

/* ============================================================
   AVAILABLE SPACES — Card Grid (binfo-sc-*)
   Replaces the old row listing (binfo-space-item)
   ============================================================ */

.binfo-spaces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px 0 4px;
}

/* Card */
.binfo-space-card {
  border-radius: 14px;
  border: 1px solid #e8edf2;
  overflow: hidden;
  background: #fff;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.binfo-space-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(29,89,153,0.13);
}

/* Photo */
.binfo-sc-photo {
  position: relative;
  display: block;
  height: 190px;
  overflow: hidden;
  background: #e8edf4;
  flex-shrink: 0;
}
.binfo-sc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.binfo-space-card:hover .binfo-sc-photo img { transform: scale(1.05); }

/* Placeholder */
.binfo-sc-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8edf4;
  font-size: 52px;
  color: #a0b4c8;
}

/* Available badge */
.binfo-sc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #22c55e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 1;
}
.binfo-sc-badge i { font-size: 11px; }

/* Hover overlay on photo */
.binfo-sc-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29,89,153,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  opacity: 0;
  transition: opacity 0.25s;
}
.binfo-space-card:hover .binfo-sc-hover-overlay { opacity: 1; }

/* Body */
.binfo-sc-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Name */
.binfo-sc-name {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
}
.binfo-sc-name a {
  color: #0f1f3d;
  text-decoration: none;
  transition: color 0.2s;
}
.binfo-sc-name a:hover { color: #1D5999; }

/* Metrics */
.binfo-sc-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.binfo-sc-metric {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #1D5999;
}
.binfo-sc-metric i { font-size: 12px; }

/* CTA link */
.binfo-sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #1D5999;
  text-decoration: none;
  border-top: 1px solid #f0f4f8;
  padding-top: 12px;
  margin-top: auto;
  transition: gap 0.2s, color 0.2s;
}
.binfo-sc-link:hover { gap: 10px; color: #31A2E1; }
.binfo-sc-link i { font-size: 11px; transition: transform 0.2s; }
.binfo-sc-link:hover i { transform: translateX(3px); }

/* Responsive */
@media (max-width: 575px) {
  .binfo-spaces-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .binfo-sc-photo { height: 150px; }
}
@media (max-width: 400px) {
  .binfo-spaces-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT FORM — cfu-* (clean old-style with bg image)
   ============================================================ */

/* Section wrapper */
.cfu-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

/* Background image */
.cfu-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.cfu-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* Container sits above overlay */
.cfu-container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
  width: 100%;
}

/* Decorative left column (image shows through) */
.cfu-image-col {
  /* transparent — bg image shows */
}

/* White card */
.cfu-card {
  background: #fff;
  padding: 48px 48px 40px;
  min-height: 100%;
  box-shadow: 0 8px 48px rgba(0,0,0,0.18);
}

/* Title */
.cfu-title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 28px;
  line-height: 1.15;
}

/* Form field */
.cfu-field {
  margin-bottom: 16px;
}

/* Label */
.cfu-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #d97706;
  margin-bottom: 6px;
  font-family: 'Nunito Sans', sans-serif;
}

/* Input + Textarea */
.cfu-input {
  display: block;
  width: 100%;
  background: #f2f2f2;
  border: 1px solid #d8d8d8;
  border-radius: 0;
  padding: 10px 12px;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
}
.cfu-input:focus {
  border-color: #1D5999;
  background: #fff;
  box-shadow: none;
}
.cfu-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit button */
.cfu-submit-row {
  margin-top: 24px;
}
.cfu-submit-btn {
  background: #1a2d4f;
  color: #fff;
  border: none;
  padding: 13px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.cfu-submit-btn:hover { background: #1D5999; }
.cfu-submit-btn i { font-size: 13px; }

/* Contact info row below form */
.cfu-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid #eee;
  padding-top: 16px;
}
.cfu-info-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
}
.cfu-info-item i { color: #1D5999; font-size: 13px; }
a.cfu-info-item:hover { color: #1D5999; }

/* Responsive */
@media (max-width: 991px) {
  .cfu-card {
    padding: 36px 28px 32px;
  }
  .cfu-title { font-size: 34px; }
  .cfu-container { padding-top: 40px; padding-bottom: 40px; }
}
@media (max-width: 575px) {
  .cfu-card { padding: 28px 18px 24px; }
  .cfu-title { font-size: 28px; }
}

/* Contact form — validation states */
.cfu-error {
  display: block;
  font-size: 12px;
  color: #dc2626;
  margin-top: 4px;
  min-height: 16px;
}
.cfu-input-error {
  border-color: #dc2626 !important;
  background: #fff5f5 !important;
}
.cfu-field-error .cfu-label {
  color: #dc2626;
}

/* ============================================================
   CONTACT PAGE — combined layout (cfu-main-section)
   ============================================================ */

/* Main section with bg image */
.cfu-main-section {
  position: relative;
  display: flex;
  align-items: stretch;
}
.cfu-main-section .cfu-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.cfu-main-section .cfu-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,20,40,0.72);
  z-index: 1;
}
.cfu-main-section .cfu-container {
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}

/* ── Left info panel (sits over the dark image overlay) ── */
.cfu-info-panel {
  padding: 48px 40px 48px 0;
  height: 100%;
  color: #fff;
}
.cfu-info-panel-title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}
.cfu-info-divider {
  height: 2px;
  width: 48px;
  background: #31A2E1;
  border-radius: 2px;
  margin-bottom: 24px;
}

/* Info item rows */
.cfu-info-item-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.cfu-info-item-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #31A2E1;
  flex-shrink: 0;
  margin-top: 2px;
}
.cfu-info-item-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3px;
}
.cfu-info-item-val {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
}
.cfu-info-link {
  text-decoration: none;
  transition: color 0.2s;
}
.cfu-info-link:hover { color: #31A2E1; }

/* Social buttons */
.cfu-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s;
}
.cfu-social-btn:hover { background: #1D5999; color: #fff; }

/* Why contact block */
.cfu-why-block {}
.cfu-why-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: 0.2px;
}
.cfu-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cfu-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.cfu-why-list li i {
  color: #22c55e;
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Right white card ── */
.cfu-main-section .cfu-card {
  background: #fff;
  padding: 48px 48px 44px;
  min-height: 100%;
  box-shadow: none;
}
.cfu-main-section .cfu-title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 24px;
}

/* Reassurance + privacy */
.cfu-reassurance {
  font-size: 13px;
  color: #6b7280;
}
.cfu-reassurance strong { color: #333; }
.cfu-privacy {
  font-size: 12px;
  color: #9ca3af;
  margin: 0;
}
.cfu-privacy i { color: #1D5999; }

/* Responsive */
@media (max-width: 991px) {
  .cfu-info-panel {
    padding: 36px 24px;
    background: rgba(10,20,40,0.55);
  }
  .cfu-main-section .cfu-card {
    padding: 36px 28px 32px;
  }
  .cfu-main-section .cfu-title { font-size: 26px; }
}
@media (max-width: 767px) {
  .cfu-info-panel { padding: 28px 18px; }
  .cfu-main-section .cfu-card { padding: 28px 18px 24px; }
  .cfu-main-section .cfu-title { font-size: 22px; }
}

/* Space info strip — Inquire CTA item */
.sinfo-metric-icon-cta {
  background: rgba(255,255,255,0.25) !important;
}
.sinfo-metric-inquire-btn {
  display: inline-block;
  background: #fff;
  color: #1D5999;
  font-size: 13px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 20px;
  text-decoration: none;
  letter-spacing: 0.3px;
  line-height: 1.4;
  transition: background 0.2s, color 0.2s;
}
.sinfo-metric-inquire-btn:hover {
  background: #31A2E1;
  color: #fff;
}
