/**
 * Frontend Styles for MythVortex Real Estate.
 *
 * @package MythVortex\RealEstate
 */

:root {
	--mvre-primary: #3b82f6;
	--mvre-primary-hover: #2563eb;
	--mvre-accent: #f23b70; /* Pinkish/Red look for CTA buttons */
	--mvre-accent-hover: #d92b5c;
	--mvre-text: #475569;
	--mvre-text-light: #94a3b8;
	--mvre-dark: #1e293b;
	--mvre-border: #e2e8f0;
	--mvre-light: #f8fafc;
	--mvre-radius-sm: 4px;
	--mvre-radius: 8px;
	--mvre-radius-lg: 12px;
	--mvre-shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
	--mvre-shadow: 0 4px 12px rgba(0,0,0,0.05);
	--mvre-shadow-lg: 0 10px 25px rgba(0,0,0,0.08);
}

.mvre-container {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--mvre-text);
	line-height: 1.6;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.mvre-container * {
	box-sizing: border-box;
}

/* ==========================================================================
   TOP SEARCH CONTAINER
   ========================================================================== */
.mvre-top-search-container {
	background: #fff;
	border: 1px solid var(--mvre-border);
	border-radius: var(--mvre-radius);
	padding: 15px;
	margin: 30px 0 20px;
	box-shadow: var(--mvre-shadow-sm);
}

.mvre-search-main-row {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	gap: 12px !important;
	flex-wrap: nowrap !important;
	width: 100% !important;
}

.mvre-search-main-row .search-input-wrapper {
	flex: 2 1 auto !important;
	position: relative !important;
	min-width: 180px !important;
	max-width: none !important;
	width: auto !important;
}

.mvre-search-main-row .search-input-wrapper input {
	width: 100% !important;
	display: block !important;
	height: 44px !important;
	padding: 10px 15px 10px 40px !important;
	border: 1px solid var(--mvre-border) !important;
	border-radius: var(--mvre-radius-sm) !important;
	font-size: 0.95rem !important;
	outline: none !important;
	box-sizing: border-box !important;
}

.mvre-search-main-row .search-input-wrapper svg {
	position: absolute !important;
	left: 14px !important;
	top: 14px !important;
	color: var(--mvre-text-light) !important;
	margin: 0 !important;
	padding: 0 !important;
}

.mvre-search-main-row select {
	flex: 1 1 150px !important;
	min-width: 120px !important;
	max-width: 220px !important;
	width: auto !important;
	display: inline-block !important;
	height: 44px !important;
	padding: 0 15px !important;
	border: 1px solid var(--mvre-border) !important;
	border-radius: var(--mvre-radius-sm) !important;
	background: #fff !important;
	font-size: 0.9rem !important;
	color: var(--mvre-text) !important;
	outline: none !important;
	box-sizing: border-box !important;
}

.mvre-btn-icon {
	background: #fff;
	border: 1px solid var(--mvre-border);
	border-radius: var(--mvre-radius-sm);
	height: 44px;
	width: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--mvre-text);
	transition: background 0.2s;
}

.mvre-btn-icon:hover {
	background: var(--mvre-light);
}

.mvre-search-buttons-group {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

.mvre-clean-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 20px;
	border: 1px solid var(--mvre-border);
	border-radius: var(--mvre-radius-sm);
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}

@media (max-width: 768px) {
	.mvre-top-search-container {
		height: auto !important;
		min-height: 0 !important;
	}
	.mvre-search-main-row {
		display: grid !important;
		grid-template-columns: 1fr 1fr !important;
		gap: 12px !important;
		width: 100% !important;
		height: auto !important;
		align-content: start !important;
	}
	.mvre-search-main-row .search-input-wrapper {
		grid-column: span 2 !important;
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
	}
	.mvre-city-dropdown {
		grid-column: span 1 !important;
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
	}
	.mvre-type-dropdown {
		grid-column: span 1 !important;
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
	}
	.mvre-amenities-dropdown {
		grid-column: span 1 !important;
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
	}
	.mvre-dropdown-menu {
		width: 100% !important;
		left: 0 !important;
		right: 0 !important;
		box-sizing: border-box !important;
	}
	.mvre-search-buttons-group {
		grid-column: span 1 !important;
		width: 100% !important;
		height: auto !important;
		display: flex !important;
		gap: 8px !important;
	}
	.mvre-search-submit,
	.mvre-clean-btn {
		flex: 1 1 auto !important;
		width: 100% !important;
		height: 44px !important;
	}
}

