@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

:root {
	--primary-accent: #dfa974;
	--primary-dark: #222736;
	--islamic-green: #1a5c38;
	--body-bg: #faf7f2;
	--card-bg: #ffffff;
	--card-dark: #222736;
	--input-bg: #2e3448;
	--text-dark: #2c2c2c;
	--text-light: #ffffff;
	--text-muted: #6b6b6b;
	--success: #198754;
	--error: #dc3545;
	--warning: #f0ad4e;
	--border-accent: #dfa974;
	--focus-glow: rgba(223, 169, 116, 0.25);
	--footer-bg: #1a1e2d;
	--section-alt: #f5f0e8;
	--gold-gradient: linear-gradient(135deg, #dfa974 0%, #b3855a 100%);
}

html,
body {
	height: 100%;
	font-family: 'Inter', sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: var(--body-bg);
	color: var(--text-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: var(--primary-dark);
	font-weight: 600;
	font-family: 'Playfair Display', serif;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4.375rem);
}

h2 {
	font-size: clamp(2rem, 4vw, 2.75rem);
}

h3 {
	font-size: 1.875rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.125rem;
}

h6 {
	font-size: 1rem;
}

p {
	font-size: 1rem;
	font-family: 'Inter', sans-serif;
	color: var(--text-muted);
	font-weight: 400;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.arabic-text,
.bismillah-header {
	font-family: 'Amiri', serif;
}

.bismillah-header {
	text-align: center;
	color: var(--primary-accent);
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	font-weight: 500;
}

/* Islamic Geometric Pattern */
.islamic-bg {
	background-color: var(--body-bg);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23dfa974' fill-opacity='0.05'%3E%3Cpath d='M0 0h80v80H0z' fill='none'/%3E%3Cpath d='M40 0l10 30h30L55 50l10 30-25-20-25 20 10-30-25-20h30z'/%3E%3C/g%3E%3C/svg%3E");
}

.islamic-bg-dark {
	background-color: var(--footer-bg);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23dfa974' fill-opacity='0.1'%3E%3Cpath d='M0 0h80v80H0z' fill='none'/%3E%3Cpath d='M40 0l10 30h30L55 50l10 30-25-20-25 20 10-30-25-20h30z'/%3E%3C/g%3E%3C/svg%3E");
}

/* Decorative Heading */
.section-title h2 {
	position: relative;
	padding-bottom: 25px;
	margin-bottom: 30px;
}

.section-title h2::after {
	content: '◆';
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	color: var(--primary-accent);
	font-size: 18px;
}

.section-title h2::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 1px;
	background: var(--primary-accent);
}

/* Islamic Arch Clip-path */
.islamic-arch-bottom {
	clip-path: ellipse(100% 100% at 50% 0%);
}

/* Cards & Components */
.custom-card {
	background: var(--card-bg);
	border: none;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-top: 3px solid var(--primary-accent);
	position: relative;
	overflow: hidden;
}

.custom-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Custom Visibility Classes */
.text-white-85 {
	color: rgba(255, 255, 255, 0.85) !important;
}

.text-white-70 {
	color: rgba(255, 255, 255, 0.7) !important;
}

.card-dark {
	background: var(--card-dark);
	color: rgba(255, 255, 255, 0.85);
}

.card-dark h1,
.card-dark h2,
.card-dark h3,
.card-dark h4,
.card-dark h5,
.card-dark h6 {
	color: #ffffff;
}

.card-dark .form-label {
	color: #f8f9fa !important;
}

.card-dark .form-label.small {
	color: rgba(255, 255, 255, 0.7) !important;
}

/* Placeholder removed to use global gold color */

.table-dark td {
	color: rgba(255, 255, 255, 0.85) !important;
}

.table-dark th {
	color: #ffffff !important;
}

/* Form Styling */
.form-control-custom {
	background: var(--input-bg);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--text-light);
	border-radius: 6px;
	padding: 12px 16px;
	transition: all 0.3s ease;
}

.form-control-custom:focus {
	border-color: var(--primary-accent);
	box-shadow: 0 0 0 4px var(--focus-glow);
	background: var(--input-bg);
}

/* Buttons */
.btn-gold {
	background: var(--gold-gradient);
	border: none;
	color: var(--text-light);
	font-weight: 600;
	padding: 12px 30px;
	border-radius: 6px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(223, 169, 116, 0.3);
}

.btn-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(223, 169, 116, 0.4);
	color: var(--text-light);
}

.btn-gold-outline {
	background: transparent;
	border: 2px solid var(--primary-accent);
	color: var(--primary-accent);
	font-weight: 600;
	padding: 10px 28px;
	transition: all 0.3s ease;
}

.btn-gold-outline:hover {
	background: var(--primary-accent);
	color: var(--text-light);
}

/* Progress Bar */
.step-progress {
	display: flex;
	justify-content: space-between;
	margin-bottom: 2rem;
	position: relative;
}

.step-progress::before {
	content: '';
	position: absolute;
	top: 15px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #e5e5e5;
	z-index: 1;
}

.step-item {
	position: relative;
	z-index: 2;
	background: var(--body-bg);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid #e5e5e5;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 14px;
}

.step-item.active {
	border-color: var(--primary-accent);
	background: var(--primary-accent);
	color: #fff;
}

.step-item.completed {
	border-color: var(--islamic-green);
	background: var(--islamic-green);
	color: #fff;
}

/* Hide Google Translate top bar */
.goog-te-banner-frame {
	display: none !important;
}

body {
	top: 0 !important;
}

.skiptranslate {
	display: none !important;
}

body>.skiptranslate {
	display: none !important;
}

#goog-gt-tt {
	display: none !important;
}

.goog-te-balloon-frame {
	display: none !important;
}

.goog-text-highlight {
	background: none !important;
	box-shadow: none !important;
}

/* ============================================
   PREMIUM NAVBAR STYLES
   ============================================ */
.header-section {
	background-color: var(--primary-dark);
	position: sticky;
	top: 0;
	z-index: 1050;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.navbar {
	padding: 0.5rem 0;
	min-height: 75px;
}

.navbar-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0;
}

.navbar-brand .brand-text {
	color: var(--primary-accent);
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 1.35rem;
	letter-spacing: 0.5px;
	margin-bottom: 0;
}

.mainmenu {
	gap: 5px;
}

.mainmenu .nav-item .nav-link {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
	padding: 10px 15px !important;
	transition: all 0.3s ease;
	position: relative;
}

.mainmenu .nav-item .nav-link:hover {
	color: var(--primary-accent);
}

.mainmenu .nav-item.active .nav-link {
	color: var(--primary-accent);
	font-weight: 600;
}

.mainmenu .nav-item.active .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 15px;
	right: 15px;
	height: 3px;
	background-color: var(--primary-accent);
	border-radius: 2px;
}

/* User Menu & Buttons */
.navbar-right {
	display: flex;
	align-items: center;
	gap: 15px;
}

.btn-nav-login {
	border: 1.5px solid var(--primary-accent);
	color: var(--primary-accent);
	padding: 8px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-nav-login:hover {
	background-color: var(--primary-accent);
	color: #fff;
}

.btn-nav-register {
	background-color: var(--primary-accent);
	border: 1.5px solid var(--primary-accent);
	color: #fff;
	padding: 8px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-nav-register:hover {
	background-color: #c99868;
	border-color: #c99868;
	color: #fff;
}

/* User Dropdown */
.user-dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-weight: 600;
	padding: 8px 12px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	transition: all 0.3s ease;
}

.user-dropdown-toggle:hover {
	background: rgba(223, 169, 116, 0.15);
	color: var(--primary-accent);
}

.user-dropdown-menu {
	background: var(--primary-dark) !important;
	border: 1px solid rgba(223, 169, 116, 0.2) !important;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
	border-radius: 12px !important;
	padding: 8px !important;
	margin-top: 15px !important;
}

.user-dropdown-menu .dropdown-item {
	color: rgba(255, 255, 255, 0.8) !important;
	padding: 10px 15px !important;
	border-radius: 8px !important;
	font-size: 14px !important;
	transition: all 0.2s ease !important;
}

.user-dropdown-menu .dropdown-item:hover {
	background: rgba(223, 169, 116, 0.1) !important;
	color: var(--primary-accent) !important;
}

.user-dropdown-menu .dropdown-item.text-danger:hover {
	background: rgba(220, 53, 69, 0.1) !important;
	color: #ff4d5e !important;
}

/* Mobile Toggle */
.navbar-toggler {
	padding: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-accent) !important;
}

.navbar-toggler-icon {
	background-image: none !important;
	position: relative;
	width: 24px;
	height: 2px;
	background-color: var(--primary-accent);
	transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--primary-accent);
	transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
	top: -8px;
}

.navbar-toggler-icon::after {
	bottom: -8px;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
	background-color: transparent;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
	top: 0;
	transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
	top: 0;
	transform: rotate(-45deg);
}

