/* ========================================
   NEWHOM HOMEPAGE STYLES
   ======================================== */

/* --- NAVBAR --- */
.navbar-modern {
	background: #ffffff;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	padding: 8px 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
	transition: all 0.3s ease;
}

.navbar-modern.scrolled {
	padding: 4px 0;
	box-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
}

.navbar-modern.scrolled #navLogo {
	height: 38px;
}

.nav-link-desktop {
	font-family: 'Inter', 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 15px;
	color: #333 !important;
	padding: 8px 16px !important;
	border-radius: 30px;
	transition: all 0.2s ease;
}

.nav-link-desktop:hover {
	background: #f0f9fc;
	color: #2398B6 !important;
}

.nav-link-modern {
	font-family: 'Inter', 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 15px;
	color: #333 !important;
	padding: 12px 16px !important;
	border-radius: 12px;
	transition: all 0.2s ease;
}

.nav-link-modern:hover {
	background: #f0f9fc;
	color: #2398B6 !important;
}

.btn-outline-nav {
	font-family: 'Inter', 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 14px;
	color: #333;
	border: 1.5px solid #ddd;
	border-radius: 30px;
	padding: 8px 20px;
	background: transparent;
	transition: all 0.2s ease;
}

.btn-outline-nav:hover {
	border-color: #2398B6;
	color: #2398B6;
	background: #f0f9fc;
}

.btn-nav-primary {
	font-family: 'Inter', 'Roboto', sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: #fff;
	background: #2398B6;
	border: none;
	border-radius: 30px;
	padding: 8px 24px;
	transition: all 0.2s ease;
}

.btn-nav-primary:hover {
	background: #1b758c;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(35, 152, 182, 0.3);
}


/* --- HERO SECTION --- */
.hero-section {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	max-height: 900px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
}

.hero-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg,
			rgba(0, 0, 0, 0.3) 0%,
			rgba(0, 0, 0, 0.15) 40%,
			rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
	position: relative;
	z-index: 10;
	text-align: center;
	padding: 0 20px;
	width: 100%;
	max-width: 900px;
}

.hero-headline {
	font-family: 'Inter', 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 52px;
	color: #ffffff;
	margin-bottom: 12px;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
	letter-spacing: -0.5px;
}

.hero-subheadline {
	font-family: 'Inter', 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 40px;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}