.mvre-search-submit {
	background: #001948 !important;
	color: #fff !important;
	border: none !important;
	border-radius: var(--mvre-radius-sm) !important;
	height: 44px;
	padding: 0 25px !important;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: background 0.2s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.mvre-search-submit:hover {
	background: #10366d !important;
}

/* Custom Dropdown styling */
.mvre-custom-dropdown {
	position: relative !important;
	flex: 1 1 150px !important;
	min-width: 120px !important;
	max-width: 220px !important;
}

.mvre-dropdown-trigger {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: 100% !important;
	height: 44px !important;
	padding: 0 15px !important;
	border: 1px solid var(--mvre-border) !important;
	border-radius: var(--mvre-radius-sm) !important;
	background: #fff !important;
	font-size: 0.9rem !important;
	color: var(--mvre-text) !important;
	cursor: pointer !important;
	outline: none !important;
	box-sizing: border-box !important;
	text-align: left !important;
	line-height: 1.5 !important;
	margin: 0 !important;
	font-family: inherit !important;
}

.mvre-dropdown-trigger span {
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.mvre-dropdown-trigger .mvre-arrow-icon {
	color: var(--mvre-text-light) !important;
	flex-shrink: 0 !important;
	margin-left: 8px !important;
	transition: transform 0.2s !important;
}

.mvre-custom-dropdown.open .mvre-dropdown-trigger .mvre-arrow-icon {
	transform: rotate(180deg) !important;
}

.mvre-dropdown-menu {
	display: none !important;
	position: absolute !important;
	top: calc(100% + 5px) !important;
	right: 0 !important;
	left: auto !important;
	width: 480px !important;
	max-height: 250px !important;
	overflow-y: auto !important;
	background: #fff !important;
	border: 1px solid var(--mvre-border) !important;
	border-radius: var(--mvre-radius) !important;
	padding: 10px !important;
	box-shadow: var(--mvre-shadow) !important;
	z-index: 9999 !important;
	scrollbar-width: thin !important;
	scrollbar-color: var(--mvre-border) transparent !important;
}

.mvre-dropdown-menu::-webkit-scrollbar {
	width: 6px !important;
}

.mvre-dropdown-menu::-webkit-scrollbar-track {
	background: transparent !important;
}

.mvre-dropdown-menu::-webkit-scrollbar-thumb {
	background-color: var(--mvre-border) !important;
	border-radius: 10px !important;
}

.mvre-dropdown-menu::-webkit-scrollbar-thumb:hover {
	background-color: var(--mvre-text-light) !important;
}

.mvre-custom-dropdown.open .mvre-dropdown-menu {
	display: block !important;
}

/* Specific menu sizing for city and type custom dropdowns */
.mvre-city-dropdown .mvre-dropdown-menu,
.mvre-type-dropdown .mvre-dropdown-menu {
	width: 100% !important;
	min-width: 185px !important;
	padding: 8px !important;
}

/* Custom dropdown options list */
.mvre-dropdown-options-list {
	display: flex !important;
	flex-direction: column !important;
	gap: 4px !important;
}

.mvre-dropdown-option {
	padding: 8px 12px !important;
	font-size: 0.9rem !important;
	color: var(--mvre-text) !important;
	cursor: pointer !important;
	transition: background 0.15s, color 0.15s !important;
	border-radius: var(--mvre-radius-sm) !important;
	text-align: left !important;
}

.mvre-dropdown-option:hover {
	background: var(--mvre-light) !important;
	color: var(--mvre-primary) !important;
}

.mvre-dropdown-option.active {
	background: var(--mvre-primary) !important;
	color: #fff !important;
	font-weight: 600 !important;
}

.mvre-amenities-checkbox-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
	gap: 12px !important;
	width: 100% !important;
}

.mvre-checkbox-item {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 8px !important;
	cursor: pointer !important;
	font-size: 0.9rem !important;
	color: var(--mvre-text) !important;
	user-select: none !important;
	margin: 0 !important;
	padding: 0 !important;
	width: auto !important;
}

.mvre-checkbox-item input[type="checkbox"] {
	margin: 0 !important;
	width: 16px !important;
	height: 16px !important;
	cursor: pointer !important;
	flex-shrink: 0 !important;
}

/* ==========================================================================
   BREADCRUMBS & PAGE TITLE
   ========================================================================== */
.mvre-breadcrumbs {
	font-size: 0.85rem;
	color: var(--mvre-text-light);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.mvre-breadcrumbs a {
	color: var(--mvre-text-light);
	text-decoration: none;
}

.mvre-breadcrumbs a:hover {
	color: var(--mvre-primary);
}

.mvre-archive-title-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.mvre-archive-title-bar h2 {
	font-size: 1.8rem;
	color: var(--mvre-dark);
	margin: 0;
	font-weight: 700;
}

.mvre-view-toggle {
	display: flex;
	gap: 8px;
}

/* ==========================================================================
   LAYOUT SPLIT
   ========================================================================== */
.mvre-archive-split {
	display: grid;
	grid-template-columns: 2.2fr 1fr;
	gap: 30px;
}

@media (max-width: 991px) {
	.mvre-archive-split {
		grid-template-columns: 1fr;
	}
}

.mvre-results-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	font-size: 0.9rem;
	color: var(--mvre-text);
}

.mvre-results-meta select {
	border: 1px solid var(--mvre-border);
	border-radius: var(--mvre-radius-sm);
	padding: 4px 8px;
	font-size: 0.85rem;
	color: var(--mvre-text);
	background: #fff;
}

/* Property Grid */
.mvre-grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 25px;
	margin-bottom: 40px;
}

@media (min-width: 768px) {
	.mvre-grid-cols-1 { grid-template-columns: 1fr; }
	.mvre-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
	.mvre-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
	.mvre-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Premium Minimal Card Style */
.mvre-card-style_2 {
	border: none !important;
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05) !important;
	border-radius: 12px !important;
}

.mvre-card-style_2 .mvre-card-media {
	border-radius: 12px 12px 0 0 !important;
}

.mvre-card-style_2 .mvre-card-btn-row {
	border-top: 1px solid var(--mvre-border) !important;
	padding-top: 12px !important;
	margin-top: 12px !important;
}

.mvre-card-style_2 .mvre-card-btn {
	border: none !important;
	background: #f1f5f9 !important;
	color: var(--mvre-text) !important;
}

.mvre-card-style_2 .mvre-card-btn:hover {
	background: var(--mvre-primary) !important;
	color: #fff !important;
}

.mvre-card-style_2 .mvre-card-btn-whatsapp {
	background: #e8fbf0 !important;
	color: #25d366 !important;
}

.mvre-card-style_2 .mvre-card-btn-whatsapp:hover {
	background: #25d366 !important;
	color: #fff !important;
}

/* ==========================================================================
   PROPERTY CARD DESIGN
   ========================================================================== */
.mvre-property-card {
	background: #fff;
	border: 1px solid var(--mvre-border);
	border-radius: var(--mvre-radius);
	overflow: hidden;
	box-shadow: var(--mvre-shadow-sm);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.mvre-property-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--mvre-shadow);
}

.mvre-card-media {
	position: relative;
	height: 200px;
	overflow: hidden;
	background: #f1f5f9;
}

.mvre-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.mvre-property-card:hover .mvre-card-media img {
	transform: scale(1.05);
}

/* Badges on image */
.mvre-card-badge-left {
	position: absolute;
	top: 12px;
	left: 12px;
	background: #4ade80; /* Light green outstanding look */
	color: #fff;
	padding: 3px 10px;
	border-radius: var(--mvre-radius-sm);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
}

.mvre-card-badge-right {
	position: absolute;
	top: 12px;
	right: 12px;
	background: rgba(15, 23, 42, 0.7);
	color: #fff;
	padding: 3px 10px;
	border-radius: var(--mvre-radius-sm);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
}

/* Dummy Slider Arrows inside Card Image */
.mvre-card-arrow-left,
.mvre-card-arrow-right {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 0.85rem;
	opacity: 0;
	transition: opacity 0.2s, background 0.2s;
}

.mvre-card-arrow-left { left: 10px; }
.mvre-card-arrow-right { right: 10px; }

.mvre-property-card:hover .mvre-card-arrow-left,
.mvre-property-card:hover .mvre-card-arrow-right {
	opacity: 1;
}

.mvre-card-arrow-left:hover,
.mvre-card-arrow-right:hover {
	background: rgba(255, 255, 255, 0.4);
}

/* Dummy Actions Overlay at Bottom-Right of Image */
.mvre-card-media-actions {
	position: absolute;
	bottom: 10px;
	right: 10px;
	display: flex;
	gap: 6px;
	opacity: 0;
	transition: opacity 0.2s;
}

.mvre-property-card:hover .mvre-card-media-actions {
	opacity: 1;
}

.mvre-card-media-actions span {
	background: rgba(15, 23, 42, 0.6);
	color: #fff;
	width: 24px;
	height: 24px;
	border-radius: var(--mvre-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	cursor: pointer;
	transition: background 0.2s;
}

.mvre-card-media-actions span:hover {
	background: var(--mvre-primary);
}

/* Card Content details */
.mvre-card-details {
	padding: 16px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.mvre-card-typologies {
	font-size: 0.75rem;
	color: var(--mvre-text-light);
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 5px;
}

.mvre-card-price-block {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 10px;
}

.mvre-card-main-price {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--mvre-dark);
}

.mvre-card-sub-price {
	font-size: 0.8rem;
	color: var(--mvre-text-light);
}

.mvre-card-title {
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 10px;
}

.mvre-card-title a {
	color: var(--mvre-dark);
	text-decoration: none;
	transition: color 0.2s;
}

.mvre-card-title a:hover {
	color: var(--mvre-primary);
}

.mvre-card-address {
	font-size: 0.8rem;
	color: var(--mvre-text-light);
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 15px;
}

.mvre-card-specs-row {
	display: flex;
	gap: 15px;
	font-size: 0.8rem;
	color: var(--mvre-text);
	border-bottom: 1px solid var(--mvre-border);
	padding-bottom: 12px;
	margin-bottom: 12px;
}

.mvre-card-specs-row span {
	display: flex;
	align-items: center;
	gap: 5px;
}

.mvre-card-specs-row svg {
	color: var(--mvre-text-light);
}

/* Card Buttons Row */
.mvre-card-btn-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-top: auto;
}