@media (max-width: 991px) {
	.navbar-collapse {
		background: var(--primary-dark);
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		padding: 20px;
		border-top: 1px solid rgba(223, 169, 116, 0.1);
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
		border-radius: 0 0 20px 20px;
	}

	.mainmenu {
		flex-direction: column;
		width: 100%;
		gap: 10px;
		margin-bottom: 20px !important;
	}

	.mainmenu .nav-item .nav-link {
		padding: 12px 15px !important;
		background: rgba(255, 255, 255, 0.03);
		border-radius: 10px;
	}

	.mainmenu .nav-item.active .nav-link::after {
		display: none;
	}

	.navbar-right {
		flex-direction: column;
		width: 100%;
		gap: 12px;
	}

	.navbar-right .btn,
	.navbar-right .user-dropdown-toggle {
		width: 100%;
		justify-content: center;
	}

	.navbar-right .lang-switcher {
		width: 100%;
	}

	.navbar-right .lang-switcher .dropdown-toggle {
		width: 100%;
		justify-content: center;
	}
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #ffffff;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

.spacial-controls {
	position: fixed;
	width: 111px;
	height: 91px;
	top: 0;
	right: 0;
	z-index: 999;
}

.spacial-controls .search-switch {
	display: block;
	height: 100%;
	padding-top: 30px;
	background: #323232;
	text-align: center;
	cursor: pointer;
}

.search-model {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	z-index: 99999;
}

.search-model-form {
	padding: 0 15px;
}

.search-model-form input {
	width: 100%;
	max-width: 500px;
	/* RESPONSIVE FIX */
	font-size: 40px;
	border: none;
	border-bottom: 2px solid #333;
	background: none;
	color: #999;
}

/* RESPONSIVE FIX: Mobile font sizes for hero */
@media (max-width: 768px) {
	h1 {
		font-size: 40px;
	}

	.hero-text h1 {
		font-size: 45px;
		line-height: 55px;
	}

	.hero-text p {
		font-size: 16px;
	}

	.section-title h2 {
		font-size: 30px;
		line-height: 40px;
	}
}

@media (max-width: 576px) {
	h1 {
		font-size: 32px;
	}

	.hero-text h1 {
		font-size: 36px;
		line-height: 44px;
	}

	.search-model-form input {
		font-size: 24px;
	}
}

.search-close-switch {
	position: absolute;
	width: 50px;
	height: 50px;
	background: #333;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	font-size: 28px;
	line-height: 28px;
	top: 30px;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/*---------------------
  Header
-----------------------*/

.header-section.header-normal .menu-item {
	-webkit-box-shadow: 0px 12px 15px rgba(36, 11, 12, 0.05);
	box-shadow: 0px 12px 15px rgba(36, 11, 12, 0.05);
}

.top-nav {
	border-bottom: 1px solid #e5e5e5;
}

.top-nav .tn-left li {
	list-style: none;
	display: inline-block;
	font-size: 16px;
	color: #19191a;
	font-weight: 500;
	padding: 14px 0 12px;
	margin-right: 64px;
	position: relative;
}

.top-nav .tn-left li:after {
	position: absolute;
	right: -32px;
	top: 0;
	width: 1px;
	height: 100%;
	background: #e5e5e5;
	content: "";
}

.top-nav .tn-left li:last-child {
	margin-right: 0;
}

.top-nav .tn-left li:last-child:after {
	display: none;
}

.top-nav .tn-left li i {
	color: #dfa974;
	margin-right: 4px;
}

.top-nav .tn-right {
	text-align: right;
}

.top-nav .tn-right .top-social {
	display: inline-block;
	margin-right: 35px;
	padding: 13px 0;
}

.top-nav .tn-right .top-social a {
	display: inline-block;
	font-size: 16px;
	color: #19191a;
	margin-left: 15px;
}

.top-nav .tn-right .bk-btn {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	padding: 16px 28px 15px;
	background: #dfa974;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.top-nav .tn-right .language-option {
	display: inline-block;
	margin-left: 30px;
	cursor: pointer;
	padding: 13px 0px 11px;
	position: relative;
}

.top-nav .tn-right .language-option:hover .flag-dropdown {
	top: 40px;
	opacity: 1;
	visibility: visible;
}

.top-nav .tn-right .language-option img {
	height: 26px;
	width: 26px;
	border-radius: 50%;
	margin-right: 10px;
}

.top-nav .tn-right .language-option span {
	font-size: 16px;
	color: #19191a;
	text-transform: uppercase;
	font-weight: 500;
}

.top-nav .tn-right .language-option .flag-dropdown {
	position: absolute;
	left: 0;
	top: 60px;
	width: 100px;
	background: #ffffff;
	display: block;
	padding: 10px 15px;
	-webkit-box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
	box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 99;
}

.top-nav .tn-right .language-option .flag-dropdown ul li {
	list-style: none;
	text-align: left;
}

.top-nav .tn-right .language-option .flag-dropdown ul li a {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
	color: #19191a;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.top-nav .tn-right .language-option .flag-dropdown ul li a:hover {
	color: #dfa974;
}

.menu-item {
	position: relative;
	z-index: 9;
}

.menu-item .logo {
	padding: 25px 0;
}

.menu-item .logo a {
	display: inline-block;
}

.menu-item .nav-menu {
	text-align: right;
}

.menu-item .nav-menu .mainmenu {
	display: inline-block;
}

.menu-item .nav-menu .mainmenu li {
	list-style: none;
	display: inline-block;
	position: relative;
	z-index: 1;
}

.menu-item .nav-menu .mainmenu li.active a:after {
	opacity: 1;
}

.menu-item .nav-menu .mainmenu li:hover>a:after {
	opacity: 1;
}

.menu-item .nav-menu .mainmenu li:hover .dropdown {
	top: 77px;
	opacity: 1;
	visibility: visible;
}

.menu-item .nav-menu .mainmenu li a {
	font-size: 16px;
	color: #19191a;
	margin-right: 42px;
	font-weight: 500;
	display: inline-block;
	padding: 27px 0;
	position: relative;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.menu-item .nav-menu .mainmenu li a:after {
	position: absolute;
	left: 0;
	top: 52px;
	width: 100%;
	height: 2px;
	background: #dfa974;
	content: "";
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.menu-item .nav-menu .mainmenu li .dropdown {
	position: absolute;
	left: 0;
	top: 97px;
	width: 180px;
	background: #ffffff;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-box-shadow: 0px 9px 15px rgba(25, 25, 26, 0.05);
	box-shadow: 0px 9px 15px rgba(25, 25, 26, 0.05);
}

.menu-item .nav-menu .mainmenu li .dropdown li {
	list-style: none;
	display: block;
}

.menu-item .nav-menu .mainmenu li .dropdown li a {
	font-size: 16px;
	color: #19191a;
	display: block;
	text-align: left;
	padding: 8px 15px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.menu-item .nav-menu .mainmenu li .dropdown li a:hover {
	color: #dfa974;
}

.menu-item .nav-menu .mainmenu li .dropdown li a:after {
	display: none;
}

.menu-item .nav-menu .nav-right {
	display: inline-block;
	margin-left: 43px;
	padding: 27px 0px;
}

.menu-item .nav-menu .nav-right i {
	font-size: 16px;
	color: #19191a;
	cursor: pointer;
}

.canvas-open {
	display: none;
}

.offcanvas-menu-wrapper {
	display: none;
}

/*---------------------
  Hero
-----------------------*/

.hero-section {
	position: relative;
	padding-top: 100px;
	padding-bottom: 120px;
	background-color: var(--primary-dark);
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23dfa974' fill-opacity='0.03'%3E%3Cpath d='M50 0l15 35h35L72 60l15 40-37-25-37 25 15-40-28-25h35z'/%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.5;
}

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

.hero-text h1 {
	color: var(--text-light);
	margin-bottom: 20px;
}

.hero-text p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1rem;
}

.booking-form {
	background: var(--card-dark);
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
	border-top: 4px solid var(--primary-accent);
}

.booking-form h3 {
	color: var(--text-light);
	font-family: 'Playfair Display', serif;
	margin-bottom: 30px;
	text-align: center;
}

.booking-form form label {
	color: var(--text-light);
	font-weight: 500;
	margin-bottom: 10px;
	font-size: 0.9rem;
}

.booking-form form .check-date input,
.booking-form form .select-option .nice-select {
	background: var(--input-bg);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--text-light);
	height: 55px;
	line-height: 55px;
	border-radius: 6px;
}

.booking-form form .select-option .nice-select span {
	color: var(--text-light);
}

.booking-form form button {
	background: var(--gold-gradient);
	border: none;
	color: #fff;
	height: 55px;
	font-weight: 700;
	font-size: 1rem;
	border-radius: 6px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.booking-form form button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(223, 169, 116, 0.4);
}

.hero-slider {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.hero-slider.owl-carousel .owl-dots {
	position: absolute;
	left: 0;
	bottom: 23px;
	width: 100%;
	text-align: center;
}

.hero-slider.owl-carousel .owl-dots button {
	height: 6px;
	width: 6px;
	background: #ffffff;
	opacity: 0.5;
	border-radius: 50%;
	margin-right: 10px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.hero-slider.owl-carousel .owl-dots button.active {
	width: 30px;
	border-radius: 50px;
	opacity: 1;
}

.hero-slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}

.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slider .hs-item {
	height: 100%;
}

/*---------------------
  About US
-----------------------*/

.about-text {
	text-align: center;
	padding: 0 35px;
}

.about-text p {
	color: #595960;
	font-weight: 500;
}

.about-text p.f-para {
	margin-bottom: 10px;
}

.about-text p.s-para {
	margin-bottom: 35px;
}

.about-text .about-btn {
	color: #19191a;
}

.about-pic img {
	min-width: 100%;
}

/*---------------------
  Service Section
-----------------------*/

.services-section {
	padding-bottom: 60px;
	border-top: 1px solid #e5e5e5;
}

.services-section .section-title {
	margin-bottom: 36px;
}

.service-item {
	text-align: center;
	padding: 30px 35px 18px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.service-item:hover {
	background: #dfa974;
}

.service-item:hover i {
	color: #ffffff;
}

.service-item:hover h4 {
	color: #ffffff;
}

.service-item:hover p {
	color: #ffffff;
}

.service-item i {
	display: inline-block;
	color: #dfa974;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.service-item h4 {
	color: #19191a;
	font-size: 22px;
	margin-bottom: 15px;
	margin-top: 10px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.service-item p {
	color: #707079;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

/*------------------------
  Home Page Room Section 
-------------------------*/

.hp-room-items {
	margin-left: -15px;
	margin-right: -15px;
	overflow: hidden;
}

.hp-room-items .hp-room-item {
	height: 600px;
	margin-right: -15px;
	position: relative;
	overflow: hidden;
}

.hp-room-items .hp-room-item:hover .hr-text {
	bottom: 135px;
}

.hp-room-items .hp-room-item:hover .hr-text h2 {
	margin-bottom: 30px;
}

.hp-room-items .hp-room-item .hr-text {
	position: absolute;
	left: 45px;
	right: 25px;
	bottom: -250px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.hp-room-items .hp-room-item .hr-text h3 {
	color: #ffffff;
	margin-bottom: 15px;
}

.hp-room-items .hp-room-item .hr-text h2 {
	color: #dfa974;
	font-weight: 700;
	margin-bottom: 50px;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.hp-room-items .hp-room-item .hr-text h2 span {
	font-family: "Cabin", sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
}

.hp-room-items .hp-room-item .hr-text table {
	margin-bottom: 30px;
}

.hp-room-items .hp-room-item .hr-text table tbody tr td {
	font-size: 16px;
	color: #ffffff;
	line-height: 36px;
}

.hp-room-items .hp-room-item .hr-text table tbody tr td.r-o {
	width: 120px;
}

.hp-room-items .hp-room-item .hr-text .primary-btn:after {
	background: #ffffff;
}

/*---------------------
  Testimonial Slider
-----------------------*/

.testimonial-section {
	background: #f9f9f9;
}

.testimonial-section .section-title {
	margin-bottom: 30px;
}

.testimonial-slider.owl-carousel .owl-item img {
	width: auto;
	margin: 0 auto;
}

.testimonial-slider.owl-carousel .owl-nav button {
	height: 44px;
	width: 44px;
	border: 1px solid #ebebeb;
	font-size: 24px;
	color: #707079;
	background: #ffffff;
	line-height: 48px;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	left: -190px;
	top: 50%;
	-webkit-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	transform: translateY(-6px);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.testimonial-slider.owl-carousel .owl-nav button:hover {
	border-color: #19191a;
	color: #19191a;
}

.testimonial-slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: -190px;
}

.testimonial-slider .ts-item {
	text-align: center;
}

.testimonial-slider .ts-item p {
	font-size: 20px;
	color: #707079;
	line-height: 30px;
	margin-bottom: 50px;
}

.testimonial-slider .ts-item .ti-author {
	margin-bottom: 60px;
}

.testimonial-slider .ts-item .ti-author .rating {
	display: inline-block;
}

.testimonial-slider .ts-item .ti-author .rating i {
	color: #f5b917;
	font-size: 16px;
}

.testimonial-slider .ts-item .ti-author h5 {
	font-size: 20px;
	color: #19191a;
	display: inline-block;
}

/*---------------------
  Blog and Event
-----------------------*/

.blog-section {
	padding-bottom: 70px;
}

.blog-section .section-title {
	margin-bottom: 36px;
}

/*---------------------
  Footer Section
-----------------------*/

.footer-section {
	background: var(--footer-bg);
	position: relative;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.85);
}

.footer-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='%23dfa974' fill-opacity='0.05'%3E%3Cpath d='M30 0l8 22h22l-18 13 7 22-19-14-19 14 7-22L3 22h22z'/%3E%3C/g%3E%3C/svg%3E");
}

.footer-section a {
	color: #dfa974;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: #ffffff;
}

.footer-section .footer-text h5,
.footer-section .footer-text h6 {
	color: #ffffff !important;
	font-family: 'Playfair Display', serif;
	margin-bottom: 25px;
	letter-spacing: 1px;
	text-transform: none;
}

.footer-section .footer-text p,
.footer-section .footer-text ul li {
	color: rgba(255, 255, 255, 0.7);
}

.footer-section .footer-text .fa-social a {
	color: var(--primary-accent);
	border-color: rgba(223, 169, 116, 0.3);
}

.footer-section .footer-text .fa-social a:hover {
	background: var(--primary-accent);
	color: #fff;
}

.footer-section .footer-text .ft-contact {
	margin-bottom: 30px;
}

.footer-section .footer-text .ft-contact h6 {
	font-size: 14px;
	color: #dfa974;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 3px;
	font-family: "Cabin", sans-serif;
	margin-bottom: 20px;
}

.footer-section .footer-text .ft-contact ul li {
	font-size: 16px;
	color: #aaaab3;
	line-height: 32px;
	list-style: none;
}

.footer-section .footer-text .ft-newslatter h6 {
	font-size: 14px;
	color: #dfa974;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 3px;
	font-family: "Cabin", sans-serif;
	margin-bottom: 20px;
}

.footer-section .footer-text .ft-newslatter p {
	color: #aaaab3;
	margin-bottom: 20px;
}

.footer-section .footer-text .ft-newslatter .fn-form {
	position: relative;
}

.footer-section .footer-text .ft-newslatter .fn-form input {
	width: 100%;
	height: 50px;
	border-radius: 2px;
	background: #393D4A;
	border: none;
	padding-left: 20px;
	font-size: 16px;
	color: #707079;
}

.footer-section .footer-text .ft-newslatter .fn-form button {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 16px;
	background: #dfa974;
	color: #ffffff;
	padding: 0 16px;
	height: 50px;
	border: none;
	border-radius: 0 2px 2px 0;
}

.footer-section .copyright-option {
	background: rgba(16, 20, 31, 0.2);
	padding: 20px 0;
}

.footer-section .copyright-option ul li {
	list-style: none;
	display: inline-block;
	margin-right: 34px;
}

.footer-section .copyright-option ul li:last-child {
	margin-right: 0;
}

.footer-section .copyright-option ul li a {
	font-size: 16px;
	color: #aaaab3;
}

.footer-section .copyright-option .co-text {
	font-size: 16px;
	color: #707079;
	text-align: right;
}

/* --------------------------------- Other Pages Styles ----------------------------------- */

/*---------------------
  Breadcrumb Section
-----------------------*/

.breadcrumb-section {
	padding-top: 70px;
	padding-bottom: 80px;
}

.breadcrumb-text {
	text-align: center;
}

.breadcrumb-text h2 {
	font-size: 44px;
	color: #19191a;
	margin-bottom: 12px;
}

.breadcrumb-text .bt-option a {
	display: inline-block;
	font-size: 18px;
	color: #19191a;
	margin-right: 20px;
	position: relative;
	font-weight: 500;
}

.breadcrumb-text .bt-option a:after {
	position: absolute;
	right: -13px;
	top: 1px;
	content: "";
	font-size: 18px;
	font-family: "FontAwesome";
	color: #aaaab3;
}

.breadcrumb-text .bt-option span {
	display: inline-block;
	font-size: 18px;
	color: #aaaab3;
}

/*------------------------
  About Us Page Section
-------------------------*/

.aboutus-page-section {
	padding-top: 0;
	padding-bottom: 70px;
}

.about-page-text {
	margin-bottom: 65px;
}

.about-page-text .ap-title {
	margin-bottom: 30px;
}

.about-page-text .ap-title h2 {
	font-size: 44px;
	color: #19191a;
	margin-bottom: 18px;
}

.about-page-text .ap-title p {
	font-size: 18px;
	color: #707079;
	line-height: 28px;
}

.about-page-text .ap-services li {
	list-style: none;
	font-size: 20px;
	color: #707079;
	line-height: 42px;
}

.about-page-text .ap-services li i {
	color: #dfa974;
	margin-right: 5px;
}

.about-page-services .ap-service-item {
	position: relative;
	height: 420px;
	border-radius: 5px;
	margin-bottom: 30px;
}

.about-page-services .ap-service-item .api-text {
	position: absolute;
	left: 0;
	bottom: 40px;
	width: 100%;
	text-align: center;
}

.about-page-services .ap-service-item .api-text h3 {
	color: #ffffff;
}

/*---------------------
  Video Section
-----------------------*/

.video-section {
	height: 500px;
	padding-top: 140px;
}

.video-section .video-text {
	text-align: center;
}

.video-section .video-text h2 {
	font-size: 48px;
	color: #ffffff;
	margin-bottom: 16px;
}

.video-section .video-text p {
	font-size: 20px;
	color: #ffffff;
	margin-bottom: 40px;
}

.video-section .video-text .play-btn {
	display: inline-block;
}

/*---------------------
  Gallery Section
-----------------------*/

.gallery-section {
	padding-bottom: 80px;
}

.gallery-section .section-title {
	margin-bottom: 38px;
}

.gallery-item {
	position: relative;
	height: 279px;
	margin-bottom: 20px;
	border-radius: 5px;
	position: relative;
	z-index: 1;
}

.gallery-item:hover:after {
	opacity: 1;
}

.gallery-item:hover .gi-text {
	opacity: 1;
}

.gallery-item:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(25, 25, 26, 0.3);
	content: "";
	z-index: -1;
	border-radius: 5px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}

.gallery-item.large-item {
	height: 576px;
}

.gallery-item .gi-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}

.gallery-item .gi-text h3 {
	color: #ffffff;
}

/*---------------------
  Room Section
-----------------------*/

.rooms-section {
	padding-top: 0;
	padding-bottom: 80px;
}

.room-item {
	margin-bottom: 30px;
}

.room-item img {
	min-width: 100%;
}

.room-item .ri-text {
	border: 1px solid #ebebeb;
	border-top: none;
	padding: 24px 24px 30px 28px;
}

.room-item .ri-text h4 {
	color: #19191a;
	margin-bottom: 17px;
}

.room-item .ri-text h3 {
	color: #dfa974;
	font-weight: 700;
	margin-bottom: 14px;
}

.room-item .ri-text h3 span {
	font-family: "Cabin", sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #19191a;
}

.room-item .ri-text table {
	margin-bottom: 18px;
}

.room-item .ri-text table tbody tr td {
	font-size: 16px;
	color: #707079;
	line-height: 36px;
}

.room-item .ri-text table tbody tr td.r-o {
	width: 125px;
}

.room-item .ri-text .primary-btn {
	color: #19191a;
}

.room-pagination {
	text-align: center;
	padding-top: 20px;
}

.room-pagination a {
	font-size: 16px;
	color: var(--primary-dark);
	border: 1px solid var(--primary-accent);
	border-radius: 4px;
	padding: 8px 16px;
	margin-right: 8px;
	display: inline-block;
	transition: all 0.3s ease;
}

.room-pagination a.active,
.room-pagination a:hover {
	background: var(--primary-accent);
	color: #ffffff;
}

/*-----------------------
  Room Details Section
-------------------------*/

.room-details-section {
	padding-top: 0;
	padding-bottom: 80px;
}

.room-details-item {
	margin-bottom: 50px;
}

.room-details-item img {
	margin-bottom: 40px;
}

.room-details-item .rd-text .rd-title {
	overflow: hidden;
	margin-bottom: 8px;
}

.room-details-item .rd-text .rd-title h3 {
	color: #19191a;
	float: left;
}

.room-details-item .rd-text .rd-title .rdt-right {
	float: right;
	text-align: right;
}

.room-details-item .rd-text .rd-title .rdt-right .rating {
	display: inline-block;
	margin-right: 25px;
	margin-bottom: 10px;
}

.room-details-item .rd-text .rd-title .rdt-right .rating i {
	color: #f5b917;
}

.room-details-item .rd-text .rd-title .rdt-right a {
	display: inline-block;
	color: #ffffff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	background: #dfa974;
	padding: 14px 28px 13px;
}

.room-details-item .rd-text h2 {
	color: #dfa974;
	font-weight: 700;
	margin-bottom: 25px;
}

.room-details-item .rd-text h2 span {
	font-family: "Cabin", sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #19191a;
}

.room-details-item .rd-text table {
	margin-bottom: 32px;
}

.room-details-item .rd-text table tbody tr td {
	font-size: 16px;
	color: #19191a;
	line-height: 36px;
}

.room-details-item .rd-text table tbody tr td.r-o {
	width: 120px;
	color: #707079;
}

.room-details-item .rd-text p {
	color: #707079;
}

.room-details-item .rd-text p.f-para {
	margin-bottom: 22px;
}

.rd-reviews {
	padding-top: 55px;
	border-top: 1px solid #e5e5e5;
	margin-bottom: 50px;
}

.rd-reviews h4 {
	color: #19191a;
	letter-spacing: 1px;
	margin-bottom: 45px;
}

.rd-reviews .review-item {
	margin-bottom: 32px;
}

.rd-reviews .review-item .ri-pic {
	float: left;
	margin-right: 30px;
}

.rd-reviews .review-item .ri-pic img {
	height: 70px;
	width: 70px;
	border-radius: 50%;
}

.rd-reviews .review-item .ri-text {
	overflow: hidden;
	position: relative;
	padding-left: 30px;
}

.rd-reviews .review-item .ri-text:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background: #e9e9e9;
	content: "";
}

.rd-reviews .review-item .ri-text span {
	font-size: 12px;
	color: #dfa974;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.rd-reviews .review-item .ri-text .rating {
	position: absolute;
	right: 0;
	top: 0;
}

.rd-reviews .review-item .ri-text .rating i {
	color: #f5b917;
}

.rd-reviews .review-item .ri-text h5 {
	color: #19191a;
	margin-top: 4px;
	margin-bottom: 8px;
}

.rd-reviews .review-item .ri-text p {
	color: #707079;
	margin-bottom: 0;
}

.review-add h4 {
	color: #19191a;
	letter-spacing: 1px;
	margin-bottom: 45px;
}

.review-add .ra-form input {
	width: 100%;
	height: 50px;
	border: 1px solid #e5e5e5;
	font-size: 16px;
	color: #aaaab3;
	padding-left: 20px;
	margin-bottom: 25px;
}

.review-add .ra-form input::-webkit-input-placeholder {
	color: #aaaab3;
}

.review-add .ra-form input::-moz-placeholder {
	color: #aaaab3;
}

.review-add .ra-form input:-ms-input-placeholder {
	color: #aaaab3;
}

.review-add .ra-form input::-ms-input-placeholder {
	color: #aaaab3;
}

.review-add .ra-form input::placeholder {
	color: #aaaab3;
}

.review-add .ra-form h5 {
	font-size: 20px;
	color: #19191a;
	margin-bottom: 24px;
	float: left;
	margin-right: 10px;
}

.review-add .ra-form .rating {
	padding-top: 3px;
	display: inline-block;
}

.review-add .ra-form .rating i {
	color: #f5b917;
	font-size: 16px;
}

.review-add .ra-form textarea {
	width: 100%;
	height: 132px;
	border: 1px solid #e5e5e5;
	font-size: 16px;
	color: #aaaab3;
	padding-left: 20px;
	padding-top: 12px;
	margin-bottom: 24px;
	resize: none;
}

.review-add .ra-form textarea::-webkit-input-placeholder {
	color: #aaaab3;
}

.review-add .ra-form textarea::-moz-placeholder {
	color: #aaaab3;
}

.review-add .ra-form textarea:-ms-input-placeholder {
	color: #aaaab3;
}

.review-add .ra-form textarea::-ms-input-placeholder {
	color: #aaaab3;
}

.review-add .ra-form textarea::placeholder {
	color: #aaaab3;
}

.review-add .ra-form button {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 2px;
	background: #dfa974;
	border: none;
	padding: 14px 34px 13px;
	display: inline-block;
}

.room-booking {
	padding: 0 30px 0 40px;
}

.room-booking h3 {
	color: #19191a;
	margin-bottom: 30px;
}

.room-booking form .check-date {
	position: relative;
	margin-bottom: 15px;
}

.room-booking form .check-date label {
	font-size: 14px;
	color: #707079;
	display: block;
	margin-bottom: 10px;
}

.room-booking form .check-date input {
	width: 100%;
	height: 50px;
	border: 1px solid #ebebeb;
	border-radius: 2px;
	font-size: 16px;
	color: #19191a;
	text-transform: uppercase;
	font-weight: 500;
	padding-left: 20px;
}

.room-booking form .check-date i {
	color: #dfa974;
	position: absolute;
	right: 18px;
	bottom: 17px;
}

.room-booking form .select-option {
	margin-bottom: 15px;
}

.room-booking form .select-option label {
	font-size: 14px;
	color: #707079;
	display: block;
	margin-bottom: 10px;
}

.room-booking form .select-option .nice-select {
	border-radius: 2px;
	border: 1px solid #ebebeb;
	height: 50px;
	line-height: 50px;
	outline: none;
	padding-left: 20px;
	width: 100%;
	float: none;
}

.room-booking form .select-option .nice-select:after {
	border-bottom: 2px solid #dfa974;
	border-right: 2px solid #dfa974;
	height: 10px;
	margin-top: 0;
	right: 20px;
	width: 10px;
	top: 36%;
}

.room-booking form .select-option .nice-select span {
	font-size: 16px;
	color: #19191a;
	text-transform: uppercase;
	font-weight: 500;
}

.room-booking form .select-option .nice-select .list {
	margin-top: 0;
	width: 100%;
}

.room-booking form button {
	display: block;
	font-size: 14px;
	text-transform: uppercase;
	border: 1px solid #dfa974;
	border-radius: 2px;
	color: #dfa974;
	font-weight: 500;
	background: transparent;
	width: 100%;
	height: 46px;
	margin-top: 30px;
}

/*---------------------
  Blog Section
-----------------------*/

.blog-section.blog-page {
	padding-top: 0;
	padding-bottom: 88px;
}

.blog-item {
	height: 450px;
	position: relative;
	margin-bottom: 30px;
	border-radius: 5px;
}

.blog-item.small-size {
	height: 400px;
}

.blog-item .bi-text {
	position: absolute;
	left: 0;
	bottom: 25px;
	width: 100%;
	padding-left: 30px;
	padding-right: 30px;
}

.blog-item .bi-text .b-tag {
	display: inline-block;
	color: #ffffff;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: #dfa974;
	padding: 3px 10px;
	border-radius: 2px;
}

.blog-item .bi-text h4 {
	margin-top: 18px;
	margin-bottom: 18px;
}

.blog-item .bi-text h4 a {
	color: #ffffff;
}

.blog-item .bi-text .b-time {
	font-size: 12px;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.load-more {
	text-align: center;
	padding-top: 30px;
}

.load-more .primary-btn {
	color: #19191a;
}

/*----------------------------
  Blog Details Hero Section
----------------------------*/

.blog-details-hero {
	height: 530px;
	padding-top: 165px;
}

.bd-hero-text {
	text-align: center;
}

.bd-hero-text span {
	font-size: 12px;
	color: #ffffff;
	background: #dfa974;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-block;
	padding: 4px 16px;
	border-radius: 2px;
}

.bd-hero-text h2 {
	font-size: 44px;
	color: #ffffff;
	line-height: 54px;
	margin-top: 30px;
	margin-bottom: 12px;
}

.bd-hero-text ul li {
	list-style: none;
	font-size: 14px;
	color: #dfa974;
	margin-right: 35px;
	display: inline-block;
}

.bd-hero-text ul li:last-child {
	margin-right: 0;
}

.bd-hero-text ul li.b-time {
	text-transform: uppercase;
}

/*---------------------
  Blog Details Section
-----------------------*/

.blog-details-section {
	padding-top: 55px;
}

.blog-details-text .bd-title {
	margin-bottom: 52px;
}

.blog-details-text .bd-title p {
	font-size: 18px;
	color: #707079;
	line-height: 30px;
}

.blog-details-text .bd-pic {
	overflow: hidden;
	margin-bottom: 35px;
}

.blog-details-text .bd-pic .bp-item {
	width: calc(33.33% - 10px);
	float: left;
	margin-right: 15px;
}

.blog-details-text .bd-pic .bp-item:last-child {
	margin-right: 0;
}

.blog-details-text .bd-pic .bp-item img {
	min-width: 100%;
}

.blog-details-text .bd-more-text {
	margin-bottom: 50px;
}

.blog-details-text .bd-more-text .bm-item {
	margin-bottom: 30px;
}

.blog-details-text .bd-more-text .bm-item h4 {
	color: #19191a;
	margin-bottom: 20px;
}

.blog-details-text .bd-more-text .bm-item p {
	font-size: 18px;
	color: #707079;
	line-height: 30px;
}

.blog-details-text .tag-share {
	overflow: hidden;
	border-top: 1px solid #ebebeb;
	padding-top: 30px;
	margin-bottom: 75px;
}

.blog-details-text .tag-share .tags {
	float: left;
}

.blog-details-text .tag-share .tags a {
	font-size: 12px;
	color: #707079;
	background: #ebebeb;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-block;
	padding: 4px 16px;
	border-radius: 2px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin-right: 6px;
}

.blog-details-text .tag-share .tags a:hover {
	color: #ffffff;
	background: #dfa974;
}

.blog-details-text .tag-share .social-share {
	float: right;
}

.blog-details-text .tag-share .social-share span {
	display: inline-block;
	font-size: 18px;
	color: #707079;
}

.blog-details-text .tag-share .social-share a {
	display: inline-block;
	font-size: 16px;
	color: #707079;
	margin-left: 30px;
}

.blog-details-text .comment-option {
	margin-bottom: 75px;
}

.blog-details-text .comment-option h4 {
	color: #19191a;
	margin-bottom: 35px;
}

.blog-details-text .comment-option .single-comment-item {
	margin-bottom: 30px;
}

.blog-details-text .comment-option .single-comment-item.first-comment .sc-text {
	padding-left: 22px;
}

.blog-details-text .comment-option .single-comment-item.first-comment .sc-text:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 255px;
	background: #ebebeb;
	content: "";
}

.blog-details-text .comment-option .single-comment-item.reply-comment {
	padding-left: 120px;
	margin-bottom: 52px;
}

.blog-details-text .comment-option .single-comment-item.second-comment .sc-text {
	padding-left: 22px;
}

.blog-details-text .comment-option .single-comment-item.second-comment .sc-text:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 100px;
	background: #ebebeb;
	content: "";
}

.blog-details-text .comment-option .single-comment-item .sc-author {
	float: left;
	margin-right: 28px;
}

.blog-details-text .comment-option .single-comment-item .sc-author img {
	height: 70px;
	width: 70px;
	border-radius: 50%;
}

.blog-details-text .comment-option .single-comment-item .sc-text {
	display: table;
	position: relative;
}

.blog-details-text .comment-option .single-comment-item .sc-text span {
	font-size: 12px;
	color: #dfa974;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.blog-details-text .comment-option .single-comment-item .sc-text h5 {
	font-size: 20px;
	color: #19191a;
	margin-top: 4px;
	margin-bottom: 8px;
}

.blog-details-text .comment-option .single-comment-item .sc-text p {
	color: #707079;
	margin-bottom: 18px;
}

.blog-details-text .comment-option .single-comment-item .sc-text a {
	display: inline-block;
	color: #19191a;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 5px 24px;
	border: 1px solid #F9EEE3;
	border-radius: 50px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin-right: 10px;
}

.blog-details-text .comment-option .single-comment-item .sc-text a:hover {
	background: #dfa974;
	color: #ffffff;
	border-color: #dfa974;
}

.blog-details-text .leave-comment h4 {
	color: #19191a;
	margin-bottom: 35px;
}

.blog-details-text .leave-comment .comment-form input {
	width: 100%;
	height: 50px;
	color: #707079;
	font-size: 16px;
	padding-left: 20px;
	border: 1px solid #e5e5e5;
	border-radius: 2px;
	margin-bottom: 20px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.blog-details-text .leave-comment .comment-form input:focus {
	border-color: #dfa974;
}

.blog-details-text .leave-comment .comment-form textarea {
	width: 100%;
	height: 116px;
	color: #707079;
	font-size: 16px;
	padding-left: 20px;
	border: 1px solid #e5e5e5;
	border-radius: 2px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin-bottom: 42px;
	resize: none;
	padding-top: 12px;
}

.blog-details-text .leave-comment .comment-form textarea:focus {
	border-color: #dfa974;
}

.blog-details-text .leave-comment .comment-form button {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 2px;
	background: #dfa974;
	border: none;
	padding: 14px 42px 13px;
	display: inline-block;
	border-radius: 2px;
}

/*---------------------
  Recommend Blog
-----------------------*/

.recommend-blog-section {
	padding-top: 65px;
	padding-bottom: 50px;
}

.recommend-blog-section .section-title {
	margin-bottom: 37px;
}

.recommend-blog-section .section-title h2 {
	margin-top: 0;
}

/*---------------------
  Contact Section
-----------------------*/

.contact-section {
	padding-top: 80px;
	padding-bottom: 80px;
}

.contact-text h2 {
	font-size: 44px;
	color: #19191a;
	margin-bottom: 24px;
}

.contact-text p {
	color: #707079;
}

.contact-text table tbody tr td {
	font-size: 16px;
	color: #19191a;
	line-height: 36px;
	font-weight: 500;
}

.contact-text table tbody tr td.c-o {
	color: #707079;
	width: 75px;
}

.contact-form input {
	width: 100%;
	height: 50px;
	border: 1px solid #e1e1e1;
	font-size: 16px;
	color: #aaaab3;
	padding-left: 25px;
	margin-bottom: 28px;
}

.contact-form input::-webkit-input-placeholder {
	color: #aaaab3;
}

.contact-form input::-moz-placeholder {
	color: #aaaab3;
}

.contact-form input:-ms-input-placeholder {
	color: #aaaab3;
}

.contact-form input::-ms-input-placeholder {
	color: #aaaab3;
}

.contact-form input::placeholder {
	color: #aaaab3;
}

.contact-form textarea {
	width: 100%;
	height: 150px;
	border: 1px solid #e1e1e1;
	font-size: 16px;
	color: #aaaab3;
	padding-left: 25px;
	padding-top: 12px;
	margin-bottom: 33px;
	resize: none;
}

.contact-form textarea::-webkit-input-placeholder {
	color: #aaaab3;
}

.contact-form textarea::-moz-placeholder {
	color: #aaaab3;
}

.contact-form textarea:-ms-input-placeholder {
	color: #aaaab3;
}

.contact-form textarea::-ms-input-placeholder {
	color: #aaaab3;
}

.contact-form textarea::placeholder {
	color: #aaaab3;
}

.contact-form button {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 2px;
	background: #dfa974;
	border: none;
	padding: 14px 34px 13px;
	display: inline-block;
}

.map {
	height: 470px;
	-webkit-box-shadow: 0px 14px 35px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 14px 35px rgba(0, 0, 0, 0.15);
	margin-top: 75px;
}

.map iframe {
	width: 100%;
}

/*-------------------------------- Respinsive Media Styles --------------------------------*/

@media only screen and (min-width: 1554px) and (max-width: 1920px) {
	.hp-room-items .hp-room-item .hr-text {
		bottom: -200px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1250px) {
	.hp-room-items .hp-room-item .hr-text {
		bottom: -288px;
	}
}

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

/* Medium Device: 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.testimonial-slider.owl-carousel .owl-nav button {
		left: -150px;
	}

	.testimonial-slider.owl-carousel .owl-nav button.owl-next {
		right: -150px;
	}

	.hp-room-items .hp-room-item .hr-text {
		bottom: -322px;
	}

	.hp-room-items .hp-room-item:hover .hr-text {
		bottom: 80px;
	}
}

@media only screen and (max-width: 991px) {
	.top-nav {
		display: none;
	}

	.menu-item .nav-menu {
		display: none;
	}

	.offcanvas-menu-overlay {
		position: fixed;
		left: 0;
		top: 0;
		background: rgba(0, 0, 0, 0.7);
		z-index: 98;
		height: 100%;
		width: 100%;
		visibility: hidden;
		-webkit-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
	}

	.offcanvas-menu-overlay.active {
		visibility: visible;
	}

	.canvas-open {
		position: absolute;
		right: 40px;
		top: 25px;
		font-size: 22px;
		width: 30px;
		height: 30px;
		color: #19191a;
		border: 1px solid #19191a;
		border-radius: 2px;
		line-height: 33px;
		text-align: center;
		z-index: 100;
		display: block;
		cursor: pointer;
	}

	.offcanvas-menu-wrapper {
		position: fixed;
		left: -300px;
		top: 0;
		width: 300px;
		z-index: 999;
		background: #ffffff;
		text-align: center;
		overflow-y: auto;
		height: 100%;
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		transition: all 0.5s;
		padding: 80px 30px 30px 30px;
		display: block;
	}

	.offcanvas-menu-wrapper .canvas-close {
		height: 30px;
		width: 30px;
		border: 1px solid #19191a;
		border-radius: 50%;
		text-align: center;
		line-height: 30px;
		cursor: pointer;
		position: absolute;
		right: 30px;
		top: 30px;
		padding-right: 1px;
	}

	.offcanvas-menu-wrapper .search-icon {
		color: #19191a;
		text-align: center;
		cursor: pointer;
		margin-bottom: 10px;
	}

	.offcanvas-menu-wrapper .header-configure-area {
		margin-bottom: 30px;
	}

	.offcanvas-menu-wrapper .header-configure-area .language-option {
		display: inline-block;
		cursor: pointer;
		padding: 13px 0;
		position: relative;
		margin-bottom: 10px;
	}

	.offcanvas-menu-wrapper .header-configure-area .language-option:hover .flag-dropdown {
		top: 40px;
		opacity: 1;
		visibility: visible;
	}

	.offcanvas-menu-wrapper .header-configure-area .language-option img {
		height: 26px;
		width: 26px;
		border-radius: 50%;
		margin-right: 10px;
	}

	.offcanvas-menu-wrapper .header-configure-area .language-option span {
		font-size: 16px;
		color: #19191a;
		text-transform: uppercase;
		font-weight: 500;
	}

	.offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown {
		position: absolute;
		left: 0;
		top: 60px;
		width: 100px;
		background: #ffffff;
		display: block;
		padding: 10px 15px;
		-webkit-box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
		box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
		z-index: 99;
	}

	.offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown ul li {
		list-style: none;
		text-align: left;
	}

	.offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown ul li a {
		font-size: 14px;
		text-transform: uppercase;
		font-weight: 500;
		color: #19191a;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}

	.offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown ul li a:hover {
		color: #dfa974;
	}

	.offcanvas-menu-wrapper .header-configure-area .bk-btn {
		display: inline-block;
		font-size: 13px;
		font-weight: 700;
		padding: 16px 28px 15px;
		background: #dfa974;
		color: #ffffff;
		text-transform: uppercase;
		letter-spacing: 2px;
	}

	.offcanvas-menu-wrapper .mainmenu {
		display: none;
	}

	.offcanvas-menu-wrapper .slicknav_menu {
		background: transparent;
		padding: 0;
	}

	.offcanvas-menu-wrapper .slicknav_menu .slicknav_btn {
		float: none;
		margin: 0 0 10px 0;
		display: none;
	}

	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav {
		display: block !important;
	}

	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul {
		margin: 0;
		text-align: left;
	}

	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li .dropdown {
		padding-left: 20px;
	}

	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li a {
		margin: 0;
		padding: 10px;
		font-weight: 600;
		font-size: 14px;
		color: #19191a;
		border-bottom: 1px solid #e5e5e5;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}

	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li a:hover {
		border-radius: 0;
		background: transparent;
		color: #dfa974;
	}

	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row a {
		border-bottom: 0;
		padding-left: 0;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}

	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row span {
		color: #19191a;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}

	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row:hover a {
		color: #dfa974;
	}

	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row:hover span {
		color: #dfa974;
	}

	.offcanvas-menu-wrapper .top-social {
		display: inline-block;
		margin-top: 30px;
		margin-bottom: 20px;
	}

	.offcanvas-menu-wrapper .top-social a {
		display: inline-block;
		font-size: 16px;
		color: #19191a;
		margin-right: 20px;
	}

	.offcanvas-menu-wrapper .top-social a:last-child {
		margin-right: 0;
	}

	.offcanvas-menu-wrapper .top-widget li {
		list-style: none;
		font-size: 16px;
		color: #19191a;
		font-weight: 500;
		line-height: 28px;
	}

	.offcanvas-menu-wrapper .top-widget li i {
		color: #dfa974;
		margin-right: 4px;
	}

	.offcanvas-menu-wrapper.show-offcanvas-menu-wrapper {
		left: 0;
		opacity: 1;
		visibility: visible;
	}

	.about-text {
		margin-bottom: 30px;
	}

	.footer-section .copyright-option ul {
		text-align: center;
		margin-bottom: 10px;
	}

	.footer-section .copyright-option .co-text {
		text-align: center;
	}

	.about-pic img {
		margin-bottom: 20px;
	}

	.room-booking {
		padding: 0;
		margin-top: 40px;
	}

	.contact-form {
		padding-top: 30px;
	}

	.hero-text {
		margin-bottom: 40px;
	}
}

/* Tablet Device: 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.testimonial-slider.owl-carousel .owl-nav button {
		left: -30px;
	}

	.testimonial-slider.owl-carousel .owl-nav button.owl-next {
		right: -30px;
	}

	.hp-room-items {
		margin: 0;
	}

	.hp-room-item {
		margin-bottom: 15px;
	}
}

/* Large Mobile: 480px */

@media only screen and (max-width: 767px) {
	.testimonial-slider.owl-carousel .owl-nav {
		display: none;
	}

	.room-details-item .rd-text .rd-title {
		margin-bottom: 25px;
	}

	.room-details-item .rd-text .rd-title h3 {
		float: none;
		margin-bottom: 30px;
	}

	.room-details-item .rd-text .rd-title .rdt-right {
		float: none;
		text-align: left;
	}

	.footer-section .copyright-option ul li {
		margin-right: 25px;
	}

	.blog-details-text .tag-share .tags {
		float: none;
		margin-bottom: 20px;
	}

	.blog-details-text .tag-share .social-share {
		float: none;
	}

	.about-text .section-title h2 {
		font-size: 30px;
		line-height: 40px;
	}

	.hp-room-items {
		margin: 0 -5px;
	}

	.hp-room-item {
		margin-bottom: 10px;
	}
}

/* Small Mobile: 320px */

@media only screen and (max-width: 479px) {
	.footer-section .copyright-option ul li {
		margin-bottom: 5px;
	}

	.video-section {
		padding-top: 80px;
	}

	.rd-reviews .review-item .ri-pic,
	.blog-details-text .comment-option .single-comment-item .sc-author {
		float: none;
		margin-bottom: 30px;
	}

	.rd-reviews .review-item .ri-text .rating {
		position: relative;
	}

	.rd-reviews .review-item .ri-text,
	.blog-details-text .comment-option .single-comment-item.second-comment .sc-text,
	.blog-details-text .comment-option .single-comment-item.first-comment .sc-text {
		padding-left: 0;
	}

	.blog-details-text .comment-option .single-comment-item.reply-comment {
		padding-left: 30px;
	}

	.rd-reviews .review-item .ri-text:before,
	.blog-details-text .comment-option .single-comment-item.first-comment .sc-text:before,
	.blog-details-text .comment-option .single-comment-item.second-comment .sc-text:before {
		display: none;
	}

	.blog-details-hero {
		padding-top: 70px;
	}

	.blog-details-text .bd-pic .bp-item {
		width: 100%;
		float: none;
		margin-right: 0;
		margin-bottom: 10px;
	}

	.blog-details-text .tag-share .tags a {
		margin-bottom: 6px;
	}

	.blog-details-text .comment-option .single-comment-item .sc-text a {
		margin-bottom: 10px;
	}
}

.hs-item {
	position: relative;
	background-size: cover;
	background-position: center;
}

.hs-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.45);
	/* 45% black overlay */
	z-index: 1;
}

.hs-item>* {
	position: relative;
	z-index: 2;
	/* Bring text/content above the overlay */
}

.hs-item {
	position: relative;
	background-size: cover;
	background-position: center;
}

.hs-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.45);
	/* 45% black overlay */
	z-index: 1;
}

.hs-item>* {
	position: relative;
	z-index: 2;
	/* Bring text/content above the overlay */
}

.hs-item {
	position: relative;
	background-size: cover;
	background-position: center;
}

.hs-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.45);
	/* 45% black overlay */
	z-index: 1;
}