/* --- CATEGORY TABS --- */
.category-tabs {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.category-tab {
	font-family: 'Inter', 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 30px;
	padding: 10px 22px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.category-tab:hover {
	background: rgba(255, 255, 255, 0.25);
	color: #ffffff;
	transform: translateY(-1px);
}

.category-tab.active {
	background: #ffffff;
	color: #1a1a2e;
	border-color: #ffffff;
	font-weight: 600;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.category-tab i {
	font-size: 14px;
}


/* --- SEARCH BAR --- */
.search-bar {
	display: flex;
	align-items: center;
	background: #ffffff;
	border-radius: 50px;
	padding: 8px 8px 8px 24px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2), 0 2px 10px rgba(0, 0, 0, 0.1);
	max-width: 850px;
	margin: 0 auto;
	transition: all 0.3s ease;
}

.search-bar:hover {
	box-shadow: 0 12px 50px rgba(0, 0, 0, 0.25), 0 4px 15px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.search-field {
	flex: 1;
	padding: 8px 16px;
	cursor: pointer;
	border-radius: 30px;
	transition: background 0.2s ease;
}

.search-field:hover {
	background: #f5f5f5;
}

.search-field-where {
	flex: 1.5;
}

.search-field-label {
	display: block;
	font-family: 'Inter', 'Roboto', sans-serif;
	font-weight: 600;
	font-size: 12px;
	color: #1a1a2e;
	margin-bottom: 2px;
	letter-spacing: 0.5px;

}

.search-field-label i {
	font-size: 11px;
	margin-right: 4px;
}

.search-field-input {
	display: block;
	width: 100%;
	border: none;
	outline: none;
	background: transparent;
	font-family: 'Inter', 'Roboto', sans-serif;
	font-size: 14px;
	color: #555;
	padding: 0;
	text-align: center;
}

.search-field-input::placeholder {
	color: #aaa;
}

.search-field-input:focus {
	color: #333;
}

.search-divider {
	width: 1px;
	height: 32px;
	background: #e0e0e0;
	flex-shrink: 0;
}

.search-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #2398B6;
	color: #ffffff;
	border: none;
	border-radius: 50px;
	padding: 14px 28px;
	font-family: 'Inter', 'Roboto', sans-serif;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	flex-shrink: 0;
}

.search-btn:hover {
	background: #1d7f99;
	transform: scale(1.02);
	box-shadow: 0 4px 15px rgba(35, 152, 182, 0.4);
}

.search-btn i {
	font-size: 14px;
}


/* --- FEATURED PROPERTY --- */
.feature {
	font-family: 'Inter', 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 150%;
	color: #1a1a2e;
	padding-bottom: 16px;
}

.featureparent {
	padding-top: 40px;
}


/* --- ABOUT / CTA SECTIONS --- */
.AboutTextLight {
	font-family: 'Inter', 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 170%;
	color: #454F65;
}

.AboutTextHeavy {
	font-family: 'Inter', 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 30px;
	line-height: 76px;
	color: #1a1a2e;
}

.AboutButton {
	background: #2398B6;
	border-radius: 40px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	border-color: transparent;
	width: 200px;
	height: 52px;
	transition: all 0.3s ease;
}

.AboutButton:hover {
	background: #1b758c;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(35, 152, 182, 0.3);
}

.AboutButtonText {
	color: #FFFFFF;
	font-family: 'Inter', 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
}

.AboutButtonBorder {
	background: #FFFFFF;
	border-radius: 40px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	border-color: #2398B6;
	width: 200px;
	height: 52px;
	color: #2398B6;
}


/* --- WHY USE SECTION --- */
.WhyUse {
	font-family: 'Inter', 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 150%;
	color: #1a1a2e;
	padding-bottom: 32px;
}

.WhyUseBody {
	font-family: 'Inter', 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 170%;
	color: #454F65;
	padding-bottom: 14px;
	padding-right: 100px;
	padding-left: 100px;
}


/* --- MISC --- */
.HideScroll::-webkit-scrollbar {
	display: none;
}

.title {
	font-family: 'Inter', 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 150%;
	color: #FFFFFF;
	padding-bottom: 32px;
	position: absolute;
	top: 200px;
	margin: 0;
	padding: 0;
	width: 90%;
}

.BRNSText {
	font-family: 'Inter', 'Roboto', sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 28px;
	color: #051124;
}

.TypeButton {
	padding-top: 10px;
	padding-bottom: 10px;
	border: 0;
	padding-left: 20px;
	padding-right: 20px;
	border-bottom: 3px transparent solid;
}

.TypeButton:hover {
	border-bottom: 3px #454F65 solid;
}

.TypeButtonActive {
	padding-top: 10px;
	padding-bottom: 10px;
	border: 0;
	padding-left: 20px;
	padding-right: 20px;
	border-bottom: 3px #2398B6 solid;
}

.SearchButton {
	background: #2398B6;
	border-radius: 40px;
	color: #FFFFFF;
	width: 162px;
	border: none;
	height: 52px;
	font-family: 'Inter', 'Roboto', sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 28px;
}

.FilterButton {
	background: #FFFFFF;
	color: #2398B6;
	border: none;
	height: 35px;
	font-family: 'Inter', 'Roboto', sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 28px;
}

.SearchText {
	font-family: 'Inter', 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	color: #C4C4C5;
	border: 0;
	background-color: #FFFFFF;
}

#whitesearch {
	display: none;
}


/* --- RESPONSIVE --- */
@media (max-width: 991px) {
	.hero-headline {
		font-size: 36px;
	}

	.hero-subheadline {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.search-bar {
		flex-direction: column;
		border-radius: 24px;
		padding: 16px;
		gap: 4px;
		max-width: 400px;
	}

	.search-field {
		width: 100%;
		padding: 10px 16px;
		border-radius: 12px;
	}

	.search-field-where {
		flex: unset;
	}

	.search-divider {
		width: 100%;
		height: 1px;
		background: #eee;
	}

	.search-btn {
		width: 100%;
		margin-top: 8px;
		padding: 14px;
		border-radius: 16px;
		justify-content: center;
	}

	.category-tab span {
		font-size: 12px;
	}

	.hero-section {
		min-height: 550px;
	}
}

@media (max-width: 576px) {
	.hero-headline {
		font-size: 28px;
	}

	.hero-subheadline {
		font-size: 14px;
		margin-bottom: 24px;
	}

	.category-tab {
		padding: 8px 14px;
		font-size: 12px;
	}

	.category-tab i {
		font-size: 12px;
	}

	.WhyUseBody {
		padding-right: 0;
		padding-left: 0;
	}

	#prop_row {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}

	#searchbuttontext {
		display: none;
	}

	#whitesearch {
		display: initial !important;
	}

	.SearchButton {
		width: 50px !important;
	}

	#filterbuttontext {
		display: none;
	}

	.BRNSText {
		flex: 0 0 auto;
		width: auto;
	}

	.SearchText {
		width: initial !important;
	}

	#bottomsearchbar {
		bottom: 20px !important;
	}

	#searchparent {
		padding: 0;
		width: auto !important;
	}

	.topsearchbarsmall {
		display: flex !important;
	}

	.topsearchbar {
		display: none !important;
	}
}