.mvre-card-btn {
	border: 1px solid #14b8a6; /* Light cyan/teal border */
	background: #fff;
	color: #14b8a6;
	border-radius: var(--mvre-radius-sm);
	font-size: 0.75rem;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.2s, color 0.2s;
}

.mvre-card-btn:hover {
	background: #14b8a6;
	color: #fff;
}

.mvre-card-btn-whatsapp {
	border-color: #25d366;
	color: #25d366;
}

.mvre-card-btn-whatsapp:hover {
	background: #25d366;
	color: #fff;
}

.mvre-card-btn-view {
	border-color: #001948 !important;
	background: #001948 !important;
	color: #fff !important;
}

.mvre-card-btn-view:hover {
	border-color: #10366d !important;
	background: #10366d !important;
	color: #fff !important;
}

.mvre-card-style_2 .mvre-card-btn-view {
	background: #001948 !important;
	color: #fff !important;
	border: none !important;
}

.mvre-card-style_2 .mvre-card-btn-view:hover {
	background: #10366d !important;
	color: #fff !important;
}

/* ==========================================================================
   SIDEBAR & WIDGET DESIGN
   ========================================================================== */
.mvre-sidebar {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.mvre-sidebar-widget {
	background: #fff;
	border: 1px solid var(--mvre-border);
	border-radius: var(--mvre-radius);
	padding: 24px;
	box-shadow: var(--mvre-shadow-sm);
}

.mvre-widget-title {
	font-size: 1.2rem;
	color: var(--mvre-dark);
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 20px;
	border-bottom: 2px solid var(--mvre-light);
	padding-bottom: 10px;
}

.mvre-widget-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mvre-widget-list li {
	margin-bottom: 12px;
}

.mvre-widget-list li:last-child {
	margin-bottom: 0;
}

.mvre-widget-link {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: #0ea5e9; /* Light blue links */
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.2s, transform 0.2s;
}

.mvre-widget-link:hover {
	color: #0284c7;
	transform: translateX(4px);
}

.mvre-widget-link svg {
	font-size: 0.75rem;
	color: #0ea5e9;
	transition: transform 0.2s;
}

/* Taxonomy List Replicated Design */
.mvre-taxonomy-list-shared {
	background: #fff !important;
	border: 1px solid var(--mvre-border) !important;
	border-radius: var(--mvre-radius) !important;
	padding: 24px !important;
	box-shadow: var(--mvre-shadow-sm) !important;
}

.mvre-taxonomy-list-shared .mvre-widget-title {
	border-bottom: none !important;
	padding-bottom: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 20px !important;
	font-size: 1.3rem !important;
	font-weight: 600 !important;
	color: var(--mvre-dark) !important;
}

.mvre-taxonomy-list-shared .mvre-widget-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.mvre-taxonomy-list-shared .mvre-widget-list li {
	margin-bottom: 14px !important;
}

.mvre-taxonomy-list-shared .mvre-widget-list li:last-child {
	margin-bottom: 0 !important;
}

.mvre-taxonomy-list-shared .mvre-widget-link {
	display: inline-flex !important;
	align-items: center !important;
	gap: 10px !important;
	text-decoration: none !important;
	color: #0ea5e9 !important;
	font-weight: 500 !important;
	font-size: 0.95rem !important;
	transition: color 0.2s, transform 0.2s !important;
}

.mvre-taxonomy-list-shared .mvre-widget-link:hover {
	color: #0284c7 !important;
	transform: translateX(3px) !important;
}

.mvre-taxonomy-list-shared .mvre-widget-link svg {
	color: #0ea5e9 !important;
	flex-shrink: 0 !important;
}

/* Empty listings */
.mvre-no-properties {
	grid-column: 1 / -1;
	text-align: center;
	padding: 50px 20px;
	border: 1px dashed var(--mvre-border);
	border-radius: var(--mvre-radius);
	background: var(--mvre-light);
}

/* Pagination */
.mvre-pagination {
	display: flex;
	gap: 8px;
	margin-top: 20px;
}

.mvre-pagination .page-numbers {
	display: inline-flex;
	height: 36px;
	width: 36px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--mvre-border);
	border-radius: var(--mvre-radius-sm);
	color: var(--mvre-text);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.85rem;
	transition: background 0.2s, color 0.2s;
}

.mvre-pagination .page-numbers.current,
.mvre-pagination .page-numbers:hover {
	background: var(--mvre-primary);
	color: #fff;
	border-color: var(--mvre-primary);
}

/* About Us Styling */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

.mvre-about-us-container {
	margin: 60px auto;
	max-width: 1200px;
	padding: 0 20px;
	font-family: inherit;
	box-sizing: border-box;
}

/* Section 1: Hero Header */
.mvre-about-us-header {
	text-align: center;
	margin-bottom: 48px;
}
.mvre-about-us-title {
	font-size: 42px;
	font-weight: 700;
	color: #101828;
	margin: 0 0 12px 0;
	line-height: 1.2;
}
.mvre-about-us-subtitle {
	font-size: 18px;
	color: #667085;
	margin: 0;
}

/* Section 2: Staggered Gallery */
.mvre-about-gallery {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	align-items: center;
	margin-bottom: 80px;
}
.mvre-about-gallery-item {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.05);
	transition: transform 0.3s;
}
.mvre-about-gallery-item:hover {
	transform: translateY(-5px);
}
.mvre-about-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* Staggered Heights */
.mvre-about-gallery-item.height-tall {
	height: 320px;
}
.mvre-about-gallery-item.height-medium {
	height: 260px;
}
.mvre-about-gallery-item.height-tallest {
	height: 360px;
}

/* Section 3: What We Do & Stats */
.mvre-about-what-we-do-sec {
	margin-bottom: 80px;
}
.mvre-about-what-we-do-lbl {
	font-size: 14px;
	font-weight: 600;
	color: #667085;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
	display: block;
}
.mvre-about-what-we-do-heading {
	font-size: 32px;
	font-weight: 600;
	line-height: 1.4;
	color: #101828;
	margin: 0 0 48px 0;
	max-width: 1000px;
}
.mvre-about-what-we-do-heading + .mvre-about-what-we-do-desc-para {
	margin-top: -24px;
}
.mvre-about-what-we-do-desc-para {
	font-size: 18px;
	line-height: 1.6;
	color: #475467;
	margin: 0 0 48px 0;
	max-width: 1000px;
}
.mvre-about-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.mvre-about-stat-card {
	background: #F9FAFB;
	border: 1px solid #EAECF0;
	border-radius: 16px;
	padding: 32px 24px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.01);
	transition: transform 0.3s, border-color 0.3s;
}
.mvre-about-stat-card:hover {
	transform: translateY(-4px);
	border-color: #D0D5DD;
}
.mvre-about-stat-num {
	font-size: 36px;
	font-weight: 700;
	color: #101828;
	margin-bottom: 16px;
}
.mvre-about-stat-desc {
	font-size: 14px;
	color: #475467;
	line-height: 1.6;
	margin: 0;
}