.hs-item>* {
	position: relative;
	z-index: 2;
	/* Bring text/content above the overlay */
}

.hs-item {
	position: relative;
	background-size: cover;
	background-position: center;
}

.hs-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.75);
	/* 45% black overlay */
	z-index: 1;
}

.hs-item>* {
	position: relative;
	z-index: 2;
	/* Bring text/content above the overlay */
}

#google_translate_element select {
	background: #007bff;
	color: white;
	border: none;
	padding: 8px 12px;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
	font-size: 14px;
}

#google_translate_element select:hover {
	background: #0056b3;
}

/* FIXES */
.card-dark input::placeholder,
.card-dark textarea::placeholder {
	color: rgba(255, 255, 255, 0.5) !important;
}

.card-dark .form-label,
.card-dark label {
	color: #f8f9fa !important;
}

.card-dark .form-label.small {
	color: rgba(255, 255, 255, 0.7) !important;
}

.card-dark .form-control,
.card-dark .form-select {
	background: #2e3448 !important;
	color: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.card-dark .form-control:focus,
.card-dark .form-select:focus {
	border-color: #dfa974 !important;
	box-shadow: 0 0 0 0.2rem rgba(223, 169, 116, 0.25) !important;
	color: #ffffff !important;
	background: #2e3448 !important;
}

.card-dark input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 30px #2e3448 inset !important;
	-webkit-text-fill-color: #ffffff !important;
}