.topsearchbarsmall {
	display: none;
}

.topsearchbar {
	display: flex;
}

/* --- VALIDAION --- */
.search-field-input.is-invalid {
	color: #dc3545 !important;
}

.search-field-input.is-invalid::placeholder {
	color: #dc3545 !important;
}

#guestBtnText.is-invalid {
	color: #dc3545 !important;
}

.search-field-input.is-invalid~.invalid-feedback {
	display: block;
}

.invalid-feedback {
	display: none;
	width: 100%;
	font-size: 11px;
	color: #dc3545;
	font-weight: 500;
}

/* --- LOCATION SUGGESTIONS DROPDOWN --- */
.location-suggestions-dropdown {
	position: absolute;
	top: calc(100% + 15px);
	left: 0;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	padding: 16px 0;
	z-index: 9999;
	display: none;
	min-width: 340px;
}

.location-list-title {
	font-family: 'Inter', 'Roboto', sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: #374151;
	padding: 0 24px 12px 24px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.location-option {
	display: flex;
	align-items: center;
	padding: 12px 24px;
	cursor: pointer;
	transition: background 0.2s;
}

.location-option:hover {
	background: #f7f7f7;
}

.loc-icon {
	width: 45px;
	height: 45px;
	background: #f1f5f9;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2398B6;
	font-size: 18px;
	flex-shrink: 0;
}

.loc-icon-nearby {
	background: #eef8fb;
	color: #2398B6;
}

.loc-text {
	margin-left: 16px;
	text-align: start;
}

.loc-title {
	font-family: 'Inter', 'Roboto', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 2px;
}

.loc-subtitle {
	font-family: 'Inter', 'Roboto', sans-serif;
	font-size: 13px;
	color: #6b7280;
}

/* --- GUEST PICKER FROM RESULT_STR --- */
.str-guest-picker {
	position: relative;
}

.str-guest-dropdown {
	position: absolute;
	top: calc(100% + 15px);
	right: 0;
	left: auto;
	transform: none;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	padding: 16px;
	z-index: 9999;
	display: none;
	min-width: 250px;
}

.str-guest-dropdown.show {
	display: block;
}

.str-guest-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
}

.str-guest-row:not(:last-child) {
	border-bottom: 1px solid #f3f4f6;
}

.str-guest-label {
	font-family: 'Inter', 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #374151;
}

.str-guest-label small {
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: #9ca3af;
}

.str-guest-counter {
	display: flex;
	align-items: center;
	gap: 12px;
}

.str-guest-counter button {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid #d1d5db;
	background: #fff;
	color: #374151;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.15s;
}

.str-guest-counter button:hover:not(:disabled) {
	border-color: #2398B6;
	color: #2398B6;
}

.str-guest-counter button:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.str-guest-counter span {
	font-family: 'Inter', 'Roboto', sans-serif;
	font-size: 15px;
	font-weight: 600;
	min-width: 20px;
	text-align: center;
	color: #333;
}