/* Section 4: Mission Slider / Banner Block */
.mvre-about-mission-banner {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	padding: 80px 48px;
	margin-bottom: 80px;
	min-height: 400px;
	display: flex;
	align-items: flex-end;
}
.mvre-about-mission-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
	z-index: 1;
}
.mvre-about-mission-content-wrapper {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 40px;
}
.mvre-about-mission-text {
	max-width: 600px;
}
.mvre-about-mission-title {
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 12px 0;
}
.mvre-about-mission-desc {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	line-height: 1.6;
}
.mvre-about-mission-nav {
	display: flex;
	gap: 16px;
	flex-shrink: 0;
}
.mvre-about-mission-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	cursor: pointer;
	background: transparent;
	transition: background 0.3s, border-color 0.3s;
}
.mvre-about-mission-btn:hover {
	background: rgba(255,255,255,0.1);
	border-color: #ffffff;
}
.mvre-about-mission-btn.btn-active {
	background: #ffffff;
	color: #101828;
	border-color: #ffffff;
}

/* Section 5: CEO / Founder Quote Block */
.mvre-about-ceo-section {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 80px;
}
.mvre-about-ceo-img-wrapper {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 30px rgba(0,0,0,0.06);
	height: 380px;
}
.mvre-about-ceo-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.mvre-about-ceo-quote-box {
	display: flex;
	flex-direction: column;
}
.mvre-about-ceo-quote {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6;
	color: #1D2939;
	margin: 0 0 24px 0;
}
.mvre-about-ceo-name {
	font-size: 18px;
	font-weight: 700;
	color: #101828;
	margin: 0 0 4px 0;
}
.mvre-about-ceo-role {
	font-size: 14px;
	color: #667085;
	margin: 0 0 16px 0;
}
.mvre-about-ceo-signature {
	font-family: 'Great Vibes', 'Playball', 'Georgia', cursive;
	font-size: 32px;
	color: #475467;
	margin: 0;
}

/* Section 6: Trusted Real Estate Agent */
.mvre-about-agents-section {
	margin-bottom: 80px;
}
.mvre-about-agents-title {
	font-size: 32px;
	font-weight: 700;
	color: #101828;
	margin: 0 0 40px 0;
	text-align: center;
}
.mvre-about-agents-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.mvre-about-agent-card {
	background: #ffffff;
	border: 1px solid #EAECF0;
	border-radius: 16px;
	overflow: hidden;
	padding: 24px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.02);
	transition: transform 0.3s, box-shadow 0.3s;
}
.mvre-about-agent-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.mvre-about-agent-img-wrapper {
	border-radius: 12px;
	overflow: hidden;
	height: 320px;
	margin-bottom: 20px;
}
.mvre-about-agent-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.mvre-about-agent-name {
	font-size: 20px;
	font-weight: 700;
	color: #101828;
	margin: 0 0 4px 0;
}
.mvre-about-agent-role {
	font-size: 14px;
	color: #667085;
	margin: 0 0 16px 0;
}
.mvre-about-agent-socials {
	display: flex;
	gap: 12px;
}
.mvre-about-agent-social-link {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid #D0D5DD;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #475467;
	transition: background 0.3s, color 0.3s, border-color 0.3s;
	text-decoration: none;
}
.mvre-about-agent-social-link:hover {
	background: #F9F5FF;
	color: #7F56D9;
	border-color: #D6BBFB;
}
.mvre-about-agent-social-link svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

/* Section 7: FAQ Block */
.mvre-about-faq-section {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 60px;
	align-items: start;
}
.mvre-about-faq-left {
	display: flex;
	flex-direction: column;
}
.mvre-about-faq-title {
	font-size: 32px;
	font-weight: 700;
	color: #101828;
	margin: 0 0 12px 0;
}
.mvre-about-faq-subtitle {
	font-size: 16px;
	color: #667085;
	line-height: 1.6;
	margin: 0 0 40px 0;
}
.mvre-about-faq-question-card {
	background: #F9FAFB;
	border: 1px solid #EAECF0;
	border-radius: 16px;
	padding: 32px 24px;
}
.mvre-about-faq-question-lbl {
	font-size: 18px;
	font-weight: 700;
	color: #101828;
	margin: 0 0 8px 0;
}
.mvre-about-faq-question-desc {
	font-size: 14px;
	color: #667085;
	margin: 0 0 20px 0;
	line-height: 1.5;
}
.mvre-about-faq-btn {
	background: #101828;
	color: #ffffff;
	border-radius: 30px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	border: 1px solid #101828;
	transition: background 0.3s, border-color 0.3s;
}
.mvre-about-faq-btn:hover {
	background: #1D2939;
	border-color: #1D2939;
}
.mvre-about-faq-right {
	display: flex;
	flex-direction: column;
}
.mvre-faq-accordion-item {
	border-bottom: 1px solid #EAECF0;
	padding: 24px 0;
}
.mvre-faq-accordion-item:first-child {
	padding-top: 0;
}
.mvre-faq-accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	user-select: none;
}
.mvre-faq-accordion-header h5 {
	font-size: 18px;
	font-weight: 600;
	color: #101828;
	margin: 0;
}
.mvre-faq-accordion-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1px solid #D0D5DD;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #667085;
	transition: transform 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}
.mvre-faq-accordion-item.active .mvre-faq-accordion-icon {
	transform: rotate(45deg);
	background: #F9F5FF;
	color: #7F56D9;
	border-color: #D6BBFB;
}
.mvre-faq-accordion-content {
	display: none;
	padding-top: 16px;
}
.mvre-faq-accordion-content p {
	font-size: 15px;
	color: #667085;
	line-height: 1.6;
	margin: 0;
}

/* ==========================================================================
   MOBILE & RESPONSIVE LAYOUTS FOR ABOUT US
   ========================================================================== */