.form-container-responsive {
	width: 100%;
	max-width: 550px;
	margin: 0 auto;
	padding: 30px;
}

@media (min-width: 1200px) {
	.form-container-responsive {
		max-width: 600px;
	}
}

@media (min-width: 1600px) {
	.form-container-responsive {
		max-width: 650px;
	}
}

@media (max-width: 576px) {
	.form-container-responsive {
		padding: 20px 15px;
		max-width: 100%;
	}
}

.hissa-form-card {
	width: 100% !important;
	max-width: 600px;
	margin: 0 auto;
}

@media (min-width: 1400px) {
	.hissa-form-card {
		max-width: 700px;
	}
}

@media (min-width: 1920px) {
	.hissa-form-card {
		max-width: 750px;
	}
}

@media (max-width: 768px) {
	.hissa-form-card {
		max-width: 100%;
		padding: 20px 15px;
	}
}

/* TEXT VISIBILITY FIXES */
.text-white-85 {
	color: rgba(255, 255, 255, 0.85) !important;
}

.text-white-70 {
	color: rgba(255, 255, 255, 0.7) !important;
}

/* Footer Fixes */
footer,
footer p,
footer li,
footer span {
	color: rgba(255, 255, 255, 0.85);
}

footer a,
.footer-section a {
	color: #dfa974;
	text-decoration: none;
	transition: 0.3s;
	cursor: pointer !important;
	pointer-events: auto !important;
	position: relative;
	z-index: 10;
}

footer a:hover,
.footer-section a:hover {
	color: #ffffff !important;
	text-decoration: none !important;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
	color: #ffffff !important;
}

/* Form Labels - Dark Mode */
.card-dark .form-label {
	color: #f8f9fa !important;
}

.card-dark .form-label.small {
	color: rgba(255, 255, 255, 0.7) !important;
}

.card-dark input::placeholder {
	color: rgba(255, 255, 255, 0.4) !important;
}

.custom-card.card-dark .text-muted {
	color: rgba(255, 255, 255, 0.6) !important;
}

/* Table Dark Text */
.table-dark td {
	color: rgba(255, 255, 255, 0.85) !important;
}

.table-dark th {
	color: #ffffff !important;
}

/* Sidebar Dropdown Text */
.dropdown-container a {
	color: #cbd5e0 !important;
}

.dropdown-container a:hover {
	color: #ffffff !important;
}

/* Text Gold Utility Class */
.text-gold {
	color: var(--primary-accent) !important;
}

/* Text Selection and Highlighting */
.text-gold::selection {
	background-color: rgba(223, 169, 116, 0.3) !important;
	color: var(--primary-accent) !important;
}

.text-gold::-moz-selection {
	background-color: rgba(223, 169, 116, 0.3) !important;
	color: var(--primary-accent) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	user-select: text !important;
	-webkit-user-select: text !important;
	-moz-user-select: text !important;
	-ms-user-select: text !important;
}