@media (max-width: 991px) {
	.mvre-about-gallery {
		grid-template-columns: repeat(3, 1fr);
	}
	.mvre-about-gallery-item.height-tall,
	.mvre-about-gallery-item.height-medium,
	.mvre-about-gallery-item.height-tallest {
		height: 240px;
	}
	.mvre-about-gallery-item:nth-child(4),
	.mvre-about-gallery-item:nth-child(5) {
		display: none;
	}
	.mvre-about-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.mvre-about-ceo-section {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.mvre-about-ceo-img-wrapper {
		height: 420px;
		max-width: 480px;
		margin: 0 auto;
	}
	.mvre-about-agents-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.mvre-about-faq-section {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.mvre-about-faq-left {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.mvre-about-us-title {
		font-size: 32px;
	}
	.mvre-about-us-subtitle {
		font-size: 16px;
	}
	.mvre-about-gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.mvre-about-gallery-item.height-tall,
	.mvre-about-gallery-item.height-medium,
	.mvre-about-gallery-item.height-tallest {
		height: 180px;
	}
	.mvre-about-gallery-item:nth-child(3) {
		display: none;
	}
	.mvre-about-what-we-do-heading {
		font-size: 24px;
		margin-bottom: 32px;
	}
	.mvre-about-what-we-do-heading + .mvre-about-what-we-do-desc-para {
		margin-top: -16px;
	}
	.mvre-about-what-we-do-desc-para {
		font-size: 16px;
		margin-bottom: 32px;
	}
	.mvre-about-mission-banner {
		padding: 48px 24px;
		min-height: 350px;
	}
	.mvre-about-mission-content-wrapper {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}
	.mvre-about-agents-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

@media (max-width: 480px) {
	.mvre-about-stats-grid {
		grid-template-columns: 1fr;
	}
	.mvre-about-stat-card {
		padding: 24px;
	}
}

/* Contact Us Styling */
.mvre-contact-us-container {
	margin: 40px auto !important;
	max-width: 1200px !important;
	padding: 0 15px !important;
	font-family: inherit !important;
	display: block !important;
	box-sizing: border-box !important;
}

.mvre-contact-grid {
	display: grid !important;
	grid-template-columns: 1fr 1.15fr !important;
	gap: 48px !important;
	align-items: stretch !important;
}

@media (max-width: 768px) {
	.mvre-contact-grid {
		grid-template-columns: 1fr !important;
		gap: 32px !important;
	}
	.mvre-contact-info-col {
		height: auto !important;
	}
	.mvre-contact-media-box {
		height: 300px !important;
		flex: none !important;
	}
}

.mvre-contact-info-col {
	display: flex !important;
	flex-direction: column !important;
	gap: 24px !important;
	height: 100% !important;
}

.mvre-contact-media-box {
	border-radius: 16px !important;
	overflow: hidden !important;
	flex: 1 1 auto !important;
	height: auto !important;
	min-height: 250px !important;
	box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
	display: block !important;
}

.mvre-contact-media-img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block !important;
}

.mvre-contact-details-card {
	border: 1px solid #EAECF0 !important;
	border-radius: 16px !important;
	padding: 24px 32px !important;
	background: #ffffff !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 24px !important;
	box-shadow: 0 4px 20px rgba(0,0,0,0.02) !important;
	box-sizing: border-box !important;
}

.mvre-contact-detail-item {
	display: flex !important;
	align-items: flex-start !important;
	gap: 16px !important;
	box-sizing: border-box !important;
}

.mvre-detail-icon-circle {
	width: 48px !important;
	height: 48px !important;
	background: #F9F5FF;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: #7F56D9;
	font-size: 20px !important;
	flex-shrink: 0 !important;
}

.mvre-detail-icon-circle svg {
	width: 20px !important;
	height: 20px !important;
	color: #7F56D9;
	stroke: #7F56D9;
}

.mvre-detail-content {
	display: flex !important;
	flex-direction: column !important;
	gap: 4px !important;
	align-items: flex-start !important;
	text-align: left !important;
}

.mvre-contact-details-card .mvre-detail-label {
	font-weight: 600 !important;
	font-size: 16px !important;
	color: #101828 !important;
	margin: 0 !important;
	text-align: left !important;
}

.mvre-contact-details-card .mvre-detail-val {
	font-size: 16px !important;
	color: #475467 !important;
	text-decoration: none !important;
	word-break: normal !important;
	overflow-wrap: break-word !important;
	word-wrap: break-word !important;
	margin: 0 !important;
	text-align: left !important;
}

.mvre-contact-details-card .mvre-detail-val:hover {
	color: #7F56D9 !important;
}

/* Right Column: Form Card */
.mvre-contact-form-col {
	display: flex !important;
	flex-direction: column !important;
	height: 100% !important;
	align-self: stretch !important;
}

.mvre-contact-form-card {
	border: 1px solid #EAECF0 !important;
	border-radius: 16px !important;
	padding: 48px !important;
	background: #ffffff !important;
	box-shadow: 0 4px 20px rgba(0,0,0,0.02) !important;
	display: flex !important;
	flex-direction: column !important;
	box-sizing: border-box !important;
	flex: 1 1 auto !important;
	height: 100% !important;
}

@media (max-width: 480px) {
	.mvre-contact-form-card {
		padding: 24px !important;
	}
}

.mvre-form-title {
	font-size: 32px !important;
	font-weight: 700 !important;
	color: #101828 !important;
	margin: 0 0 8px 0 !important;
	line-height: 1.2 !important;
}

.mvre-form-subtitle {
	font-size: 16px !important;
	color: #475467 !important;
	margin: 0 0 32px 0 !important;
	line-height: 1.5 !important;
}

.mvre-contact-form-layout {
	display: flex !important;
	flex-direction: column !important;
	gap: 20px !important;
}

.mvre-form-group {
	display: flex !important;
	flex-direction: column !important;
	gap: 6px !important;
}

.mvre-form-label {
	font-weight: 500 !important;
	font-size: 14px !important;
	color: #344054 !important;
	display: block !important;
	margin: 0 0 4px 0 !important;
	text-align: left !important;
}

.mvre-form-input {
	border: 1px solid #D0D5DD !important;
	border-radius: 10px !important;
	padding: 10px 14px !important;
	font-size: 16px !important;
	color: #101828 !important;
	background: #ffffff !important;
	width: 100% !important;
	box-sizing: border-box !important;
	transition: border-color 0.2s, box-shadow 0.2s !important;
	height: auto !important;
	line-height: normal !important;
	box-shadow: none !important;
}

.mvre-form-input:focus {
	border-color: #D6BBFB !important;
	box-shadow: 0 0 0 4px #F4EBFF !important;
	outline: none !important;
}

.mvre-form-textarea {
	border: 1px solid #D0D5DD !important;
	border-radius: 10px !important;
	padding: 12px 14px !important;
	font-size: 16px !important;
	color: #101828 !important;
	background: #ffffff !important;
	width: 100% !important;
	box-sizing: border-box !important;
	min-height: 120px !important;
	resize: vertical !important;
	transition: border-color 0.2s, box-shadow 0.2s !important;
	height: auto !important;
	line-height: normal !important;
	box-shadow: none !important;
}

.mvre-form-textarea:focus {
	border-color: #D6BBFB !important;
	box-shadow: 0 0 0 4px #F4EBFF !important;
	outline: none !important;
}

/* Phone Input Wrapper */
.mvre-phone-input-wrapper {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	border: 1px solid #D0D5DD !important;
	border-radius: 10px !important;
	overflow: hidden !important;
	background: #ffffff !important;
	transition: border-color 0.2s, box-shadow 0.2s !important;
	box-sizing: border-box !important;
	width: 100% !important;
}

.mvre-phone-input-wrapper:focus-within {
	border-color: #D6BBFB !important;
	box-shadow: 0 0 0 4px #F4EBFF !important;
}

.mvre-phone-country-select {
	border: none !important;
	border-right: 1px solid #D0D5DD !important;
	background: #ffffff !important;
	padding: 10px 16px !important;
	font-size: 16px !important;
	color: #101828 !important;
	outline: none !important;
	cursor: pointer !important;
	box-sizing: border-box !important;
	width: 130px !important;
	min-width: 130px !important;
	max-width: 130px !important;
	height: 100% !important;
	margin: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	appearance: auto !important;
	-webkit-appearance: auto !important;
}

.mvre-phone-number-field {
	border: none !important;
	padding: 10px 14px !important;
	font-size: 16px !important;
	color: #101828 !important;
	flex-grow: 1 !important;
	width: 10% !important;
	outline: none !important;
	background: transparent !important;
	box-shadow: none !important;
	box-sizing: border-box !important;
	margin: 0 !important;
	height: auto !important;
}

/* Checkbox */
.mvre-form-checkbox-wrapper {
	display: flex !important;
	align-items: flex-start !important;
	gap: 12px !important;
	margin-top: 8px !important;
}

.mvre-form-checkbox-wrapper input[type="checkbox"] {
	width: 20px !important;
	height: 20px !important;
	border: 1px solid #D0D5DD !important;
	border-radius: 6px !important;
	cursor: pointer !important;
	flex-shrink: 0 !important;
	outline: none !important;
	accent-color: #7F56D9 !important;
	margin: 2px 0 0 0 !important;
	display: inline-block !important;
	box-shadow: none !important;
}

.mvre-form-checkbox-wrapper label {
	font-size: 16px !important;
	color: #475467 !important;
	line-height: 1.4 !important;
	cursor: pointer !important;
	margin: 0 !important;
	display: inline-block !important;
	text-align: left !important;
}

.mvre-policy-link {
	color: #475467 !important;
	text-decoration: underline !important;
	font-weight: 500 !important;
}

.mvre-policy-link:hover {
	color: #7F56D9 !important;
}

/* Button */
.mvre-btn-contact-submit {
	background-color: #7F56D9;
	color: #ffffff;
	border-radius: 10px !important;
	padding: 12px 20px !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	text-align: center !important;
	border: 1px solid #7F56D9;
	transition: background 0.2s, border-color 0.2s, box-shadow 0.2s !important;
	width: 100% !important;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05) !important;
	margin-top: 10px !important;
	display: block !important;
	text-transform: none !important;
	height: auto !important;
	line-height: normal !important;
}

.mvre-btn-contact-submit:hover {
	background-color: #6941C6;
	border-color: #6941C6;
}

.mvre-btn-contact-submit:focus {
	box-shadow: 0 0 0 4px #F4EBFF, 0 1px 2px rgba(16, 24, 40, 0.05) !important;
	outline: none !important;
}

/* ==========================================================================
   APARTMENT CONFIGURATION & DYNAMIC PRICE DETAILS STYLE
   ========================================================================== */
.mvre-dynamic-price-details {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 15px;
	padding: 16px;
	background: var(--mvre-light);
	border-radius: var(--mvre-radius);
	border: 1px solid var(--mvre-border);
}
.mvre-price-detail-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 8px;
	border-bottom: 1px dashed var(--mvre-border);
}
.mvre-price-detail-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.mvre-price-detail-label {
	font-weight: 600;
	font-size: 15px;
	color: var(--mvre-dark);
}
.mvre-price-detail-val {
	font-weight: 700;
	font-size: 16px;
	color: var(--mvre-primary);
}

.mvre-apartment-configs-block {
	background: #ffffff;
	border: 1px solid var(--mvre-border);
	border-radius: var(--mvre-radius-lg);
	padding: 28px;
	box-shadow: var(--mvre-shadow);
	margin-bottom: 30px;
}
.mvre-sub-block-title {
	font-size: 18px;
	margin-top: 0;
	border-bottom: 2px solid var(--mvre-light);
	padding-bottom: 8px;
}
.mvre-apartment-configs-wrapper table.mvre-details-table {
	width: 100%;
	margin-bottom: 20px;
}
.mvre-apartment-configs-wrapper table.mvre-details-table td {
	border-bottom: 1px solid var(--mvre-border);
	color: var(--mvre-text);
	font-size: 15px;
}
.mvre-apartment-configs-wrapper table.mvre-details-table tr:last-child td {
	border-bottom: none;
}
.mvre-apartment-highlights-wrapper .mvre-amenities-checklist {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
.mvre-apartment-highlights-wrapper .mvre-amenity-item {
	font-size: 15px;
	color: var(--mvre-text);
}
@media (max-width: 768px) {
	.mvre-apartment-highlights-wrapper .mvre-amenities-checklist {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   PROPERTY GALLERY GRID & LIGHTBOX STYLES
   ========================================================================== */
.mvre-gallery-grid-wrapper {
	position: relative;
	width: 100%;
}
.mvre-gallery-grid {
	display: grid;
	gap: 12px;
	width: 100%;
	height: 480px;
	overflow: hidden;
}
.mvre-gallery-grid-item {
	position: relative;
	cursor: pointer;
	overflow: hidden;
	height: 100%;
	width: 100%;
}
.mvre-gallery-grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease, filter 0.3s ease;
	border: none;
}
.mvre-gallery-grid-item:hover img {
	transform: scale(1.03);
	filter: brightness(0.9);
}

/* Layout for 3+ images */
.mvre-gallery-layout-3plus {
	grid-template-columns: 2fr 1fr;
	grid-template-rows: repeat(2, 1fr);
}
.mvre-gallery-layout-3plus .mvre-gallery-grid-main {
	grid-column: 1;
	grid-row: 1 / span 2;
}
.mvre-gallery-layout-3plus .mvre-gallery-grid-top {
	grid-column: 2;
	grid-row: 1;
}
.mvre-gallery-layout-3plus .mvre-gallery-grid-bottom {
	grid-column: 2;
	grid-row: 2;
}

/* Layout for 2 images */
.mvre-gallery-layout-2 {
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr;
}

/* Layout for 1 image */
.mvre-gallery-layout-1 {
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
}

/* Remaining photos badge */
.mvre-gallery-more-badge {
	position: absolute;
	bottom: 15px;
	right: 15px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	color: #0f172a;
	padding: 8px 18px;
	border-radius: 30px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 5;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	user-select: none;
}
.mvre-gallery-more-badge:hover {
	background: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.mvre-gallery-more-badge i {
	font-size: 1rem;
	color: #3b82f6;
}

/* Responsive Grid styling */
@media (max-width: 767px) {
	.mvre-gallery-grid {
		height: 360px !important;
	}
	/* 3+ images layout */
	.mvre-gallery-layout-3plus {
		grid-template-columns: 1fr 1fr !important;
		grid-template-rows: 2fr 1fr !important;
	}
	.mvre-gallery-layout-3plus .mvre-gallery-grid-main {
		grid-column: 1 / span 2 !important;
		grid-row: 1 !important;
	}
	.mvre-gallery-layout-3plus .mvre-gallery-grid-top {
		grid-column: 1 !important;
		grid-row: 2 !important;
		display: block !important;
	}
	.mvre-gallery-layout-3plus .mvre-gallery-grid-bottom {
		grid-column: 2 !important;
		grid-row: 2 !important;
		display: block !important;
	}
	/* 2 images layout */
	.mvre-gallery-layout-2 {
		grid-template-columns: 1fr 1fr !important;
		grid-template-rows: 1fr !important;
	}
	.mvre-gallery-layout-2 .mvre-gallery-grid-item {
		display: block !important;
	}
	/* 1 image layout */
	.mvre-gallery-layout-1 {
		grid-template-columns: 1fr !important;
		grid-template-rows: 1fr !important;
	}
}

/* Lightbox Overlay */
.mvre-lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 23, 42, 0.95);
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
}
.mvre-lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: #fff;
	font-size: 1.5rem;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}
.mvre-lightbox-close:hover {
	background: rgba(255, 255, 255, 0.2);
}
.mvre-lightbox-prev,
.mvre-lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: #fff;
	font-size: 1.5rem;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, transform 0.2s;
}
.mvre-lightbox-prev:hover,
.mvre-lightbox-next:hover {
	background: rgba(255, 255, 255, 0.2);
}
.mvre-lightbox-prev {
	left: 20px;
}
.mvre-lightbox-next {
	right: 20px;
}
.mvre-lightbox-img-wrapper {
	max-width: 85%;
	max-height: 80%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mvre-lightbox-img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	user-select: none;
}
.mvre-lightbox-counter {
	position: absolute;
	bottom: 20px;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
	font-size: 0.95rem;
	background: rgba(0, 0, 0, 0.4);
	padding: 6px 16px;
	border-radius: 20px;
}