/* Ensure all text can be highlighted */
* {
	user-select: text !important;
	-webkit-user-select: text !important;
	-moz-user-select: text !important;
	-ms-user-select: text !important;
}

/* Specific rules for paragraphs and inputs to ensure selection */
p,
input,
textarea,
label,
span,
div {
	user-select: text !important;
	-webkit-user-select: text !important;
	-moz-user-select: text !important;
	-ms-user-select: text !important;
}

/* Remove any pointer-events restrictions that might prevent selection */
p,
input,
textarea,
label,
span,
div {
	pointer-events: auto !important;
}

/* Ensure Bootstrap form controls can be selected */
.form-control,
.form-control-custom,
.form-select,
.btn,
.nav-link {
	user-select: text !important;
	-webkit-user-select: text !important;
	-moz-user-select: text !important;
	-ms-user-select: text !important;
	pointer-events: auto !important;
}

/* Ensure text elements can be selected */
.text-white,
.text-white-70,
.text-muted,
.text-dark,
.text-gold {
	user-select: text !important;
	-webkit-user-select: text !important;
	-moz-user-select: text !important;
	-ms-user-select: text !important;
}

/* Nav Pills Custom Styling */
.nav-pills .nav-link {
	color: var(--text-dark);
	background: transparent;
	transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
	color: var(--primary-accent);
}

.nav-pills .nav-link.active {
	background-color: var(--primary-accent) !important;
	color: #ffffff !important;
}

/* Auth Split Layout */
.auth-wrapper {
	min-height: 100vh;
	display: flex;
}

.auth-left {
	background-color: var(--primary-dark);
	flex: 0 0 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px;
	position: relative;
	overflow: hidden;
}

.auth-left::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23dfa974' fill-opacity='0.05'%3E%3Cpath d='M40 0l10 30h30L55 50l10 30-25-20-25 20 10-30-25-20h30z'/%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.5;
}

.auth-left-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 450px;
}

.auth-left-content h1 {
	font-size: 42px;
	color: var(--primary-accent);
	margin-bottom: 10px;
}

.auth-left-content .tagline {
	font-size: 20px;
	color: #ffffff;
	margin-bottom: 20px;
}

.auth-left-content .description {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 30px;
}

.auth-features {
	text-align: left;
	display: inline-block;
}

.auth-features div {
	color: #ffffff;
	margin-bottom: 12px;
	font-size: 15px;
}

.auth-features i {
	color: var(--primary-accent);
	margin-right: 10px;
}

.auth-right {
	background-color: #faf7f2;
	flex: 0 0 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}

.auth-form-card {
	width: 100%;
	max-width: 440px;
}

@media (max-width: 991px) {
	.auth-left {
		display: none;
	}

	.auth-right {
		flex: 0 0 100%;
		padding: 20px;
	}
}

@media (max-width: 767px) {
	.auth-right {
		background-color: var(--primary-dark);
	}

	.auth-form-card .custom-card {
		box-shadow: none !important;
		background: transparent !important;
		padding: 0 !important;
	}
}

.back-home {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 100;
}

.back-home a {
	color: var(--primary-accent);
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
}

.back-home a:hover {
	color: #ffffff;
}

.letter-spacing-2 {
	letter-spacing: 2px;
}

/* ============================================
   MODERN LANGUAGE SWITCHER STYLES
   ============================================ */

/* Main Language Switcher Container */
.lang-switcher {
	position: relative;
	display: inline-flex;
	align-items: center;
}

/* Language Dropdown Toggle Button */
.lang-switcher .dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	background: var(--primary-dark);
	border: 1px solid rgba(223, 169, 116, 0.3);
	border-radius: 8px;
	color: var(--text-light);
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.lang-switcher .dropdown-toggle:hover {
	border-color: var(--primary-accent);
	box-shadow: 0 0 0 3px rgba(223, 169, 116, 0.15);
}

.lang-switcher .dropdown-toggle img {
	width: 20px;
	height: 14px;
	border-radius: 2px;
	object-fit: cover;
}

.lang-switcher .dropdown-toggle .lang-name {
	display: none;
}

@media (min-width: 768px) {
	.lang-switcher .dropdown-toggle .lang-name {
		display: inline;
	}
}

.lang-switcher .dropdown-toggle i {
	font-size: 10px;
	color: var(--primary-accent);
	transition: transform 0.3s ease;
}

.lang-switcher.show .dropdown-toggle i {
	transform: rotate(180deg);
}

/* Language Dropdown Menu */
.lang-switcher .dropdown-menu {
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 180px;
	background: var(--primary-dark);
	border: 1px solid rgba(223, 169, 116, 0.2);
	border-radius: 10px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	padding: 8px 0;
	margin-top: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.25s ease;
	z-index: 1000;
}

.lang-switcher.show .dropdown-menu {
	display: block !important;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.lang-switcher .dropdown-menu::before {
	content: '';
	position: absolute;
	top: -6px;
	right: 20px;
	width: 12px;
	height: 12px;
	background: var(--primary-dark);
	border-left: 1px solid rgba(223, 169, 116, 0.2);
	border-top: 1px solid rgba(223, 169, 116, 0.2);
	transform: rotate(45deg);
}

/* Language Menu Items */
.lang-switcher .dropdown-menu a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	color: var(--text-light);
	text-decoration: none;
	font-size: 13px;
	transition: all 0.2s ease;
}

.lang-switcher .dropdown-menu a:hover {
	background: rgba(223, 169, 116, 0.1);
	color: var(--primary-accent);
}

.lang-switcher .dropdown-menu a.active {
	background: rgba(223, 169, 116, 0.15);
	color: var(--primary-accent);
}

.lang-switcher .dropdown-menu a img {
	width: 20px;
	height: 14px;
	border-radius: 2px;
	object-fit: cover;
}

/* Mobile Language Switcher */
@media (max-width: 767px) {
	.lang-switcher .dropdown-toggle {
		padding: 6px 8px;
	}

	.lang-switcher .dropdown-menu {
		position: fixed;
		top: auto;
		bottom: 0;
		left: 0;
		right: 0;
		min-width: auto;
		border-radius: 16px 16px 0 0;
		max-height: 60vh;
		overflow-y: auto;
		transform: translateY(100%);
	}

	.lang-switcher.show .dropdown-menu {
		transform: translateY(0);
	}

	.lang-switcher .dropdown-menu::before {
		display: none;
	}
}

/* GTranslate Widget Custom Container */
.gtranslate-wrapper {
	display: inline-block;
}

/* Hide default GTranslate floating widget */
.gt_float_switcher {
	display: none !important;
}

.text-gold {
	color: var(--primary-accent) !important;
}

.hover-gold:hover {
	color: var(--primary-accent) !important;
}

.hover-bg-dark:hover {
	background: rgba(255, 255, 255, 0.05) !important;
}


.lang-settings-card {
	background: var(--card-dark);
	border-radius: 16px;
	padding: 2rem;
}

.lang-option {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 2px solid transparent;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.lang-option:hover {
	background: rgba(223, 169, 116, 0.05);
	border-color: rgba(223, 169, 116, 0.3);
}

.lang-option.selected {
	border-color: var(--primary-accent);
	background: rgba(223, 169, 116, 0.1);
}

.lang-option .lang-flag {
	width: 48px;
	height: 36px;
	border-radius: 6px;
	object-fit: cover;
	font-size: 32px;
	text-align: center;
	line-height: 36px;
}

.lang-option .lang-info {
	flex: 1;
}

.lang-option .lang-info .lang-native {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-light);
	margin-bottom: 2px;
}

.lang-option .lang-info .lang-english {
	font-size: 13px;
	color: var(--text-muted);
}

.lang-option .check-icon {
	width: 24px;
	height: 24px;
	background: var(--primary-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-dark);
	font-size: 12px;
	opacity: 0;
	transform: scale(0);
	transition: all 0.3s ease;
}

.lang-option.selected .check-icon {
	opacity: 1;
	transform: scale(1);
}

.lang-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Current Language Display */
.current-lang-display {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	background: rgba(223, 169, 116, 0.1);
	border: 1px solid rgba(223, 169, 116, 0.3);
	border-radius: 12px;
	margin-bottom: 24px;
}