/* ==========================================================================
   6. PREMIUM STYLING FOR DETAILS TABLES
   ========================================================================== */
.mvre-details-table {
	width: 100% !important;
	border-collapse: separate !important;
	border-spacing: 0 10px !important;
	margin: 8px 0 !important;
}
.mvre-details-table tr {
	background: #f8fafc !important;
	border-radius: 8px !important;
	transition: all 0.2s ease-in-out !important;
}
.mvre-details-table tr:hover {
	background: #f1f5f9 !important;
	transform: translateX(4px);
}
.mvre-details-table td {
	padding: 12px 18px !important;
	font-size: 14px !important;
	border: none !important;
}
.mvre-details-table td:first-child {
	border-top-left-radius: 8px !important;
	border-bottom-left-radius: 8px !important;
	border-left: 4px solid var(--mvre-primary, #3b82f6) !important;
}
.mvre-details-table td:last-child {
	border-top-right-radius: 8px !important;
	border-bottom-right-radius: 8px !important;
}
.mvre-detail-label {
	font-weight: 600 !important;
	color: #64748b !important;
}
.mvre-detail-val {
	text-align: right !important;
	font-weight: 700 !important;
	color: #0f172a !important;
}

/* ==========================================================================
   7. BLURRED FLOOR PLAN AND LOCK OVERLAY
   ========================================================================== */
.mvre-floorplan-img-wrapper {
	position: relative !important;
	overflow: hidden !important;
	border-radius: 12px !important;
	border: 1px solid #e2e8f0 !important;
	width: 100% !important;
	background: #0f172a !important;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}
.mvre-blurred-container {
	position: relative !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 250px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}
.mvre-blurred-img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	filter: blur(10px) !important;
	transform: scale(1.1) !important; /* Prevents white bleed edges */
	opacity: 0.6 !important;
	transition: filter 0.3s ease !important;
}
.mvre-lock-overlay {
	position: absolute !important;
	inset: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	align-items: center !important;
	padding: 24px !important;
	text-align: center !important;
	z-index: 2 !important;
	background: rgba(15, 23, 42, 0.5) !important;
	backdrop-filter: blur(4px) !important;
	-webkit-backdrop-filter: blur(4px) !important;
}
.mvre-lock-icon {
	width: 48px !important;
	height: 48px !important;
	background: rgba(234, 179, 8, 0.2) !important;
	border: 1.5px solid rgba(234, 179, 8, 0.4) !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: #eab308 !important;
	margin-bottom: 14px !important;
	box-shadow: 0 4px 12px rgba(234, 179, 8, 0.15) !important;
	animation: mvre-pulse 2s infinite ease-in-out !important;
}
@keyframes mvre-pulse {
	0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.4); }
	70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(234, 179, 8, 0); }
	100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(234, 179, 8, 0); }
}
.mvre-lock-title {
	color: #ffffff !important;
	font-size: 1.15rem !important;
	font-weight: 700 !important;
	margin: 0 0 6px 0 !important;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}