.current-lang-display .lang-flag {
	width: 40px;
	height: 30px;
	border-radius: 4px;
	object-fit: cover;
	font-size: 28px;
}

.current-lang-display .lang-text {
	flex: 1;
}

.current-lang-display .lang-text .label {
	font-size: 12px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.current-lang-display .lang-text .value {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-accent);
}

/* Profile Language Section */
.profile-lang-section {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 10px;
	margin-bottom: 16px;
}

.profile-lang-section i {
	width: 40px;
	height: 40px;
	background: rgba(223, 169, 116, 0.1);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-accent);
	font-size: 18px;
}

.profile-lang-section .lang-details {
	flex: 1;
	text-align: left;
}

.profile-lang-section .lang-details .label {
	font-size: 12px;
	color: var(--text-muted);
}

.profile-lang-section .lang-details .value {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-light);
}

/* Split-Screen Layout for Calculator */
.calc-split-container {
	min-height: calc(100vh - 80px);
	/* Subtracting nav height approx */
	background: var(--body-bg);
	display: flex;
	flex-wrap: wrap;
}

.calc-guidance-panel {
	background-color: var(--primary-dark);
	color: var(--text-light);
	padding: 60px 50px;
	position: relative;
	overflow: hidden;
	background-image: url('../img/pattern-subtle.png');
	background-blend-mode: overlay;
	background-size: 300px;
}

.calc-guidance-panel::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 50% 50%, rgba(223, 169, 116, 0.05) 0%, transparent 80%);
	pointer-events: none;
}

.calc-form-panel {
	background-color: #faf7f2;
	padding: 60px 40px;
}

.calc-step-number {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--primary-accent);
	margin-bottom: 10px;
	display: block;
	font-weight: 600;
}

.calc-page-title {
	font-size: 2.2rem;
	font-family: 'Amiri', serif;
	color: var(--primary-accent);
	margin-bottom: 25px;
}

.calc-guidance-text {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 40px;
	opacity: 0.9;
}

.field-explanation-item {
	margin-bottom: 20px;
	padding-left: 15px;
	border-left: 2px solid var(--primary-accent);
}

.field-explanation-item strong {
	display: block;
	color: var(--primary-accent);
	margin-bottom: 4px;
}

.islamic-ref-box {
	background: rgba(223, 169, 116, 0.1);
	border-radius: 8px;
	padding: 20px;
	margin-top: 40px;
	border: 1px solid rgba(223, 169, 116, 0.2);
}

.ref-quote {
	font-family: 'Amiri', serif;
	font-size: 1.2rem;
	margin-bottom: 10px;
	display: block;
	text-align: right;
	color: var(--primary-accent);
}

.ref-cite {
	font-size: 0.8rem;
	color: #ccc;
	font-style: italic;
}

.tips-box {
	margin-top: 40px;
	font-size: 0.9rem;
	color: #bbb;
}

.tips-box-title {
	color: var(--primary-accent);
	font-weight: 600;
	margin-bottom: 10px;
	display: block;
	text-transform: uppercase;
	font-size: 0.75rem;
}

/* Step Indicator */
.calc-step-indicator {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 500px;
	margin: 0 auto 50px;
	position: relative;
	padding: 0 10px;
}

.calc-step-indicator::before {
	content: "";
	position: absolute;
	top: 15px;
	left: 40px;
	right: 40px;
	height: 2px;
	background: #e0e0e0;
	z-index: 1;
}

.calc-step-dot-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 2;
	position: relative;
	width: 80px;
}

.calc-step-dot {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: white;
	border: 2px solid #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 0.9rem;
	color: #999;
	transition: all 0.3s;
}

.calc-step-dot.completed {
	background: var(--primary-accent);
	border-color: var(--primary-accent);
	color: white;
}

.calc-step-dot.active {
	background: white;
	border-color: var(--primary-accent);
	color: var(--primary-accent);
	box-shadow: 0 0 0 4px var(--focus-glow);
	animation: pulse-step 2s infinite;
}

.calc-step-label {
	font-size: 0.65rem;
	margin-top: 8px;
	color: #999;
	text-transform: uppercase;
	white-space: nowrap;
	font-weight: 600;
	text-align: center;
}

.calc-step-dot.active+.calc-step-label,
.calc-step-dot.completed+.calc-step-label {
	color: var(--primary-dark);
}

@keyframes pulse-step {
	0% {
		box-shadow: 0 0 0 0 rgba(223, 169, 116, 0.7);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(223, 169, 116, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(223, 169, 116, 0);
	}
}

.calc-bismillah-text {
	font-family: 'Amiri', serif;
	font-size: 1.8rem;
	text-align: center;
	color: var(--primary-dark);
	margin-bottom: 25px;
	opacity: 0.8;
}

.calc-form-card {
	background: var(--card-dark);
	padding: 40px;
	border-radius: 12px;
	width: 100%;
	max-width: 600px;
	border-top: 5px solid var(--primary-accent);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
	margin: 0 auto;
}

.calc-form-card .form-label {
	color: var(--primary-accent);
}

.calc-nav-btns {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	gap: 15px;
}

@media (max-width: 991.98px) {
	.calc-guidance-panel {
		display: none !important;
	}

	.calc-form-panel {
		padding: 40px 20px;
	}

	.calc-step-indicator {
		margin-bottom: 30px;
	}
}

/* Make search placeholder gold */
#searchInput::placeholder {
	color: var(--primary-accent) !important;
	opacity: 0.8;
}

#searchInput::-webkit-input-placeholder {
	color: var(--primary-accent) !important;
	opacity: 0.8;
}

#searchInput::-moz-placeholder {
	color: var(--primary-accent) !important;
	opacity: 0.8;
}

#searchInput:-ms-input-placeholder {
	color: var(--primary-accent) !important;
	opacity: 0.8;
}

/* =========================================
   GLOBAL GOLD PLACEHOLDER STYLES
   ========================================= */

/* Gold placeholder for all inputs */
::placeholder {
	color: #dfa974 !important;
	opacity: 0.7;
}

:-ms-input-placeholder {
	color: #dfa974 !important;
	opacity: 0.7;
}

::-ms-input-placeholder {
	color: #dfa974 !important;
	opacity: 0.7;
}

/* Gold placeholder for dark themed inputs */
.form-control-custom::placeholder {
	color: #dfa974 !important;
	opacity: 0.7;
}

/* Gold placeholder for textareas */
textarea::placeholder {
	color: #dfa974 !important;
	opacity: 0.7;
}

/* Gold placeholder for select default option */
select option[value=""][disabled] {
	color: #dfa974;
}

/* =========================================
   INPUT TEXT VISIBILITY FIXES
   ========================================= */

/* Default Bootstrap form-control on light bg */
.form-control {
	color: #333333;
}

/* Dark background inputs - white text */
.card-dark input,
.card-dark textarea,
.card-dark select,
.card-dark .form-control,
.form-control-custom,
[style*="background: #2e3448"] input,
[style*="background:#2e3448"] input {
	color: #ffffff !important;
}

.card-dark input:focus,
.card-dark textarea:focus,
.card-dark select:focus,
.form-control-custom:focus {
	color: #ffffff !important;
}

/* Override for dark cards */
.card-dark .form-control {
	color: #ffffff !important;
}

/* Light background inputs - dark text */
.bg-light input,
.bg-light textarea,
.bg-light select,
.bg-white input,
.bg-white textarea,
.bg-white select,
.card:not(.card-dark) input,
.card:not(.card-dark) textarea,
.card:not(.card-dark) select,
input.bg-light,
input[style*="background: white"],
input[style*="background:#fff"] {
	color: #333333 !important;
}

.bg-light input:focus,
.bg-light textarea:focus,
.bg-light select:focus,
.bg-white input:focus,
.bg-white textarea:focus,
.bg-white select:focus {
	color: #333333 !important;
}

/* Admin panel inputs - always dark text */
.admin-content input,
.admin-content textarea,
.admin-content select,
.admin-content .form-control {
	color: #333333 !important;
}

/* Mufti panel inputs - always dark text */
.mufti-content input,
.mufti-content textarea,
.mufti-content select {
	color: #333333 !important;
}

/* Autofill fix - for light backgrounds (default) */
input:-webkit-autofill {
	-webkit-text-fill-color: #333333 !important;
	transition: background-color 5000s ease-in-out 0s;
}

/* Autofill fix - only for dark backgrounds */
.card-dark input:-webkit-autofill,
.form-control-custom:-webkit-autofill {
	-webkit-text-fill-color: #ffffff !important;
}

/* =========================================
   LEFT PANEL GUIDANCE TEXT VISIBILITY
   ========================================= */

/* Ensure guide text is visible on dark background */
.calc-guidance-panel,
.auth-left {
	color: rgba(255, 255, 255, 0.85) !important;
}

.calc-guidance-panel p,
.calc-guidance-panel span,
.calc-guidance-panel li,
.calc-guidance-panel small,
.calc-guidance-panel .text-muted,
.calc-guidance-panel .text-secondary,
.auth-left p,
.auth-left span,
.auth-left li,
.auth-left small,
.auth-left .text-muted,
.auth-left .text-secondary {
	color: rgba(255, 255, 255, 0.85) !important;
}

.calc-guidance-panel h1,
.calc-guidance-panel h2,
.calc-guidance-panel h3,
.calc-guidance-panel h4,
.calc-guidance-panel h5,
.calc-guidance-panel h6,
.auth-left h1,
.auth-left h2,
.auth-left h3,
.auth-left h4,
.auth-left h5,
.auth-left h6 {
	color: #ffffff !important;
}

.calc-guidance-panel .opacity-75 {
	opacity: 0.9 !important;
	color: rgba(255, 255, 255, 0.85) !important;
}