.mvre-lock-text {
	color: #cbd5e1 !important;
	font-size: 0.85rem !important;
	margin: 0 0 20px 0 !important;
	max-width: 280px !important;
	line-height: 1.4 !important;
}
.mvre-lock-buttons {
	display: flex !important;
	flex-direction: column !important;
	gap: 12px !important;
	width: 100% !important;
	max-width: 250px !important;
}
.mvre-lock-btn {
	background: #ffffff !important;
	color: #0f172a !important;
	border: 1px solid #e2e8f0 !important;
	padding: 10px 16px !important;
	border-radius: 8px !important;
	font-weight: 600 !important;
	font-size: 0.85rem !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
}
.mvre-lock-btn:hover {
	background: #f8fafc !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}
.mvre-btn-brochure {
	background: var(--mvre-primary, #3b82f6) !important;
	color: #ffffff !important;
	border: none !important;
}
.mvre-btn-brochure:hover {
	background: #2563eb !important;
}
.mvre-btn-svg {
	width: 15px !important;
	height: 15px !important;
	stroke: currentColor !important;
	fill: none !important;
}

/* ==========================================================================
   8. PREMIUM MODAL DIALOG STYLE
   ========================================================================== */
.mvre-modal-overlay {
	position: fixed !important;
	inset: 0 !important;
	background: rgba(15, 23, 42, 0.6) !important;
	backdrop-filter: blur(8px) !important;
	-webkit-backdrop-filter: blur(8px) !important;
	z-index: 999999 !important;
	display: none !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 20px !important;
}
.mvre-modal-overlay.active {
	display: flex !important;
}
.mvre-modal-container {
	background: #ffffff !important;
	width: 100% !important;
	max-width: 450px !important;
	border-radius: 16px !important;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
	padding: 32px !important;
	position: relative !important;
	border: 1px solid #f1f5f9 !important;
	animation: mvre-scale-in 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
@keyframes mvre-scale-in {
	from { transform: scale(0.95); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}
.mvre-modal-close {
	position: absolute !important;
	top: 18px !important;
	right: 18px !important;
	background: #f1f5f9 !important;
	border: none !important;
	font-size: 20px !important;
	color: #64748b !important;
	cursor: pointer !important;
	width: 32px !important;
	height: 32px !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: all 0.2s ease !important;
}
.mvre-modal-close:hover {
	background: #e2e8f0 !important;
	color: #0f172a !important;
}
.mvre-modal-header {
	text-align: center !important;
	margin-bottom: 24px !important;
}
.mvre-modal-badge {
	display: inline-flex !important;
	align-items: center !important;
	background: #eff6ff !important;
	color: #1d4ed8 !important;
	padding: 4px 12px !important;
	border-radius: 9999px !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	margin-bottom: 12px !important;
	border: 1px solid #dbeafe !important;
	text-transform: uppercase !important;
	letter-spacing: 0.05em !important;
}
.mvre-modal-title {
	font-size: 1.35rem !important;
	font-weight: 800 !important;
	color: #0f172a !important;
	margin: 0 0 6px 0 !important;
}
.mvre-modal-subtitle {
	font-size: 0.85rem !important;
	color: #64748b !important;
	margin: 0 !important;
}
.mvre-form-group {
	margin-bottom: 18px !important;
}
.mvre-form-group label {
	display: block !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	color: #475569 !important;
	margin-bottom: 6px !important;
	text-transform: uppercase !important;
	letter-spacing: 0.025em !important;
}
.mvre-input-icon-wrapper {
	position: relative !important;
	display: flex !important;
	align-items: center !important;
}
.mvre-input-icon {
	position: absolute !important;
	left: 14px !important;
	width: 16px !important;
	height: 16px !important;
	color: #94a3b8 !important;
	fill: none !important;
}
.mvre-input-icon-wrapper input {
	width: 100% !important;
	padding: 12px 14px 12px 42px !important;
	border: 1.5px solid #cbd5e1 !important;
	border-radius: 8px !important;
	font-size: 14px !important;
	color: #0f172a !important;
	transition: all 0.2s ease !important;
	background: #ffffff !important;
}
.mvre-input-icon-wrapper input:focus {
	outline: none !important;
	border-color: var(--mvre-primary, #3b82f6) !important;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1) !important;
}
.mvre-modal-alert {
	padding: 10px 14px !important;
	border-radius: 8px !important;
	font-size: 13px !important;
	margin-bottom: 18px !important;
	font-weight: 500 !important;
}
.mvre-modal-alert-danger {
	background: #fef2f2 !important;
	color: #b91c1c !important;
	border: 1px solid #fecaca !important;
}
.mvre-modal-alert-success {
	background: #f0fdf4 !important;
	color: #15803d !important;
	border: 1px solid #bbf7d0 !important;
}
.mvre-modal-submit-btn {
	width: 100% !important;
	background: var(--mvre-primary, #3b82f6) !important;
	color: #ffffff !important;
	border: none !important;
	padding: 14px !important;
	border-radius: 8px !important;
	font-weight: 700 !important;
	font-size: 0.95rem !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3) !important;
}
.mvre-modal-submit-btn:hover {
	background: #2563eb !important;
	box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4) !important;
	transform: translateY(-1px) !important;
}
.mvre-spinner {
	width: 16px !important;
	height: 16px !important;
	border: 2px solid rgba(255, 255, 255, 0.3) !important;
	border-radius: 50% !important;
	border-top-color: #ffffff !important;
	animation: mvre-spin 0.8s linear infinite !important;
}
@keyframes mvre-spin {
	to { transform: rotate(360deg); }
}

/* ==========================================================================
   8. PREMIUM STYLING FOR FLOOR PLAN ACCORDION SIDE SPECS
   ========================================================================== */
.mvre-spec-list {
	display: flex !important;
	flex-direction: column !important;
	gap: 12px !important;
	width: 100% !important;
	margin: 8px 0 !important;
}
.mvre-spec-item {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	background: #ffffff !important;
	border: 1px solid #e2e8f0 !important;
	padding: 12px 18px !important;
	border-radius: 10px !important;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.02) !important;
}
.mvre-spec-item:hover {
	transform: translateX(4px) !important;
	border-color: var(--mvre-primary, #3b82f6) !important;
	box-shadow: 0 4px 12px 0 rgba(59, 130, 246, 0.05) !important;
	background: #f8fafc !important;
}
.mvre-spec-label-group {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
}
.mvre-spec-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 32px !important;
	height: 32px !important;
	border-radius: 8px !important;
	background: rgba(59, 130, 246, 0.06) !important;
	color: var(--mvre-primary, #3b82f6) !important;
	transition: all 0.2s ease !important;
}
.mvre-spec-item:hover .mvre-spec-icon {
	background: var(--mvre-primary, #3b82f6) !important;
	color: #ffffff !important;
}
.mvre-spec-icon svg {
	width: 18px !important;
	height: 18px !important;
}
.mvre-spec-label {
	font-size: 14px !important;
	font-weight: 600 !important;
	color: #64748b !important;
}
.mvre-spec-value {
	font-size: 14px !important;
	font-weight: 700 !important;
	color: #0f172a !important;
}

/* Floor Plans Accordion Placeholder Styling */
.mvre-acc-meta-placeholder {
	font-size: 0.9rem !important;
	color: var(--mvre-primary, #3b82f6) !important;
	font-weight: 600 !important;
	transition: color 0.2s ease !important;
}
.mvre-accordion-header:hover .mvre-acc-meta-placeholder {
	color: #1d4ed8 !important; /* Slightly darker shade on hover */
}

/* ==========================================================================
   BLOG DOCUMENT DOWNLOAD BOX
   ========================================================================== */
.mvre-blog-download-box {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid var(--mvre-border);
	border-radius: var(--mvre-radius-lg);
	padding: 24px;
	margin: 30px auto;
	max-width: 600px;
	box-shadow: var(--mvre-shadow);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvre-blog-download-box:hover {
	transform: translateY(-2px);
	box-shadow: var(--mvre-shadow-lg);
}

.mvre-blog-download-info {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1;
}

.mvre-blog-download-icon {
	width: 48px;
	height: 48px;
	background: rgba(59, 130, 246, 0.1);
	color: var(--mvre-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.mvre-blog-download-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mvre-blog-download-title {
	font-family: 'Outfit', sans-serif;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--mvre-dark);
	margin: 0;
	line-height: 1.4;
}

.mvre-blog-download-subtitle {
	font-size: 0.85rem;
	color: var(--mvre-text-light);
	margin: 0;
}

.mvre-btn-blog-download {
	background: var(--mvre-primary);
	color: #ffffff;
	border: none;
	border-radius: var(--mvre-radius-sm);
	padding: 12px 24px;
	font-family: 'Outfit', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background 0.2s ease, transform 0.2s ease;
	text-decoration: none;
	white-space: nowrap;
}

.mvre-btn-blog-download:hover {
	background: var(--mvre-primary-hover);
	color: #ffffff;
	transform: scale(1.02);
}

.mvre-btn-blog-download svg {
	width: 16px;
	height: 16px;
}

@media (max-width: 576px) {
	.mvre-blog-download-box {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
		padding: 20px;
	}
	
	.mvre-blog-download-info {
		flex-direction: column;
		align-items: center;
	}
	
	.mvre-btn-blog-download {
		justify-content: center;
		width: 100%;
	}
}

/* ==========================================================================
   GATED DOWNLOAD BUTTON ELEMENT
   ========================================================================== */
.mvre-gated-download-btn-wrapper {
	width: 100%;
	margin: 15px 0;
}
.mvre-gated-download-btn-wrapper.mvre-align-left {
	text-align: left;
}
.mvre-gated-download-btn-wrapper.mvre-align-center {
	text-align: center;
}
.mvre-gated-download-btn-wrapper.mvre-align-right {
	text-align: right;
}
.mvre-gated-download-btn-wrapper .mvre-btn-gated-download {
	background: var(--mvre-primary, #3b82f6);
	color: #ffffff;
	border: 1px solid var(--mvre-primary, #3b82f6);
	padding: 12px 24px;
	border-radius: var(--mvre-radius-md, 8px);
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	box-shadow: 0 4px 6px rgba(59, 130, 246, 0.15);
	text-decoration: none;
}
.mvre-gated-download-btn-wrapper .mvre-btn-gated-download:hover {
	background: var(--mvre-primary-hover, #2563eb);
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(59, 130, 246, 0.25);
	color: #ffffff;
}


