/* ==================== [ Root CSS Start ] ==================== */
:root {
	/* Project Core */
	--white: #ffffff;
	--black: #000000;
	--black-05: rgba(0, 0, 0,.05);
	--transparent: #0000;

	/* Project Root */
	--primary: #FD5B00;
	--secondary: #CDD4CC;
	--secondary-25: rgba(205, 212, 204,.25);
	--secondary-50: rgba(205, 212, 204,.5);

	--body: #ffffff;
	

	--light: #F4F5F4;
	--dark: #1C1C1C;
	--gray: #6E6E5E;

	--color-jet: #303234;

	--font-primary: "Satoshi", sans-serif;
	--font-ppneuemontreal: "ppneuemontreal", sans-serif;
	--font-basicallyamono: 'Basically A Mono', sans-serif;

	--fw-400: 400;
	--fw-500: 500;
	--fw-700: 700;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	color: var(--dark);
	font-family: var(--font-primary);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 25px;
	background: var(--body);
	overflow-x: hidden;
	padding-top: 80px;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

main {
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* ==================== [ Root CSS End ] ==================== */

/* ==================== [ Typography Start ] ==================== */
figure {
	margin: 0;
}

strong,
b {
	font-weight: 700 !important;
}

a,
input,
button,
textarea {
	outline: none !important;
}

a {
	color: var(--dark);
	word-break: break-word;
	transition: all 0.3s ease-in-out;
}

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

p {
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	line-height: inherit;
	margin-bottom: 20px;
}

ol,
ul {
	margin-bottom: 20px;
	padding-left: 20px;
}

ol ol,
ol ul,
ul ol,
ul {
	margin-top: 10px;
	margin-bottom: 10px;
}

ol li,
ul li {
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

ol li::marker,
ul li::marker {
	color: var(--primary);
}

ul li:has(> ul),
ul li:has(> ol) {
	list-style-type: none;
}

blockquote {
	padding: 16px 16px 16px 24px;
	border-left: 5px solid var(--primary);
	margin-bottom: 20px;
	background-color: var(--white);
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

pre {
	background-color: var(--white);
	padding: 16px;
	overflow: auto;
	font-family: inherit;
	border-radius: 0;
	position: relative;
	color: var(--dark);
}

pre code {
	font-size: inherit;
	font-weight: inherit;
	font-family: inherit;
	line-height: inherit;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 16px;
	font-size: inherit;
}

th,
td {
	border: 1px solid rgba(0, 0, 0, 0.2);
	padding: 8px 12px;
	text-align: left;
}

th {
	background-color: rgba(0, 0, 0, 0.05);
	font-weight: 600;
	font-size: inherit;
	color: var(--dark);
}

td {
	background-color: var(--white);
	font-weight: 400;
	font-size: inherit;
	color: var(--dark);
}

h1, .h1 {
	color: var(--dark);
	font-family: var(--font-primary);
	font-weight: var(--fw-500);
	font-size: 64px;
	line-height: 77px;
	letter-spacing: -1.28px;
	margin-bottom: 20px;
}

h2, .h2 {
	color: var(--dark);
	font-family: var(--font-primary);
	font-weight: var(--fw-500);
	font-size: 44px;
	line-height: 53px;
	margin-bottom: 20px;
}

h2 span, .h2 span {
	color: var(--primary);
}

h2 strong, .h2 strong  {
	font-weight: var(--fw-500) !important;
}

h3, .h3 {
	color: var(--dark);
	font-family: var(--font-primary);
	font-weight: var(--fw-500);
	font-size: 28px;
	line-height: 34px;
	margin-bottom: 20px;
}

h4, .h4 {
	color: var(--dark);
	font-family: var(--font-primary);
	font-weight: var(--fw-500);
	font-size: 28px;
	line-height: 34px;
	margin-bottom: 20px;
}

h5, .h5 {
	color: var(--dark);
	font-family: var(--font-primary);
	font-weight: var(--fw-500);
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 20px;
}

h6, .h6 {
	color: var(--dark);
	font-family: var(--font-primary);
	font-weight: var(--fw-500);
	font-size: 22px;
	line-height: 28px;
	margin-bottom: 20px;
}


hr {
	margin-block: 20px;
}

.form-control:focus{
	box-shadow: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
}

textarea {
	resize: none;
}

/* ==================== [ Typography End ] ==================== */

/* ==================== [ Common Start ] ==================== */
.row {
	margin-inline: -20px;
	row-gap: 40px;
}

.row>* {
	padding-inline: 20px;
}

.img-cover * {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* ==================== [ Common End ] ==================== */

/* ==================== [ Common Heading Start ] ==================== */

.heading .sub-title  {
	padding: 4px;
	width: fit-content;
	background: var(--primary);
}

.heading .sub-title *{
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 14px;
	color: var(--white);
	text-transform: uppercase;
}

.heading .sub-title span{ 
	display: block;
}
/* ==================== [ Common Heading End ] ==================== */

/* ==================== [ Button Start ] ==================== */
.btn {
	width: fit-content;
	padding: 0;
	text-align: center;
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	letter-spacing: 0.16px;
	border-radius: 0;
	border: 0px solid;
	text-decoration: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
}

.btn-primary {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--dark);
    position: relative;
	padding: 16px 96px 16px 46px;
	border-color: var(--transparent) !important;
	outline: 1px solid var(--transparent);
	outline-offset: -1px;
}

.btn-primary .arrow {
	padding: 14px;
    background: var(--primary);
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
	display: flex;
    align-items: center;
    justify-content: center;
	transition: all 0.4s ease-in-out;
}

.btn-primary:focus,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-within,
.btn-primary:focus-visible {
	color: var(--dark);
	background-color: var(--white);
	border-color: var(--transparent);
	box-shadow: none;
	outline: 1px solid var(--dark) !important;
	outline-offset: -1px;
}

.btn-primary:focus .arrow,
.btn-primary:hover .arrow,
.btn-primary:active .arrow,
.btn-primary:focus-within .arrow,
.btn-primary:hover .arrow {
	background-color: var(--dark);
}

.btn-primary .arrow img {
	transition: all 0.4s ease-in-out;
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
}

.btn-primary:focus .arrow img,
.btn-primary:hover .arrow img,
.btn-primary:active .arrow img,
.btn-primary:focus-within .arrow img,
.btn-primary:hover .arrow img {
	transform: rotate(45deg);
	filter: brightness(1) invert(1);
	-webkit-filter: brightness(1) invert(1);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

.btn-primary-outline {
	background: transparent;
	color: var(--primary);
	border: 1px solid var(--primary);
	padding: 16px 20px;
}

.btn-primary-outline:focus,
.btn-primary-outline:hover,
.btn-primary-outline:active,
.btn-primary-outline:focus-within,
.btn-primary-outline:focus-visible {
	color: var(--dark);
	background-color: var(--white);
	border-color: var(--dark);
	box-shadow: none;
}

.btn-primary-outline.active {
	color: var(--white);
	background-color: var(--primary);
	border-color: var(--primary);
}

/* ==================== [ Button End ] ==================== */


/* ==================== [ Error 404 Start ] ==================== */
.error-404 {
	padding: 80px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 90vh;
}

.error-404 .heading {
	text-align: center;
}

.error-404 .action * {
	width: fit-content;
	margin: 0 auto;
}

.error-404 .btn-primary{
	margin: 0 auto;
}

/* ==================== [ Error 404 End ] ==================== */

/* ==================== [ Extra Common Start ] ==================== */
.container-fluid,
.container {
	padding-inline: 20px;
	margin: 0 auto;
}

.swiper-linear .swiper-wrapper {
	transition-timing-function: linear !important;
}

/* ==================== [ Extra Common End ] ==================== */


/* common-tag-mark */
.common-tag-mark {
	font-family: var(--font-primary);
	font-weight: 400;
	font-size: 24px;
	line-height: 120%;
	color: var(--white);
	margin-bottom: 25px;
}

.common-tag-mark > * {
	display: inline-block;
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	padding: 12px 20px;
	background: var(--dark);
	margin-top: 0;
	margin-bottom: 0;
}

.common-tag-mark a {
	text-decoration: none;
}

.common-tag-mark a:hover {
	color: var(--primary);
}

.common-tag-mark span {
	color: var(--primary);
	text-transform: uppercase;
}
/* common-tag-mark */

/* fix-width */
.fix-width-800 {
    max-width: 800px;
    width: 100%;
}
/* fix-width */
 
/* common-social-icons */
.common-social-icons {
    font-size: 24px;
    line-height: 100%;
    color: var(--black) !important;
}
 
.common-social-icons.white-layout {
    color: var(--white) !important;
}
 
.common-social-icons ul {
    display: inline-flex !important;
    flex-wrap: wrap !important;
    margin: 0 -4px !important;
    padding: 0 !important;
    list-style-type: none !important;
}
 
.common-social-icons ul li {
    display: inline-flex !important;
    flex-wrap: wrap !important;
    margin: 0 4px 8px !important;
    padding: 0 !important;
    list-style-type: none !important;
}
 
.common-social-icons ul li a {
    text-decoration: none !important;
    color: inherit !important;
}
 
.common-social-icons ul li a:hover {
    color: var(--primary) !important;
}
/* common-social-icons */

/* common-checkmark-list */
.common-checkmark-list ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
 
.common-checkmark-list ul li {
    position: relative;
    display: block;
    margin: 0 0 16px;
    padding: 0 0 0 26px;
    list-style-type: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: var(--dark);
}
 
.common-checkmark-list ul li:before {
    position: absolute;
    content: "";
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 5.25L4.25 8.75L12.25 0.75' stroke='%23FD5B00' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat;
    background-size: 12px 8px;
    background-position: center center;
}
 
.common-checkmark-list ul li a {
    text-decoration: none;
    color: inherit;
}
 
.common-checkmark-list ul li a:hover {
    color: var(--primary);
}
/* common-checkmark-list */

/* common-small-tag-mark */
.common-small-tag-mark {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 12px;
    line-height: 120%;
    color: var(--white);
    background: var(--primary);
    text-transform: uppercase;
    padding: 5px 6px 3px;
}
/* common-small-tag-mark */


/* ==================== [ Header Start ] ==================== */
.header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1050;
	background: var(--dark);
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

.header .navbar {
	padding: 0;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

.header .navbar .navbar-brand {
	width: 100%;
	max-width: 80px;
	padding: 0;
	margin: 0 0 0 -20px;
}

.header .navbar .navbar-brand * {
	width: 100%;
	height: 100%;
}

.header .navbar-expand-lg .navbar-collapse {
	justify-content: space-between;
	margin-left: 48px;
}

.header .navbar-nav {
	display: flex;
	align-items: center;
	gap: 48px;
	margin-top: 0;
}

.header .navbar-nav .nav-link {
	padding: 0;
	font-size: 18px;
	font-weight: 500;
	color: var(--secondary);
}

.header .navbar-nav .nav-link:focus-within,
.header .navbar-nav .nav-link:focus-visible,
.header .navbar-nav .nav-link:focus,
.header .navbar-nav .nav-link:active,
.header .navbar-nav .nav-link.active,
.header .navbar-nav .nav-link:hover {
	color: var(--primary);
}

.navbar-toggler {
	width: 16px;
	height: 13px;
	padding: 0;
	box-shadow: none !important;
	border: none;
}

.navbar-toggler .hamburger {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	flex-direction: column;
	justify-content: space-between;
}

.navbar-toggler .hamburger-toggle {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.navbar-toggler .hamburger span {
	width: 100%;
	height: 1px;
	background-color: var(--secondary);
	position: relative;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	border-radius: 0;
	overflow: hidden;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

.navbar-toggler .hamburger span:first-child {
	top: 6px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

.navbar-toggler .hamburger span:nth-child(2) {
	opacity: 0;
}

.navbar-toggler .hamburger span:last-child {
	margin: 0;
	top: -6px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
}

.navbar-toggler.collapsed .hamburger span {
	opacity: 1 !important;
	top: auto !important;
	transform: none !important;
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-ms-transform: none !important;
	-o-transform: none !important;
}

.header .header-btn .btn-primary-outline {
	font-size: 18px;
	font-weight: var(--fw-400);
	line-height: 16px;
	letter-spacing: 0.18px;
}

/* ==================== [ Header End ] ==================== */

/* ==================== [ Banner CSS Start ] ==================== */

.home-banner {
	position: relative;
	padding: 95px 0 124px 0;
}

.home-banner .banner-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.home-banner .banner-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: 0.4;
	z-index: 1;
}

.home-banner .home-banner-wrp{ 
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}

.banner-content .heading{
	color: var(--white);
}

.banner-content .heading .short-title{
	font-size: 16px;
	font-weight: 500;
	line-height: 22px;
	color: var(--white);
	margin-bottom: 8px;
}

.banner-content .heading .title *{
	color: var(--white);
	margin-bottom: 28px;
}

.banner-content .heading .disc {
	max-width: 674px;
	text-align: center;
	margin: 0 auto;
}

.banner-content .heading .disc *{
	font-size: 20px;
	line-height: 28px;
	font-weight: var(--fw-500);
	margin-bottom: 64px;
	color: var(--white);
}

.banner-content .search-wrapper {
	width: 100%;
    max-width: fit-content;
    margin: 0 auto 20px;
	display: flex;
    justify-content: center;
}

.banner-content .search-wrapper .search-group {
	display: flex;
	align-items: center;
	background: var(--white);
	gap: 10px;
	padding: 14px 20px;
}

.banner-content .search-wrapper .search-group input {
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	letter-spacing: 0.16px;
	border: none;
	background-color: transparent;
	padding: 0;
	width: 215px;
}

.banner-content .search-wrapper .search-group input::placeholder {
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	letter-spacing: 0.16px;
}

.banner-content .search-wrapper .btn.btn-search {
	padding: 14px 20px;
	color: var(--white);
	background: var(--primary);
	border: none;
}

.banner-content .search-wrapper .btn.btn-search:last-child  {
	border-left: 2px solid var(--dark);
}

.banner-content .search-wrapper .btn.btn-search:hover{
	background: var(--dark) ;
}

.banner-content .divider {
	font-family: 'Inter',sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
	color: var(--white);
	width: fit-content;
	margin: 20px auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	opacity: 0.70;
}

.banner-content .divider * {
	margin-bottom: 0px;
}

.banner-content .divider span {
	display: block;
	width: 74px;
	height: 1px;
	background: var(--white);
	padding: 0 24px;
}

.banner-content .banner-btn .btn{
	margin: 0 auto;
	border: none;
}

.banner .banner-bottom {
	padding: 28px 20px;
	background: var(--dark);
	position: relative;
	bottom: 0;
	z-index: 1;
}

.banner .banner-bottom .block-container {
	width: 100%;
	max-width: 1568px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.banner .banner-bottom .banner-block{
	width: 100%;
	max-width: 432px;
	display: flex;
	padding: 0 80px;
	border-left: 1px solid rgba(205, 212, 204, 0.4);
}

.banner .banner-bottom .banner-block:first-child {
	border-left: none;
}

.banner .banner-bottom .banner-block .icon{
	width: 40px;
	height: 40px;
	margin-right: 16px;
} 

.banner .banner-bottom .banner-block .content .number *{ 
	font-size: 35px;
	font-weight: 500;
	line-height: 42px;
	color: var(--primary);
	margin-bottom: 4px;
}

.banner .banner-bottom .banner-block .content .disc *{ 
	font-size: 16px;
	font-weight: 400;
	line-height: 19px;
	color: var(--white);
	margin-bottom: 0;
}

.banner .banner-bottom .banner-block:first-child {
	padding-left: 0;
}

.banner .banner-bottom .banner-block:last-child {
	padding-right: 0;
}

/* ==================== [ Banner CSS End ] ==================== */

/* ==================== [ Commercial Start ] ==================== */

.commercial { padding-block: 100px 120px; }
.commercial .commercial-block { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.commercial .commercial-block .left-block { width: 100%; max-width: 600px; }

.commercial .heading .title * { margin-bottom: 12px; font-weight: var(--fw-400); } 
.commercial .heading .title span { font-weight: var(--fw-500); } 
.commercial .heading .disc * { font-family: var(--font-primary); font-size: 28px; font-weight: 400; line-height: 120%; color: var(--dark); margin-bottom: 12px; } 

.commercial .feature-list ul { display: flex; flex-direction: column; gap: 12px; padding-left: 0; margin-block: 28px 44px; } 
.commercial .feature-list li { position: relative; display: flex; align-items: start; gap: 8px; font-family: var(--font-primary); font-style: normal; font-size: 18px; font-weight: 500; line-height: 140%; color: var(--color-jet); } 
.commercial .feature-list li::before { margin-top: 3px; flex-shrink: 0; content: ""; height: 20px; width: 20px; display: block; background-repeat: no-repeat; background-size: 100%; background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(%23clip0_175_191)"> <path d="M6.875 10.625L8.75 12.5L13.125 8.125" stroke="%23FD5B00" stroke-linecap="round" stroke-linejoin="round"/> <path d="M16.25 3.125H3.75C3.40482 3.125 3.125 3.40482 3.125 3.75V16.25C3.125 16.5952 3.40482 16.875 3.75 16.875H16.25C16.5952 16.875 16.875 16.5952 16.875 16.25V3.75C16.875 3.40482 16.5952 3.125 16.25 3.125Z" stroke="%23FD5B00" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_175_191"> <rect width="20" height="20" fill="white"/> </clipPath> </defs> </svg> '); } 

.commercial  .commercial-btn { margin-bottom: 12px; } 
.commercial  .commercial-btn .btn-primary { padding-inline: 20px 70px; } 
.commercial  .note * { max-width: 320px; width: 100%; opacity: 0.60; font-family: var(--font-primary); font-style: normal; font-size: 11px; font-weight: 500; line-height: 120%; color: var(--color-jet); margin-bottom: 0; } 


.commercial .commercial-block .right-block { position: relative; width: 100%; max-width: 664px; padding-block: 108px; }	

.commercial  .image-block { max-width: 76.5%; width: 100%; margin-inline: auto; aspect-ratio: 508 / 547; height: auto; box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.04); } 
.commercial  .right-block .img-1 { right: 0; top: 0; position: absolute; aspect-ratio: 278 / 182; max-width: 278px; width: 100%; height: auto; box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.04); } 
.commercial  .right-block .img-2 { left: 0; bottom: 174px; position: absolute; aspect-ratio: 290 / 120; max-width: 290px; width: 100%; height: auto; box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.04); } 
.commercial  .right-block .img-3 { left: 0; bottom: 0; position: absolute; aspect-ratio: 290 / 162; max-width: 290px; width: 100%; height: auto; box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.04); } 

/* ==================== [ Commercial End ] ==================== */


/* ==================== [ How-it-works CSS Start ] ==================== */
.how-it-works {
	padding: 120px 0 160px 0;
}

.how-it-works-wrp .heading .sub-title {
	margin-bottom: 20px;
}

.how-it-works-wrp .heading {
	margin-bottom: 48px;
}

.how-it-works-wrp  .row {
	margin-inline: -20px;
}

.how-it-works-wrp  .row >*{
	padding-inline: 20px;
}

.how-it-works-wrp .how-it-works-block .icon {
	width: 80px;
	height: 80px;
	margin-bottom: 24px;
}

.how-it-works-wrp .how-it-works-block .content .small-title *{
	font-family: var(--font-primary);
	font-size: 12px;
	font-weight: var(--fw-500);
	line-height: 14px;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 10px;
} 

.how-it-works-wrp .how-it-works-block .content .small-title span {
	display: block;
}

.how-it-works-wrp .how-it-works-block .content .title *{
	margin-bottom: 10px;
}

.how-it-works-wrp .how-it-works-block .content .disc * {
	font-size: 18px;
	font-weight: var(--fw-400);
	line-height: 25px;
	color: var(--color-jet);
	margin-bottom: 0px;
}
/* ==================== [ How-it-works CSS End ] ==================== */



/* ==================== [ customer-story CSS Start ] ==================== */

.customer-story-section {
	background: var(--dark);
	padding-top: 100px;
	padding-bottom: 48px;
}

.customer-story-carousel .swiper-button-prev,
.customer-story-carousel .swiper-button-next {
	width: 60px;
	height: 60px;
	color: rgba(205, 212, 204, 0.5);
	cursor: pointer;
}

.customer-story-carousel .swiper-button-prev:hover,
.customer-story-carousel .swiper-button-next:hover {
	color: var(--white);
	background: var(--primary);
}

.customer-story-carousel .swiper-button-prev:after,
.customer-story-carousel .swiper-button-next:after {
	font-size: 22px;
}
.customer-story-carousel .swiper-button-prev {
	left: 32px;
}

.customer-story-carousel .swiper-button-next {
	right: 32px;
}

.customer-story-carousel .swiper-pagination {
	position: relative;
	left: auto;
	right: auto;
	bottom: auto;
	gap: 8px;
	z-index: 1;
}

.customer-story-carousel .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--secondary);
	opacity: 0.25;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

.customer-story-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--primary);
	opacity: 1;
}

.customer-story-carousel .customer-story-block {
	padding-bottom: 60px;
}

.customer-story-block .customer-story-main-detail {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 56px;
}

.customer-story-block .customer-story-main-detail > * {
	flex: 1 0 0;
	max-width: 100%;
}

.customer-story-block .customer-story-main-detail .customer-story-image {
	flex: 0 0 auto;
	width: 500px;
}

.customer-story-block .customer-story-main-detail .customer-story-image .image-block {
	width: 100%;
	height: 500px;
}

.customer-story-block .customer-story-main-detail .customer-story-image .image-block * {
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-family: 'object-fit: cover';
}

.customer-story-block .customer-story-main-detail .customer-story-detail {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 50px;
}

.customer-story-block .customer-story-main-detail .story-rating ul {
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.customer-story-block .customer-story-main-detail .story-rating ul li {
	display: inline-flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 20px;
	line-height: 100%;
	color: var(--primary);
}

.customer-story-block .customer-story-main-detail .customer-story-detail .detail {
	font-size: 36px;
	line-height: 120%;
	color: #ffffff;
}

.customer-story-block .customer-story-main-detail .customer-story-detail .customer-name {
	margin-top: 32px;
	padding-left: 24px;
	font-weight: 300;
	font-size: 18px;
	line-height: 140%;
	color: #ffffff;
	border-left: 1px solid rgba(205, 212, 204, 0.5);
}

.customer-story-block .customer-story-main-detail .customer-story-detail .customer-name * {
	margin: 0;
}

.customer-story-block .customer-story-main-detail .customer-story-detail .customer-name span {
	color: rgba(205, 212, 204, 0.5);
}
/* ==================== [ Customer-story CSS End ] ==================== */

/* ==================== [ license-free CSS Start ] ==================== */
.license-free-section {
	padding: 100px 0 125px;
	background: var(--light);
}

.license-free-section .license-free-main-title .section-title h1 {
	font-size: 48px;
	line-height: 120%;
}

.license-free-section .license-free-main-title {
	margin-bottom: 65px;
}

.license-free-section .license-free-main-title .common-tag-mark span {
	font-style: italic;
}

.license-free-section .annual-save-options {
	margin-bottom: 32px;
}

.license-free-section .annual-save-options .form-check {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 0;
	margin: 0;
	font-weight: 500;
	font-size: 16px;
	line-height: 115%;
	color: var(--dark);
}

.license-free-section .annual-save-options .form-check input[type="checkbox"] {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: 0;
	padding: 0;
	width: 36px;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	z-index: 9;
}

.license-free-section .annual-save-options .form-check input[type="checkbox"]:checked ~ .switch {
	background: var(--primary);
}

.license-free-section .annual-save-options .form-check input[type="checkbox"]:checked ~ .switch:before {
	left: calc(100% - 16px);
}

.license-free-section .annual-save-options .form-check span {
	font-weight: 400;
	color: var(--primary);
}

.license-free-section .annual-save-options .form-check .switch {
	position: relative;
	width: 36px;
	height: 20px;
	padding: 2px;
	text-align: left;
	background: var(--secondary);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.license-free-section .annual-save-options .form-check .switch:before {
	position: relative;
	display: inline-block;
	content: "";
	left: 0;
	top: 0;
	bottom: 0;
	width: 16px;
	height: 16px;
	background: #ffffff;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}

.license-free-section .annual-save-options .form-check .form-check-label {
	cursor: pointer;
}

.license-free-list > .row {
	margin: 0 -8px;
	row-gap: 0;
}

.license-free-list > .row > * {
	padding: 0 8px;
	margin-bottom: 16px;
}

.license-free-list .license-free-block {
	height: 100%;
	background: var(--white);
	border: 1px solid rgba(205, 212, 204, 0.50);
}

.license-free-list .license-free-block .license-title {
	padding: 24px 20px;
	height: 163px;
	border-bottom: 1px solid rgba(205, 212, 204, 0.35);
}

.license-free-list .license-free-block .license-title .common-small-tag-mark {
	font-size: 16px;
	line-height: 120%;
	margin-bottom: 25px;
}

.license-free-list .license-free-block .license-title .price-text {
	display: flex;
	align-items: flex-end;
	gap: 2px;
	font-weight: 500;
	font-size: 56px;
	line-height: 100%;
	color: var(--dark);
}

.license-free-list .license-free-block .license-title .price-text .month {
	font-weight: 400;
	font-size: 24px;
	line-height: 125%;
}

.license-free-list .license-free-block .license-title .price-text .month small {
	display: block;
	font-size: 12px;
	line-height: 100%;
	opacity: 0.6;
}

.license-free-list .license-free-block .license-main-detail {
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	height: calc(100% - 163px);
}

.license-free-list .license-free-block .license-main-detail .license-detail {
	font-weight: 400;
	font-size: 16px;
	line-height: 120%;
}

.license-free-list .license-free-block .license-main-detail .license-detail p {
	margin-bottom: 12px;
}

.license-free-list .license-free-block .license-main-detail .license-detail b,
.license-free-list .license-free-block .license-main-detail .license-detail strong {
	font-family: var(--font-primary);
	font-weight: 700;
}

.license-free-list .license-free-block .license-main-detail .select-button {
	margin-top: 25px;
}

.license-free-list .license-free-block .license-main-detail .select-button a {
	display: block;
	width: 100%;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	line-height: 115%;
	padding: 13px;
	border: 1px solid transparent;
	text-align: center;	
}

.license-free-list .license-free-block.enterprise-license-block {
	background: transparent;
	border: 1px solid var(--secondary);
}

.license-free-list .license-free-block.enterprise-license-block .license-main-detail .select-button a.btn-select-plan {
	color: var(--dark);
	border-color: var(--dark);
	background: transparent;
}

.license-free-list .license-free-block.enterprise-license-block .license-main-detail .select-button a.btn-select-plan:hover {
	color: var(--white);
	border-color: var(--dark);
	background: var(--dark);
}

.license-free-list .license-free-block .license-main-detail .select-button a.btn-select-plan {
	color: var(--white);
	border-color: var(--dark);
	background: var(--dark);
}

.license-free-list .license-free-block .license-main-detail .select-button a.btn-select-plan:hover {
	border-color: var(--primary);
	background: var(--primary);
}

/* ==================== [ license-free CSS End ] ==================== */


/* ==================== [ Boxpod-features Start ] ==================== */
.boxpod-features-section {
	padding-top: 120px;
	padding-bottom: 80px;
}

.boxpod-features-section .boxpod-features-main-title {
	margin-bottom: 80px;
}

.boxpod-features-section .boxpod-features-main-title .row {
	row-gap: 0;
}

.boxpod-features-section .boxpod-features-main-title .common-small-tag-mark {
	margin-bottom: 20px;
}

.boxpod-features-list {
	overflow: hidden;
}

.boxpod-features-list > .row {
	margin: 0 -40px;
	row-gap: 0;
}

.boxpod-features-list > .row > * {
	padding: 0 40px;
}

.boxpod-features-list .features-block {
	margin-bottom: 80px;
}

.boxpod-features-list .features-block .features-icon {
	width: 56px;
	height: 56px;
	background: rgba(205, 212, 204,0.35);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	margin-bottom: 32px;
}

.boxpod-features-list .features-block .features-icon * {
	max-width: 100%;
	max-height: 100%;
}

.boxpod-features-list .features-block .title * {
	margin-bottom: 10px;
}
/* ==================== [ Boxpod-features End ] ==================== */


/* ==================== [ Footer Start ] ==================== */
.footer {
	background: var(--dark);
}

.footer .f-top .f-content {
	padding: 60px 0 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	font-weight: 400;
	font-size: 16px;
	line-height: 115%;
	color: var(--white);
}

.footer .f-top .f-content a {
	text-decoration: none;
	color: inherit;
}

.footer .f-top .f-content a:hover {
	color: var(--primary);
}

.footer .f-top .f-content > * {
	flex: 1 0 0;
	max-width: 100%;
	margin: 0 0 30px;
}

.footer .f-top .f-content .f-mail-social-icons,
.footer .f-top .f-content .f-privacy-terms {
	flex: 0 0 auto;
	width: 340px;
}

.footer .f-navigation ul {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.footer .f-navigation ul li {
	flex: 0 0 auto;
	width: calc(50% - 16px);
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.footer .f-navigation ul li.active a,
.footer .f-navigation ul li.current-menu-item a,
.footer .f-navigation ul li.current-menu-parent a,
.footer .f-navigation ul li.current_page_parent a,
.footer .f-navigation ul li a.active,
.footer .f-navigation ul li a.current-menu-item,
.footer .f-navigation ul li a.current-menu-parent,
.footer .f-navigation ul li a.current_page_parent,
.footer .f-navigation ul li a:hover {
	color: var(--primary);
}

.footer .f-mail-social-icons > * {
	margin-bottom: 16px;
}

.footer .f-mail-social-icons > *:last-child {
	margin-bottom: 0;
}

.footer .f-mail-social-icons .mail-block {
	font-size: 14px;
}

.footer .f-mail-social-icons .mail-block a {
	text-decoration: none;
	color: inherit;
}

.footer .f-privacy-terms ul li {
	display: block;
	margin: 0 0 16px;
	padding: 0;
	list-style-type: none;
}

.footer .f-privacy-terms ul li:last-child {
	margin-bottom: 0;
}

.footer .f-privacy-terms {
	text-align: right;
}

.footer .f-privacy-terms ul {
	display: block;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.footer .f-privacy-terms ul li {
	display: block;
	margin: 0 0 16px;
	padding: 0;
	list-style-type: none;
}

.footer .f-privacy-terms ul li:last-child {
	margin-bottom: 0;
}

.footer .f-privacy-terms ul li.active a,
.footer .f-privacy-terms ul li.current-menu-item a,
.footer .f-privacy-terms ul li.current-menu-parent a,
.footer .f-privacy-terms ul li.current_page_parent a,
.footer .f-privacy-terms ul li a.active,
.footer .f-privacy-terms ul li a.current-menu-item,
.footer .f-privacy-terms ul li a.current-menu-parent,
.footer .f-privacy-terms ul li a.current_page_parent,
.footer .f-privacy-terms ul li a:hover {
	color: var(--primary);
}

.footer .f-bottom .f-content {
	display: flex;
	flex-wrap: wrap;
	/* flex-direction: row-reverse; */
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding-top: 20px;
}

.footer .f-bottom .f-content ul {
	display: block;
	margin: 0 -20px;
	padding: 0;
	list-style-type: none;
}

.footer .f-bottom .f-content ul li {
	display: inline-block;
	margin: 0 20px 20px;
	padding: 0;
	list-style-type: none;
	font-size: 14px;
	line-height: 125%;
	color: rgba(255,255,255,0.5);
}

.footer .f-bottom .f-content ul li a {
	text-decoration: none;
	color: inherit;
}

.footer .f-bottom .f-content ul li a:hover {
	color: #ffffff;
}
/* ==================== [ Footer End ] ==================== */
/* ==================== [ Banner Carousel Start ] ==================== */
.banner-bg-carousel {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.banner-bg-carousel .swiper-slide {
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
}

.banner-bg-carousel .swiper-slide-active {
	opacity: 1;
}

.banner-bg-carousel .banner-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
/* ==================== [ Banner Carousel End ] ==================== */

/* ==================== [ Sign In Section Start ] ==================== */
.signin-block .alert {
	padding: 15px 20px;
	margin-bottom: 25px;
	font-size: 15px;
	border: none;
}

.signin-block .alert-danger {
	background-color: #fef2f2;
	color: #991b1b;
}

.signin-block .alert-success {
	background-color: #f0fdf4;
	color: #166534;
}

.signin-section {
	padding: 80px 0;
	background-color: #F4F5F4;
}

.signin-wrapper {
	max-width: 1400px;
	margin: 0 auto;
}

.signin-wrapper .row {
	--bs-gutter-x: 40px;
}

/* Sign In Block */
.signin-block {
	background: white;
	padding: 60px;
	border-radius: 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	height: 100%;
}

.signin-header h2 {
	font-family: var(--font-primary);
	font-size: 42px;
	font-weight: var(--fw-500);
	color: var(--dark);
	margin-bottom: 10px;
	line-height: 1.2;
}

.signin-header p {
	font-size: 18px;
	color: var(--gray);
	margin-bottom: 40px;
}

.signin-form .form-group {
	margin-bottom: 24px;
}

.signin-form label {
	display: block;
	font-size: 16px;
	font-weight: 500;
	color: var(--dark);
	margin-bottom: 8px;
}

.signin-form .form-control {
	width: 100%;
	padding: 16px 20px;
	font-size: 16px;
	border: 2px solid #E5E5E5;
	border-radius: 0;
	background: white;
	transition: all 0.3s ease;
}

.signin-form .form-control:focus {
	border-color: var(--primary);
	outline: none;
	box-shadow: 0 0 0 4px rgba(253, 91, 0, 0.1);
}

.form-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 32px;
}

.remember-me {
	display: flex;
	align-items: center;
	gap: 8px;
}

.remember-me input[type="checkbox"] {
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.remember-me label {
	font-size: 14px;
	color: var(--dark);
	cursor: pointer;
	margin: 0;
}

.forgot-password {
	font-size: 14px;
	color: var(--primary);
	text-decoration: none;
	font-weight: 500;
}

.forgot-password:hover {
	text-decoration: underline;
}

.btn-full {
	width: 100%;
	justify-content: center;
}

/* Register Block */
.register-block {
	background: white;
	padding: 60px;
	border-radius: 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	text-align: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.register-icon {
	margin-bottom: 30px;
}

.register-icon img {
	width: 120px;
	height: 120px;
	object-fit: contain;
}

.register-block h3 {
	font-family: var(--font-primary);
	font-size: 32px;
	font-weight: var(--fw-500);
	color: var(--dark);
	margin-bottom: 15px;
	line-height: 1.2;
}

.register-block > p {
	font-size: 18px;
	color: var(--gray);
	margin-bottom: 30px;
}

.register-features {
	margin-bottom: 40px;
}

.register-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.register-features ul li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	text-align: left;
	font-size: 16px;
	color: var(--dark);
}

.register-features ul li i {
	color: var(--primary);
	font-size: 18px;
	flex-shrink: 0;
}

.register-note {
	margin-top: 20px;
}

.register-note p {
	font-size: 14px;
	color: var(--gray);
	margin: 0;
}

/* Fix button alignment */
.register-block .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.register-block .btn .arrow {
	display: flex;
	align-items: center;
}

/* Responsive */
@media (max-width: 991px) {
	.signin-wrapper .row {
		flex-direction: column;
	}

	.signin-wrapper .col-lg-6 {
		width: 100%;
		max-width: 600px;
		margin: 0 auto;
	}

	.signin-block,
	.register-block {
		padding: 40px 30px;
		margin-bottom: 30px;
	}

	.signin-header h2 {
		font-size: 32px;
	}

	.register-block h3 {
		font-size: 28px;
	}
}

@media (max-width: 575px) {
	.signin-section {
		padding: 40px 0;
	}

	.signin-block,
	.register-block {
		padding: 30px 20px;
	}

	.signin-header h2 {
		font-size: 28px;
	}

	.register-block h3 {
		font-size: 24px;
	}

	.form-options {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}
/* ==================== [ Sign In Section End ] ==================== */

/* ==================== [ Contact Section Start ] ==================== */
.contact-section {
	padding: 80px 0;
	background-color: #F4F5F4;
}

.contact-wrapper {
	max-width: 1400px;
	margin: 0 auto;
}

.contact-header {
	margin-bottom: 60px;
}

.contact-header h1 {
	font-family: var(--font-primary);
	font-size: 48px;
	font-weight: var(--fw-500);
	color: var(--dark);
	margin-bottom: 15px;
	line-height: 1.2;
}

.contact-header p {
	font-size: 18px;
	color: var(--gray);
	max-width: 700px;
	margin: 0 auto;
}

.contact-wrapper .row {
	--bs-gutter-x: 40px;
}

/* Contact Form Block */
.contact-form-block {
	background: white;
	padding: 60px;
	border-radius: 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	height: 100%;
}

.contact-form-block h3 {
	font-family: var(--font-primary);
	font-size: 28px;
	font-weight: var(--fw-500);
	color: var(--dark);
	margin-bottom: 30px;
}

.contact-form .form-group {
	margin-bottom: 24px;
}

.contact-form label {
	display: block;
	font-size: 16px;
	font-weight: 500;
	color: var(--dark);
	margin-bottom: 8px;
}

.contact-form .form-control {
	width: 100%;
	padding: 16px 20px;
	font-size: 16px;
	border: 2px solid #E5E5E5;
	border-radius: 0;
	background: white;
	transition: all 0.3s ease;
	font-family: var(--font-primary);
}

.contact-form textarea.form-control {
	resize: vertical;
	min-height: 150px;
}

.contact-form .form-control:focus {
	border-color: var(--primary);
	outline: none;
	box-shadow: 0 0 0 4px rgba(253, 91, 0, 0.1);
}

.contact-form .row {
	--bs-gutter-x: 20px;
}

/* Contact Info Block */
.contact-info-block {
	background: white;
	padding: 60px;
	border-radius: 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	height: 100%;
}

.contact-info-block h3 {
	font-family: var(--font-primary);
	font-size: 28px;
	font-weight: var(--fw-500);
	color: var(--dark);
	margin-bottom: 15px;
}

.contact-info-block > p {
	font-size: 16px;
	color: var(--gray);
	margin-bottom: 40px;
}

.contact-info-list {
	margin-bottom: 40px;
}

.contact-info-item {
	align-items: flex-start;
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #E5E5E5;
}

.contact-info-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.contact-info-item .icon {
	width: 50px;
	height: 50px;
	background: rgba(253, 91, 0, 0.1);
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-info-item .icon i {
	font-size: 22px;
	color: var(--primary);
}

.contact-info-item .details h4 {
	font-size: 18px;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 5px;
}

.contact-info-item .details p,
.contact-info-item .details a {
	font-size: 16px;
	color: var(--gray);
	margin: 0;
	text-decoration: none;
}

.contact-info-item .details a:hover {
	color: var(--primary);
}

.contact-social h4 {
	font-size: 18px;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 15px;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	width: 50px;
	height: 50px;
	background: rgba(253, 91, 0, 0.1);
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.social-links a i {
	font-size: 22px;
	color: var(--primary);
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: var(--primary);
}

.social-links a:hover i {
	color: white;
}

/* Responsive */
@media (max-width: 991px) {
	.contact-wrapper .row {
		flex-direction: column;
	}

	.contact-wrapper .col-lg-7,
	.contact-wrapper .col-lg-5 {
		width: 100%;
		max-width: 700px;
		margin: 0 auto;
	}

	.contact-form-block,
	.contact-info-block {
		padding: 40px 30px;
		margin-bottom: 30px;
	}

	.contact-header h1 {
		font-size: 36px;
	}
}

@media (max-width: 575px) {
	.contact-section {
		padding: 40px 0;
	}

	.contact-header {
		margin-bottom: 40px;
	}

	.contact-header h1 {
		font-size: 32px;
	}

	.contact-form-block,
	.contact-info-block {
		padding: 30px 20px;
	}

	.contact-form-block h3,
	.contact-info-block h3 {
		font-size: 24px;
	}
}
/* ==================== [ Contact Section End ] ==================== */

/* reCAPTCHA Styling */
.g-recaptcha {
	margin-bottom: 0;
}

.contact-form .g-recaptcha > div {
	margin: 0 auto;
}

/* ==================== [ Search Section Start ] ==================== */
.search-section {
	padding: 80px 0;
	background: var(--light);
	flex: 1;
	display: flex;
	align-items: center;
}

.search-section > .container {
	width: 100%;
}

.search-wrapper {
	max-width: 1000px;
	margin: 0 auto;
}

.search-header {
	margin-bottom: 60px;
}

.search-header h1 {
	font-family: var(--font-primary);
	font-size: 48px;
	font-weight: var(--fw-500);
	line-height: 1.2;
	color: var(--dark);
	margin-bottom: 20px;
}

.search-header p {
	font-size: 18px;
	color: var(--gray);
	margin-bottom: 0;
}

/* Main Search Box */
.main-search-box {
	display: flex;
	gap: 15px;
	margin-bottom: 40px;
	background: var(--white);
	padding: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.search-input-wrapper {
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
}

.search-icon {
	position: absolute;
	left: 20px;
	font-size: 20px;
	color: var(--primary);
	pointer-events: none;
}

.search-input {
	width: 100%;
	border: none;
	padding: 20px 50px 20px 55px;
	font-size: 16px;
	font-family: var(--font-primary);
	color: var(--dark);
	background: transparent;
}

.search-input::placeholder {
	color: var(--gray);
}

.search-input:focus {
	outline: none;
}

.clear-search {
	position: absolute;
	right: 15px;
	background: none;
	border: none;
	color: var(--gray);
	font-size: 18px;
	cursor: pointer;
	padding: 5px;
	transition: color 0.3s ease;
}

.clear-search:hover {
	color: var(--dark);
}

.distance-select {
	flex-shrink: 0;
}

.distance-select .form-select {
	min-width: 140px;
	height: 100%;
	border: none;
	padding: 20px 15px;
	font-size: 16px;
	font-family: var(--font-primary);
	color: var(--dark);
	background-color: var(--white);
	cursor: pointer;
	border-left: 1px solid var(--secondary);
	border-radius: 0;
}

.distance-select .form-select:focus {
	box-shadow: none;
	border-color: var(--secondary);
}

/* Filters Grid */
.filters-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.filter-item {
	display: flex;
	flex-direction: column;
}

.filter-label {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--gray);
	margin-bottom: 10px;
}

.filter-item .form-select {
	padding: 15px;
	font-size: 16px;
	font-family: var(--font-primary);
	color: var(--dark);
	background-color: var(--white);
	border: 1px solid var(--secondary);
	border-radius: 0;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-item .form-select:hover {
	border-color: var(--primary);
}

.filter-item .form-select:focus {
	box-shadow: 0 0 0 3px rgba(253, 91, 0, 0.1);
	border-color: var(--primary);
}

/* Search Actions */
.search-actions {
	text-align: center;
}

.btn-large {
	padding: 20px 70px 20px 30px;
	font-size: 18px;
	font-weight: 500;
}

/* Popular Searches */
.popular-searches {
	margin-top: 60px;
	text-align: center;
}

.popular-label {
	font-size: 14px;
	font-weight: 500;
	color: var(--gray);
	margin-bottom: 15px;
}

.popular-tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.popular-tag {
	display: inline-block;
	padding: 10px 20px;
	background: var(--white);
	color: var(--dark);
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	border: 1px solid var(--secondary);
}

.popular-tag:hover {
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
	transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
	padding: 80px 0;
	background: var(--white);
}

.stat-item h3 {
	font-family: var(--font-primary);
	font-size: 48px;
	font-weight: var(--fw-700);
	color: var(--primary);
	margin-bottom: 10px;
}

.stat-item p {
	font-size: 16px;
	color: var(--gray);
	margin-bottom: 0;
}

.stats-section .row > [class*="col-"]:not(:last-child) .stat-item {
	border-right: 1px solid var(--secondary);
	padding-right: 20px;
	margin-right: -20px;
}

/* Responsive Styles */
@media (max-width: 991px) {
	.search-section {
		padding: 60px 0;
	}

	.search-header {
		margin-bottom: 40px;
	}

	.search-header h1 {
		font-size: 40px;
	}

	.filters-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.stats-section {
		padding: 60px 0;
	}

	.stat-item h3 {
		font-size: 40px;
	}
}

@media (max-width: 767px) {
	.search-section {
		padding: 50px 0;
	}

	.search-header h1 {
		font-size: 36px;
	}

	.search-header p {
		font-size: 16px;
	}

	.main-search-box {
		flex-direction: column;
		gap: 0;
	}

	.search-input {
		padding: 18px 50px 18px 55px;
		border-bottom: 1px solid var(--secondary);
	}

	.distance-select .form-select {
		border-left: none;
		border-top: 1px solid var(--secondary);
		padding: 12px 15px;
		font-size: 14px;
		background-color: var(--light);
		color: var(--gray);
	}

	.filters-grid {
		grid-template-columns: 1fr;
		gap: 15px;
		margin-bottom: 30px;
	}

	.btn-large {
		padding: 18px 60px 18px 30px;
		font-size: 16px;
		width: 100%;
	}

	.popular-searches {
		margin-top: 40px;
	}

	.stats-section {
		padding: 50px 0;
	}

	.stats-section .row > [class*="col-"] .stat-item {
		border-right: none;
		padding-right: 0;
		margin-right: 0;
	}

	.stat-item h3 {
		font-size: 36px;
	}

	.stat-item p {
		font-size: 14px;
	}
}

@media (max-width: 575px) {
	.search-header h1 {
		font-size: 32px;
	}

	.search-input {
		font-size: 15px;
		padding: 16px 45px 16px 50px;
	}

	.search-icon {
		left: 15px;
		font-size: 18px;
	}

	.filter-item .form-select {
		padding: 12px;
		font-size: 15px;
	}

	.stat-item h3 {
		font-size: 32px;
	}
}
/* jQuery UI Autocomplete Override */
.ui-autocomplete {
	max-height: 320px;
	overflow-y: auto;
	overflow-x: hidden;
	background: var(--white);
	border: 1px solid var(--secondary);
	border-radius: 0;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	font-family: var(--font-primary);
	padding: 8px 0;
	margin-top: 4px;
	z-index: 9999 !important;
}
.ui-autocomplete .ui-menu-item {
	border: none;
	margin: 0;
}
.ui-autocomplete .ui-menu-item-wrapper {
	padding: 12px 20px;
	font-size: 15px;
	color: var(--gray);
	border: none;
	border-left: 3px solid transparent;
	transition: all 0.15s ease;
}
.ui-autocomplete .ui-menu-item-wrapper.ui-state-active,
.ui-autocomplete .ui-menu-item-wrapper:hover {
	background: var(--light);
	color: var(--dark);
	border: none;
	border-left: 3px solid var(--primary);
}
.ui-autocomplete .ui-menu-item-wrapper strong {
	font-weight: var(--fw-600);
	color: var(--dark);
}
.ui-autocomplete .ui-menu-item-wrapper.ui-state-active strong {
	color: var(--primary);
}
/* Custom scrollbar for dropdown */
.ui-autocomplete::-webkit-scrollbar {
	width: 6px;
}
.ui-autocomplete::-webkit-scrollbar-track {
	background: transparent;
}
.ui-autocomplete::-webkit-scrollbar-thumb {
	background: var(--secondary);
	border-radius: 3px;
}
.ui-autocomplete::-webkit-scrollbar-thumb:hover {
	background: var(--gray);
}

/* ==================== [ Search Section End ] ==================== */

/* ==================== [ Checkout Section Start ] ==================== */
.checkout-section {
	padding: 60px 0 80px;
}
.checkout-wrapper {
	max-width: 1000px;
	margin: 0 auto;
}

/* Plan Summary Card */
.checkout-plan-summary {
	background: var(--light);
	border-radius: 0;
	padding: 40px 32px;
	position: sticky;
	top: 120px;
}
.checkout-plan-summary .plan-badge {
	margin-bottom: 24px;
}
.checkout-plan-summary .plan-price {
	margin-bottom: 8px;
}
.checkout-plan-summary .plan-price .amount {
	font-size: 48px;
	font-weight: var(--fw-700);
	color: var(--dark);
	font-family: var(--font-primary);
}
.checkout-plan-summary .plan-price .period {
	font-size: 18px;
	color: var(--gray);
}
.checkout-plan-summary .plan-savings {
	margin-bottom: 24px;
}
.checkout-plan-summary .plan-savings span {
	display: inline-block;
	background: var(--primary);
	color: var(--white);
	padding: 4px 12px;
	border-radius: 0;
	font-size: 13px;
	font-weight: var(--fw-500);
}
.checkout-plan-summary .plan-features {
	margin: 24px 0;
}
.checkout-plan-summary .plan-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.checkout-plan-summary .plan-features li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	font-size: 15px;
	color: var(--dark);
	border-bottom: 1px solid var(--secondary-25);
}
.checkout-plan-summary .plan-features li:last-child {
	border-bottom: none;
}
.checkout-plan-summary .plan-features li i {
	color: var(--primary);
	font-size: 14px;
	flex-shrink: 0;
}
.checkout-plan-summary .plan-switch {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--secondary);
}
.checkout-plan-summary .plan-switch p {
	font-size: 14px;
	color: var(--gray);
	margin: 0;
}
.checkout-plan-summary .plan-switch a {
	color: var(--primary);
	text-decoration: underline;
}

/* Checkout Form Block */
.checkout-form-block {
	background: var(--white);
	border: 1px solid var(--secondary);
	border-radius: 0;
	padding: 40px 36px;
}
.checkout-header {
	margin-bottom: 32px;
}
.checkout-header h2 {
	font-family: var(--font-primary);
	font-weight: var(--fw-500);
	font-size: 28px;
	color: var(--dark);
	margin-bottom: 8px;
}
.checkout-header p {
	color: var(--gray);
	font-size: 15px;
	margin: 0;
}

/* Form Sections */
.checkout-form .form-section {
	margin-bottom: 32px;
}
.checkout-form .form-section h3 {
	font-family: var(--font-primary);
	font-weight: var(--fw-500);
	font-size: 18px;
	color: var(--dark);
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--secondary-25);
}
.checkout-form .form-group {
	margin-bottom: 18px;
}
.checkout-form label {
	display: block;
	font-size: 14px;
	font-weight: var(--fw-500);
	color: var(--dark);
	margin-bottom: 6px;
}
.checkout-form .form-control {
	border: 1px solid var(--secondary);
	border-radius: 0;
	padding: 14px 16px;
	font-size: 15px;
	font-family: var(--font-primary);
	color: var(--dark);
	transition: border-color 0.2s ease;
}
.checkout-form .form-control:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(253, 91, 0, 0.1);
}
.checkout-form .form-control::placeholder {
	color: var(--gray);
}

/* Stripe Element Containers (Payment Element + Address Element) */
.stripe-element-container {
	min-height: 50px;
	padding: 4px 0;
}
#address-element {
	margin-bottom: 8px;
}
#payment-element {
	margin-bottom: 8px;
}

/* Checkout Alerts */
.checkout-alert {
	padding: 14px 18px;
	border-radius: 0;
	font-size: 14px;
	margin-bottom: 20px;
}
.checkout-alert-error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

/* Submit Button */
.checkout-form .btn-full {
	width: 100%;
	margin-top: 8px;
}

/* Terms */
.checkout-terms {
	margin-top: 16px;
}
.checkout-terms p {
	font-size: 12px;
	color: var(--gray);
	line-height: 1.6;
	margin: 0;
}
.checkout-terms a {
	color: var(--dark);
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
	.checkout-plan-summary {
		position: static;
		margin-bottom: 32px;
	}
	.checkout-form-block {
		padding: 28px 20px;
	}
	.checkout-plan-summary .plan-price .amount {
		font-size: 36px;
	}
}
/* ==================== [ Checkout Section End ] ==================== */

/* ==================== [ Filter Bar Start ] ==================== */

.filter-bar {
	position: sticky;
	top: 0;
	z-index: 1060;
	background: #fff;
	border-bottom: 1px solid var(--secondary);
	padding: 12px 0;
	min-height: 80px;
	display: flex;
	align-items: center;
}

/* Bar Row */
.filter-bar-row {
	display: flex;
	align-items: center;
	gap: 10px;
}
.filter-bar-group {
	position: relative;
}
.filter-bar-location {
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--light);
	border: 1px solid var(--secondary);
	border-radius: 0;
	padding: 0 14px;
	transition: border-color 0.2s, background 0.2s;
}
.filter-bar-location:focus-within {
	border-color: var(--primary);
	background: #fff;
}
.filter-bar-location i {
	color: var(--primary);
	font-size: 14px;
	flex-shrink: 0;
}
.filter-bar-input {
	width: 100%;
	padding: 10px 0;
	border: none;
	background: transparent;
	font-size: 14px;
	font-family: 'Satoshi', sans-serif;
	outline: none;
}
.filter-bar-toggle {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 16px;
	background: var(--light);
	border: 1px solid var(--secondary);
	border-radius: 0;
	font-size: 14px;
	font-weight: 600;
	font-family: 'Satoshi', sans-serif;
	cursor: pointer;
	white-space: nowrap;
}
.filter-bar-toggle:hover {
	border-color: var(--primary);
}
.filter-bar-toggle i {
	color: var(--primary);
}
.filter-toggle-text {
	display: none;
}
@media (min-width: 576px) {
	.filter-toggle-text {
		display: inline;
	}
}
.filter-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background: var(--primary);
	color: #fff;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 700;
	margin-left: 2px;
}
.filter-bar-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	background: var(--dark);
	color: #fff;
	border: 1px solid var(--dark);
	border-radius: 0;
	font-size: 14px;
	font-weight: 600;
	font-family: 'Satoshi', sans-serif;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s, border-color 0.2s;
}
.filter-bar-btn:hover {
	background: var(--primary);
	border-color: var(--primary);
}
@media (min-width: 992px) {
	.filter-bar-btn {
		padding: 10px 20px;
	}
}

/* Filter Panel — mobile: slide up from bottom */
.filter-panel {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-radius: 0;
	box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
	z-index: 1001;
	transform: translateY(100%);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	max-height: 85vh;
	display: flex;
	flex-direction: column;
}
.filter-panel.active {
	transform: translateY(0);
}

/* Filter Panel — desktop: slide in from left */
@media (min-width: 992px) {
	.filter-panel {
		top: 0;
		bottom: 0;
		left: 0;
		right: auto;
		width: 400px;
		max-height: 100vh;
		border-radius: 0;
		box-shadow: 8px 0 32px rgba(0, 0, 0, 0.15);
		transform: translateX(-100%);
	}
	.filter-panel.active {
		transform: translateX(0);
	}
}

.filter-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px 12px;
	border-bottom: 1px solid var(--secondary);
}
.filter-panel-header h3 {
	font-size: 20px;
	font-weight: 700;
	margin: 0;
}
.filter-panel-close {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--light);
	border: none;
	border-radius: 50%;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.2s;
}
.filter-panel-close:hover {
	background: var(--secondary);
}
.filter-panel-body {
	padding: 20px 24px;
	overflow-y: auto;
	flex: 1;
}
.filter-panel-group {
	margin-bottom: 18px;
}
.filter-panel-group label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--gray);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
}
.filter-panel-group .form-select {
	width: 100%;
	padding: 12px 16px;
	font-size: 15px;
	border-radius: 0;
	border: 1px solid var(--secondary);
}
.filter-panel-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.filter-panel-footer {
	padding: 16px 24px;
	border-top: 1px solid var(--secondary);
}
.filter-panel-footer .btn-full {
	width: 100%;
}
.filter-panel-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}
.filter-panel-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* ==================== [ Filter Bar End ] ==================== */

/* ==================== [ Properties Section Start ] ==================== */

.properties-section {
	padding: 24px 0 60px;
}

/* Agent Header */
.agent-header {
	margin-bottom: 32px;
	padding: 28px 32px;
	background: #fff;
	border: 1px solid var(--secondary);
	border-radius: 0;
}
.agent-header-inner {
	display: flex;
	align-items: flex-start;
	gap: 28px;
}
.agent-header-logo-wrap {
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--light);
	border: 1px solid var(--secondary);
	padding: 12px;
}
.agent-header-logo {
	max-width: 100%;
	max-height: 100%;
	height: auto;
	object-fit: contain;
}
.agent-header-content {
	flex: 1;
	min-width: 0;
}
.agent-header-name {
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 6px;
	line-height: 1.2;
}
.agent-header-location {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	color: var(--gray);
	margin: 0 0 10px;
}
.agent-header-location i {
	color: var(--primary);
	font-size: 13px;
}
.agent-header-desc {
	font-size: 15px;
	color: var(--dark);
	line-height: 1.6;
	margin: 0 0 16px;
}
.agent-header-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	margin-bottom: 14px;
}
.agent-header-contact {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: var(--dark);
	text-decoration: none;
	transition: color 0.2s;
}
.agent-header-contact:hover {
	color: var(--primary);
}
.agent-header-contact i {
	color: var(--primary);
	font-size: 13px;
}
.agent-header-stats {
	display: flex;
	gap: 24px;
}
.agent-header-stat {
	display: flex;
	align-items: baseline;
	gap: 6px;
}
.agent-header-stat-num {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary);
}
.agent-header-stat-label {
	font-size: 14px;
	color: var(--gray);
}

/* Properties Header */
.properties-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}
.properties-count {
	font-size: 15px;
	color: var(--gray);
	margin-bottom: 0;
}
.properties-count strong {
	color: var(--dark);
	font-weight: 700;
}
.properties-header h1,
.properties-header h2 {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 0;
}
.properties-header h1 strong,
.properties-header h2 strong {
	font-weight: 700;
}
.properties-location {
	text-decoration: underline;
	text-decoration-color: var(--primary);
	text-underline-offset: 4px;
}
.properties-area-desc {
	font-size: 15px;
	color: var(--gray);
	margin-top: 8px;
	margin-bottom: 0;
}

/* Breadcrumbs */
.properties-breadcrumb {
	margin-bottom: 20px;
}
.properties-breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 4px;
	font-size: 13px;
}
.properties-breadcrumb li {
	display: flex;
	align-items: center;
	color: var(--gray);
}
.properties-breadcrumb li + li::before {
	content: "/";
	margin-right: 4px;
	color: var(--secondary);
}
.properties-breadcrumb a {
	color: var(--gray);
	text-decoration: none;
}
.properties-breadcrumb a:hover {
	color: var(--primary);
}

/* H1 Heading */
.properties-heading {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 6px;
	color: var(--dark);
}

/* Area Description */
.properties-area {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid var(--secondary);
}
.properties-area-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--dark);
}
.properties-area-desc {
	font-size: 15px;
	color: var(--gray);
	line-height: 1.7;
	margin-bottom: 0;
}

/* Nearby Areas */
.properties-nearby {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--secondary);
}
.properties-nearby-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--dark);
}
.properties-nearby-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.properties-nearby-link {
	display: inline-block;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 500;
	color: var(--dark);
	background: var(--light);
	border: 1px solid var(--secondary);
	text-decoration: none;
	transition: all 0.2s;
}
.properties-nearby-link:hover {
	color: var(--primary);
	border-color: var(--primary);
	background: #fff;
}

/* Sort Controls */
.properties-sort {
	flex-shrink: 0;
}
.properties-sort-form {
	display: flex;
	align-items: center;
	gap: 10px;
}
.properties-sort-form label {
	font-size: 14px;
	font-weight: 500;
	color: var(--gray);
	white-space: nowrap;
}
.properties-sort-form .form-select {
	width: auto;
	min-width: 160px;
	font-size: 14px;
	padding: 8px 36px 8px 14px;
	border: 1px solid var(--secondary);
	border-radius: 0;
	background-color: #fff;
}

/* Properties Grid */
.properties-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

/* No Results */
.properties-no-results {
	grid-column: 1 / -1;
	text-align: center;
	padding: 60px 20px;
}
.properties-no-results h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 8px;
}
.properties-no-results p {
	color: var(--gray);
	margin-bottom: 24px;
}

/* Property Card */
.property-card {
	background: #fff;
	border-radius: 0;
	overflow: hidden;
	border: 1px solid var(--secondary);
	transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.property-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}
.property-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}
.property-card-link:hover {
	text-decoration: none;
	color: inherit;
}

/* Card Image */
.property-card-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--light);
}
.property-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Badges */
.property-badge {
	position: absolute;
	top: 12px;
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 0;
	color: #fff;
}
.property-badge.badge-primary {
	right: 12px;
	background: var(--primary);
}
.property-badge.badge-sale {
	right: 12px;
	background: var(--dark);
}
.property-badge.badge-let {
	right: 12px;
	background: var(--gray);
}
.property-badge.badge-new {
	left: 12px;
	background: #28a745;
}

/* Card Content */
.property-card-content {
	padding: 16px;
	flex: 1;
}
.property-card-price {
	font-size: 20px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 4px;
	line-height: 1.3;
}
.property-card-price .price-period {
	font-size: 14px;
	font-weight: 500;
	color: var(--gray);
}
.property-card-price .price-monthly {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: var(--gray);
}
.property-card-location {
	font-size: 15px;
	color: var(--dark);
	margin-bottom: 2px;
}
.property-card-distance {
	font-size: 13px;
	color: var(--gray);
}

/* Card Footer */
.property-card-footer {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	border-top: 1px solid var(--secondary);
	background: var(--light);
}
.property-card-type {
	font-size: 13px;
	font-weight: 600;
	color: var(--dark);
}
.property-card-type::after {
	content: '|';
	margin-left: 8px;
	color: var(--secondary);
}
.property-card-size {
	font-size: 13px;
	color: var(--gray);
}
.property-card-agent-logo {
	height: 22px;
	width: auto;
	margin-left: auto;
	object-fit: contain;
}

/* Map Sidebar */
.properties-map-sidebar {
	position: sticky;
	top: 100px;
}
.properties-map {
	width: 100%;
	height: 500px;
	border-radius: 0;
	overflow: hidden;
	border: 1px solid var(--secondary);
}

/* Mobile Map */
.properties-map-mobile {
	margin-top: 24px;
	text-align: center;
}
.properties-map-mobile .properties-map {
	margin-top: 16px;
	height: 350px;
}
.properties-map-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* Responsive */
@media (max-width: 991px) {
	.properties-section {
		padding: 16px 0 40px;
	}
	.properties-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	.properties-heading {
		font-size: 20px;
	}
	.properties-header h1,
	.properties-header h2 {
		font-size: 20px;
	}
	.properties-nearby {
		margin-top: 28px;
		padding-top: 24px;
	}
	.properties-nearby-link {
		padding: 6px 12px;
		font-size: 13px;
	}
	.properties-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.agent-header {
		padding: 20px;
	}
	.agent-header-inner {
		gap: 16px;
	}
	.agent-header-logo-wrap {
		width: 80px;
		height: 80px;
		padding: 8px;
	}
	.agent-header-name {
		font-size: 22px;
	}
	.agent-header-desc {
		font-size: 14px;
	}
	.agent-header-stat-num {
		font-size: 20px;
	}
}
@media (min-width: 576px) and (max-width: 991px) {
	.properties-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
/* ==================== [ Properties Section End ] ==================== */

/* ==================== [ Map Page Start ] ==================== */

/* Map page — full-height, no default padding */
.map-page {
	padding: 0;
	margin: 0;
	position: relative;
}

/* Split layout: sidebar + map */
.map-layout {
	display: flex;
	height: calc(100vh - 120px);
	overflow: hidden;
	position: relative;
	z-index: 1;
}

/* Sidebar — desktop only */
.map-sidebar {
	width: 400px;
	flex-shrink: 0;
	flex-direction: column;
	border-right: 1px solid var(--secondary);
	background: #fff;
	overflow: hidden;
}
.map-sidebar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid var(--secondary);
	flex-shrink: 0;
}
.map-sidebar-count {
	font-size: 14px;
	margin: 0;
	color: var(--gray);
}
.map-sidebar-count strong {
	color: var(--dark);
}
.map-view-switch {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	background: var(--light);
	border: 1px solid var(--secondary);
	border-radius: 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--dark);
	text-decoration: none;
	transition: border-color 0.2s, background 0.2s;
	white-space: nowrap;
}
.map-view-switch:hover {
	border-color: var(--primary);
	color: var(--primary);
}
.map-sidebar-list {
	overflow-y: auto;
	flex: 1;
}

/* Map Card — compact horizontal card */
.map-card {
	display: flex;
	align-items: stretch;
	gap: 12px;
	padding: 12px 16px;
	border-bottom: 1px solid var(--secondary-25);
	text-decoration: none;
	color: var(--dark);
	transition: background 0.15s, border-color 0.15s;
}
.map-card:hover {
	background: var(--light);
	color: var(--dark);
	text-decoration: none;
}
.map-card.active {
	background: rgba(253, 91, 0, 0.06);
	border-left: 3px solid var(--primary);
	padding-left: 13px;
}
.map-card-image {
	width: 100px;
	min-height: 72px;
	flex-shrink: 0;
	border-radius: 0;
	overflow: hidden;
}
.map-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.map-card-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2px;
}
.map-card-price {
	font-size: 16px;
	font-weight: 700;
	color: var(--dark);
}
.map-card-price .mc-period {
	font-size: 12px;
	font-weight: 400;
	color: var(--gray);
}
.map-card-location {
	font-size: 13px;
	color: var(--gray);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.map-card-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 2px;
	font-size: 12px;
	color: var(--gray);
}
.map-card-meta span {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.map-card-meta span + span::before {
	content: "\00B7";
	margin-right: 4px;
	color: var(--secondary);
}

/* Map container */
.map-main {
	flex: 1;
	position: relative;
	min-width: 0;
}
.map-view {
	width: 100%;
	height: 100%;
}

/* Price marker pins (Leaflet divIcon) */
.price-marker {
	background: none !important;
	border: none !important;
}
.price-pin {
	display: inline-block;
	padding: 4px 10px;
	background: #fff;
	border: 2px solid var(--dark);
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	font-family: var(--font-primary);
	color: var(--dark);
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
	position: relative;
}
.price-pin::after {
	content: "";
	position: absolute;
	bottom: -7px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 7px solid var(--dark);
}
.price-pin:hover,
.price-pin.active {
	background: var(--dark);
	color: #fff;
}
.price-pin.active::after {
	border-top-color: var(--dark);
}

/* Cluster icons */
.price-cluster {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--primary);
	color: #fff;
	border-radius: 50%;
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-primary);
	box-shadow: 0 2px 10px rgba(253, 91, 0, 0.3);
	border: 2px solid #fff;
}

/* Mobile preview card (shown on pin tap) */
.map-preview {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-radius: 0;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
	z-index: 500;
	transform: translateY(100%);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: none;
}
.map-preview.active {
	transform: translateY(0);
}
.map-preview-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	text-decoration: none;
	color: var(--dark);
}
.map-preview-link:hover {
	color: var(--dark);
	text-decoration: none;
}
.map-preview-image {
	width: 80px;
	height: 60px;
	flex-shrink: 0;
	border-radius: 0;
	overflow: hidden;
}
.map-preview-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.map-preview-info {
	flex: 1;
	min-width: 0;
}
.map-preview-price {
	font-size: 16px;
	font-weight: 700;
}
.map-preview-location {
	font-size: 13px;
	color: var(--gray);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.map-preview-meta {
	font-size: 12px;
	color: var(--gray);
	margin-top: 2px;
}
.map-preview-arrow {
	flex-shrink: 0;
	color: var(--gray);
	font-size: 14px;
}

/* Mobile: List View floating button */
.map-mobile-list-btn {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: var(--dark);
	color: #fff;
	border-radius: 0;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--font-primary);
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	z-index: 450;
	transition: background 0.2s;
}
.map-mobile-list-btn:hover {
	background: var(--primary);
	color: #fff;
	text-decoration: none;
}

/* Responsive — mobile: map fills viewport */
@media (max-width: 991px) {
	.map-layout {
		height: calc(100vh - 60px);
	}
	.map-preview {
		display: block;
	}
}

/* Override Leaflet cluster default styles */
.leaflet-div-icon {
	background: none;
	border: none;
}

/* ==================== [ Map Page End ] ==================== */

/* ==================== [ Detail Page Start ] ==================== */

/* Back link strip */
.detail-back {
	background: var(--light);
	border-bottom: 1px solid var(--secondary);
	padding: 10px 0;
}
.detail-back-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}
.detail-back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--dark);
	text-decoration: none;
	transition: color 0.2s;
	flex-shrink: 0;
}
.detail-back-link:hover {
	color: var(--primary);
}
.detail-breadcrumb {
	overflow: hidden;
}
.detail-breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 4px;
	font-size: 13px;
	justify-content: flex-end;
}
.detail-breadcrumb li {
	display: flex;
	align-items: center;
	color: var(--gray);
	white-space: nowrap;
}
.detail-breadcrumb li + li::before {
	content: "/";
	margin-right: 4px;
	color: var(--secondary);
}
.detail-breadcrumb a {
	color: var(--gray);
	text-decoration: none;
}
.detail-breadcrumb a:hover {
	color: var(--primary);
}

/* Page layout */
.detail-page {
	padding: 24px 0 40px;
}
.detail-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}
@media (min-width: 992px) {
	.detail-layout {
		grid-template-columns: 1fr 380px;
		gap: 40px;
	}
}

/* ── H1 Heading ── */
.detail-heading {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 16px;
	color: var(--dark);
}

/* ── Gallery ── */
.detail-gallery {
	margin-bottom: 20px;
}

/* Hero image */
.detail-gallery-hero {
	position: relative;
	border-radius: 0;
	overflow: hidden;
	background: var(--light);
	cursor: pointer;
}
.detail-gallery-hero img {
	display: block;
	width: 100%;
	max-height: 420px;
	object-fit: cover;
	transition: transform 0.3s;
}
.detail-gallery-hero:hover img {
	transform: scale(1.02);
}
.detail-gallery-count {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 10;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	border-radius: 0;
	font-size: 13px;
	font-weight: 600;
}

/* Thumbnail strip */
.detail-gallery-thumbs {
	display: flex;
	gap: 8px;
	margin-top: 8px;
}
.detail-gallery-thumb {
	flex: 1;
	max-width: 25%;
	aspect-ratio: 4 / 3;
	border-radius: 0;
	overflow: hidden;
	cursor: pointer;
	background: var(--light);
	border: 2px solid transparent;
	transition: border-color 0.2s, opacity 0.2s;
}
.detail-gallery-thumb.active {
	border-color: var(--primary);
}
.detail-gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.2s;
}
.detail-gallery-thumb:hover img {
	opacity: 0.8;
}

/* No-image placeholder */
.detail-gallery-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 60px 20px;
	background: var(--light);
	border-radius: 0;
	margin-bottom: 20px;
	color: var(--gray);
}
.detail-gallery-placeholder i {
	font-size: 48px;
	opacity: 0.4;
}
.detail-gallery-placeholder p {
	margin: 0;
	font-size: 14px;
}

/* ── Lightbox ── */
.detail-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.92);
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}
.detail-lightbox.active {
	opacity: 1;
	visibility: visible;
}
.detail-lightbox-close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2001;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.15);
	border: none;
	border-radius: 50%;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	transition: background 0.2s;
}
.detail-lightbox-close:hover {
	background: rgba(255, 255, 255, 0.3);
}
.detail-lightbox-swiper {
	width: 90vw;
	max-width: 1000px;
	height: 80vh;
}
.detail-lightbox-swiper .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}
.detail-lightbox-swiper .swiper-slide img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: 0;
}
.detail-lightbox-swiper .swiper-button-prev,
.detail-lightbox-swiper .swiper-button-next {
	color: #fff;
}
.detail-lightbox-swiper .swiper-pagination {
	color: #fff;
	font-size: 14px;
	bottom: 8px;
}

/* ── Mobile title block ── */
.detail-title-mobile {
	margin-bottom: 20px;
}

/* ── Price ── */
.detail-price {
	font-size: 28px;
	font-weight: 700;
	color: var(--dark);
	line-height: 1.2;
}
.detail-price-period {
	font-size: 16px;
	font-weight: 400;
	color: var(--gray);
}
.detail-price-sub {
	font-size: 15px;
	color: var(--gray);
	margin-top: 2px;
}
.detail-address {
	font-size: 14px;
	color: var(--gray);
	margin: 6px 0 0;
}

/* ── Stats Row ── */
.detail-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	border: 1px solid var(--secondary);
	border-radius: 0;
	overflow: hidden;
	margin-bottom: 28px;
}
.detail-stat {
	flex: 1;
	min-width: 120px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	border-right: 1px solid var(--secondary);
}
.detail-stat:last-child {
	border-right: none;
}
.detail-stat i {
	font-size: 22px;
	color: var(--primary);
	flex-shrink: 0;
}
.detail-stat-label {
	display: block;
	font-size: 12px;
	color: var(--gray);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.detail-stat strong {
	display: block;
	font-size: 15px;
	font-weight: 700;
}

/* ── Sections ── */
.detail-section {
	margin-bottom: 32px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--secondary-25);
}
.detail-section:last-child {
	border-bottom: none;
}
.detail-section h2 {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 16px;
}

/* Key features list */
.detail-features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}
@media (min-width: 576px) {
	.detail-features {
		grid-template-columns: 1fr 1fr;
	}
}
.detail-features li {
	position: relative;
	padding-left: 24px;
	font-size: 15px;
	line-height: 1.5;
}
.detail-features li::before {
	content: "\f00c";
	font-family: "Font Awesome 7 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 2px;
	color: var(--primary);
	font-size: 13px;
}

/* Description */
.detail-description {
	font-size: 15px;
	line-height: 1.7;
	color: var(--dark);
}
.detail-description p {
	margin-bottom: 12px;
}

/* PDF link */
.detail-pdf-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	background: var(--dark);
	color: #fff;
	border-radius: 0;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s;
}
.detail-pdf-link:hover {
	background: var(--primary);
	color: #fff;
}
.detail-pdf-link i {
	font-size: 18px;
}

/* ── Map ── */
.detail-map {
	height: 300px;
	border-radius: 0;
	overflow: hidden;
	margin-bottom: 12px;
}
.detail-map-links {
	display: flex;
	gap: 20px;
}
.detail-map-links a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
}
.detail-map-links a:hover {
	text-decoration: underline;
}

/* ── Sidebar ── */
.detail-sidebar-sticky {
	position: sticky;
	top: 90px;
}

/* Admin edit */
.detail-admin-edit {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background: var(--light);
	border: 1px solid var(--secondary);
	border-radius: 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--dark);
	text-decoration: none;
	margin-bottom: 16px;
	transition: border-color 0.2s;
}
.detail-admin-edit:hover {
	border-color: var(--primary);
	color: var(--primary);
}

/* Price card */
.detail-price-card {
	margin-bottom: 20px;
}
.detail-price-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 8px;
}
.detail-meta {
	font-size: 13px;
	color: var(--gray);
	margin: 8px 0 0;
}
.detail-id {
	font-size: 12px;
	color: var(--gray);
	margin: 4px 0 0;
	opacity: 0.7;
}

/* Contact buttons */
.detail-contact-btns {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}
.detail-btn-phone {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px 20px;
	background: var(--primary);
	color: #fff;
	border: none;
	border-radius: 0;
	font-size: 15px;
	font-weight: 600;
	font-family: var(--font-primary);
	cursor: pointer;
	transition: background 0.2s;
}
.detail-btn-phone:hover {
	background: #e55000;
}
.detail-phone-revealed {
	text-align: center;
	padding: 14px 20px;
	background: var(--primary);
	border-radius: 0;
}
.detail-phone-revealed a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
}
.detail-quoteref {
	display: block;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 4px;
}
.detail-btn-enquiry {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px 20px;
	background: var(--dark);
	color: #fff;
	border-radius: 0;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s;
}
.detail-btn-enquiry:hover {
	background: #333;
	color: #fff;
}

/* Agent card */
.detail-agent-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px;
	background: var(--light);
	border-radius: 0;
	margin-bottom: 20px;
}
.detail-agent-card img {
	width: 56px;
	height: 56px;
	object-fit: contain;
	border-radius: 0;
	flex-shrink: 0;
	background: #fff;
}
.detail-agent-card strong {
	display: block;
	font-size: 14px;
	margin-bottom: 2px;
}
.detail-agent-card a {
	font-size: 13px;
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
}
.detail-agent-card a:hover {
	text-decoration: underline;
}

/* Enquiry form */
.detail-enquiry {
	padding: 20px;
	background: var(--light);
	border-radius: 0;
	margin-bottom: 20px;
}
.detail-enquiry h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 16px;
}
.detail-form-group {
	margin-bottom: 12px;
}
.detail-enquiry .form-control {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--secondary);
	border-radius: 0;
	font-size: 14px;
	font-family: var(--font-primary);
	background: #fff;
	transition: border-color 0.2s;
}
.detail-enquiry .form-control:focus {
	outline: none;
	border-color: var(--primary);
}
.detail-enquiry textarea.form-control {
	resize: vertical;
	min-height: 100px;
}
.detail-form-privacy {
	font-size: 12px;
	color: var(--gray);
	line-height: 1.5;
	margin-bottom: 12px;
}
.detail-form-privacy a {
	color: var(--primary);
}

/* ── Mobile CTA bar ── */
.detail-mobile-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	gap: 0;
	z-index: 500;
	background: #fff;
	border-top: 1px solid var(--secondary);
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
}
.detail-mobile-cta button,
.detail-mobile-cta a {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px;
	font-size: 15px;
	font-weight: 700;
	font-family: var(--font-primary);
	text-decoration: none;
	border: none;
	cursor: pointer;
}
.detail-mobile-cta .detail-mobile-cta-call,
.detail-mobile-cta .detail-mobile-cta-call-revealed {
	background: var(--primary);
	color: #fff;
}
.detail-mobile-cta .detail-mobile-cta-call:hover,
.detail-mobile-cta .detail-mobile-cta-call-revealed:hover {
	color: #fff;
}
.detail-mobile-cta-enquiry {
	background: var(--dark);
	color: #fff;
}
.detail-mobile-cta-enquiry:hover {
	color: #fff;
}
.detail-mobile-cta-full {
	flex: 1 !important;
}

/* Mobile enquiry slide-up panel */
.detail-enquiry-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}
.detail-enquiry-overlay.active {
	opacity: 1;
	visibility: visible;
}
.detail-enquiry-panel {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #fff;
	border-radius: 0;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
	transform: translateY(100%);
	transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
	max-height: 85vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.detail-enquiry-panel.active {
	transform: translateY(0);
}
.detail-enquiry-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid var(--secondary);
	position: sticky;
	top: 0;
	background: #fff;
	border-radius: 0;
	z-index: 1;
}
.detail-enquiry-panel-header h3 {
	margin: 0;
	font-size: 18px;
}
.detail-enquiry-panel-close {
	background: none;
	border: none;
	font-size: 22px;
	color: var(--text);
	cursor: pointer;
	padding: 4px 8px;
}
.detail-enquiry-panel-body {
	padding: 20px;
}

/* ── Responsive ── */
@media (max-width: 575px) {
	.detail-breadcrumb {
		display: none;
	}
	.detail-heading {
		font-size: 20px;
	}
}
@media (max-width: 991px) {
	.detail-page {
		padding-bottom: 80px;
	}
	.detail-gallery-hero img {
		max-height: 280px;
	}
	.detail-stat {
		border-right: none;
		border-bottom: 1px solid var(--secondary);
	}
	.detail-stat:last-child {
		border-bottom: none;
	}
	.detail-stats {
		flex-direction: column;
	}
}

/* ── Enquiry Inline Messages ── */

.enquiry-message {
    padding: 32px 24px;
    text-align: center;
}

.enquiry-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
}

.enquiry-success-icon {
    width: 56px;
    height: 56px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.enquiry-success-icon i {
    color: #fff;
    font-size: 24px;
}

.enquiry-success h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 8px;
}

.enquiry-success p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.enquiry-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.enquiry-error i {
    color: #ef4444;
    font-size: 16px;
    flex-shrink: 0;
}

.enquiry-error p {
    font-size: 13px;
    color: #991b1b;
    margin: 0;
}

.enquiry-btn-loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.enquiry-btn-loading .btn-text {
    visibility: hidden;
}

.enquiry-btn-loading .btn-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ==================== [ Detail Page End ] ==================== */

/* ==================== [ Dashboard ] ==================== */

/* ── Layout ── */
.dash-wrapper {
	display: flex;
	min-height: calc(100vh - 80px);
	background: var(--light);
}
.dash-main {
	flex: 1;
	min-width: 0;
	overflow-x: hidden;
}
.dash-content {
	max-width: 1440px;
	margin: 0 10%;
	padding: 32px 0;
}

/* ── Sidebar ── */
.dash-sidebar {
	width: 260px;
	flex-shrink: 0;
	background: #fff;
	border-right: 1px solid var(--secondary);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}
.dash-sidebar-close {
	display: none;
}
.dash-sidebar-header {
	padding: 24px 20px;
	border-bottom: 1px solid var(--secondary);
	text-align: center;
}
.dash-sidebar-avatar {
	width: 64px;
	height: 64px;
	border-radius: 0;
	object-fit: cover;
	margin-bottom: 12px;
}
.dash-sidebar-avatar-placeholder {
	width: 64px;
	height: 64px;
	border-radius: 0;
	background: var(--light);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: var(--gray);
	margin-bottom: 12px;
}
.dash-sidebar-name {
	font-size: 15px;
	font-weight: 700;
	color: var(--dark);
	line-height: 1.3;
}
.dash-sidebar-email {
	font-size: 13px;
	color: var(--gray);
	margin-top: 2px;
	word-break: break-all;
}

/* Nav items */
.dash-sidebar-nav {
	padding: 12px 0;
	flex: 1;
}
.dash-sidebar-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	color: var(--dark);
	text-decoration: none;
	border-left: 3px solid transparent;
	transition: all 0.2s;
}
.dash-sidebar-item:hover {
	background: var(--light);
	color: var(--dark);
	text-decoration: none;
}
.dash-sidebar-item.active {
	border-left-color: var(--primary);
	color: var(--primary);
	font-weight: 700;
	background: rgba(253, 91, 0, 0.05);
}
.dash-sidebar-item i {
	width: 20px;
	text-align: center;
	font-size: 15px;
}
.dash-sidebar-badge {
	margin-left: auto;
	background: var(--primary);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 0;
	min-width: 20px;
	text-align: center;
}
.dash-sidebar-divider {
	height: 1px;
	background: var(--secondary);
	margin: 8px 20px;
}

/* Mobile toggle bar */
.dash-mobile-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	background: #fff;
	border-bottom: 1px solid var(--secondary);
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	color: var(--dark);
}
.dash-mobile-toggle i:last-child {
	margin-left: auto;
	font-size: 12px;
	color: var(--gray);
}
.dash-sidebar-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1004;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}
.dash-sidebar-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* ── Metric Cards ── */
.dash-metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 24px;
}
.dash-metrics-4 {
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: 32px;
}
.dash-metric-card {
	background: #fff;
	border: 1px solid var(--secondary);
	border-radius: 0;
	padding: 24px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	transition: box-shadow 0.3s;
}
.dash-metric-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.dash-metric-icon {
	width: 48px;
	height: 48px;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}
.dash-metric-icon.blue { background: #e8f4fd; color: #1a8cd8; }
.dash-metric-icon.orange { background: #fff3eb; color: var(--primary); }
.dash-metric-icon.green { background: #e6f9f0; color: #0d9b5c; }
.dash-metric-icon.purple { background: #f3eefa; color: #7c3aed; }
.dash-metric-value {
	font-size: 28px;
	font-weight: 700;
	color: var(--dark);
	line-height: 1.1;
}
.dash-metric-label {
	font-size: 13px;
	color: var(--gray);
	margin-top: 2px;
}

/* ── Dashboard Sections ── */
.dash-section {
	margin-bottom: 32px;
}
.dash-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}
.dash-section-header h2 {
	font-size: 20px;
	font-weight: 700;
	margin: 0;
	color: var(--dark);
}

/* ── Package Progress Bar ── */
.dash-package {
	background: #fff;
	border: 1px solid var(--secondary);
	border-radius: 0;
	padding: 20px 24px;
	margin-bottom: 32px;
}
.dash-package-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}
.dash-package-header strong {
	font-size: 15px;
	color: var(--dark);
}
.dash-package-header span {
	font-size: 13px;
	color: var(--gray);
}
.dash-package-bar {
	height: 8px;
	background: var(--light);
	border-radius: 4px;
	overflow: hidden;
}
.dash-package-fill {
	height: 100%;
	background: var(--primary);
	border-radius: 4px;
	transition: width 0.5s ease;
}
.dash-package-info {
	margin-top: 8px;
	font-size: 13px;
	color: var(--gray);
}

/* ── Quick Actions ── */
.dash-quick-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}
.dash-quick-action {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: #fff;
	border: 1px solid var(--secondary);
	border-radius: 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--dark);
	text-decoration: none;
	transition: all 0.2s;
}
.dash-quick-action:hover {
	border-color: var(--primary);
	color: var(--primary);
	text-decoration: none;
}

/* ── Recent Activity Table ── */
.dash-table-wrap {
	background: #fff;
	border: 1px solid var(--secondary);
	border-radius: 0;
	overflow-x: auto;
}
.dash-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 600px;
}
.dash-table th {
	background: var(--light);
	padding: 12px 16px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--gray);
	text-align: left;
	border-bottom: 1px solid var(--secondary);
}
.dash-table td {
	padding: 12px 16px;
	font-size: 14px;
	color: var(--dark);
	border-bottom: 1px solid var(--secondary-25);
	word-break: break-word;
}
.dash-table tr:last-child td {
	border-bottom: none;
}
.dash-table tr:hover td {
	background: var(--light);
}

/* Status badges */
.dash-badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 0;
	font-size: 12px;
	font-weight: 700;
}
.dash-badge-green { background: #e6f9f0; color: #0d9b5c; }
.dash-badge-amber { background: #fff8e1; color: #f59e0b; }
.dash-badge-red { background: #fef2f2; color: #dc2626; }
.dash-badge-gray { background: var(--light); color: var(--gray); }

/* ── Chart Tabs ── */
.dash-chart-tab {
	border: 1px solid var(--secondary);
	background: #fff;
	color: var(--dark);
	padding: 6px 16px;
	border-radius: 0;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
}
.dash-chart-tab:hover {
	border-color: var(--primary);
	color: var(--primary);
}
.dash-chart-tab.active {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

/* ── Property Cards (dashboard) ── */
/* Property table thumbnail */
.dash-prop-thumb {
	width: 60px;
	height: 42px;
	overflow: hidden;
	background: var(--light);
}
.dash-prop-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dash-prop-actions {
	display: flex;
	gap: 6px;
	justify-content: flex-end;
}
.dash-prop-action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 34px;
	height: 34px;
	border: 1px solid var(--secondary);
	background: #fff;
	color: var(--dark);
	font-size: 13px;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
}
.dash-prop-action-btn:hover {
	border-color: var(--primary);
	color: var(--primary);
	text-decoration: none;
}
.dash-prop-action-btn.danger:hover {
	border-color: #dc2626;
	color: #dc2626;
}

/* Mobile property cards */
.dash-prop-card-mobile {
	background: #fff;
	border: 1px solid var(--secondary);
	padding: 14px;
	margin-bottom: 12px;
}
.dash-prop-card-top {
	display: flex;
	gap: 14px;
	margin-bottom: 10px;
}
.dash-prop-card-img {
	width: 90px;
	height: 65px;
	flex-shrink: 0;
	overflow: hidden;
	background: var(--light);
}
.dash-prop-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dash-prop-card-info {
	flex: 1;
	min-width: 0;
}
.dash-prop-card-stats {
	display: flex;
	gap: 16px;
	font-size: 12px;
	color: var(--gray);
	padding: 8px 0;
	border-top: 1px solid var(--secondary-25);
	margin-bottom: 10px;
}
.dash-prop-card-stats span i {
	margin-right: 4px;
}
.dash-prop-card-actions {
	display: flex;
	gap: 8px;
}
.dash-prop-card-actions .dash-prop-action-btn {
	flex: 1;
	width: auto;
	height: auto;
	padding: 8px;
	font-size: 13px;
	font-weight: 600;
}

/* ── Form Steps ── */
.dash-form-steps {
	display: flex;
	align-items: center;
	margin-bottom: 32px;
	padding: 0;
	list-style: none;
	counter-reset: step;
}
.dash-form-step {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--gray);
	position: relative;
	cursor: pointer;
}
.dash-form-step:hover {
	color: var(--dark);
}
.dash-form-step::before {
	counter-increment: step;
	content: counter(step);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--light);
	border: 2px solid var(--secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	flex-shrink: 0;
	transition: all 0.3s;
	position: relative;
	z-index: 2;
}
.dash-form-step span {
	position: relative;
	z-index: 2;
}
.dash-form-step.active {
	color: var(--dark);
	font-weight: 700;
}
.dash-form-step.active::before {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}
.dash-form-step.complete {
	color: #0d9b5c;
}
.dash-form-step.complete::before {
	content: "\f00c";
	font-family: "Font Awesome 7 Free";
	font-weight: 900;
	background: #0d9b5c;
	border-color: #0d9b5c;
	color: #fff;
	font-size: 12px;
}

/* Form layout — ensures every step is the same width */
.dash-form-body {
	width: 100%;
}

/* Form sections */
.dash-form-card {
	background: #fff;
	border: 1px solid var(--secondary);
	border-radius: 0;
	padding: 48px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.dash-form-card + .dash-form-card {
	margin-top: 24px;
}
.dash-form-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 8px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--secondary);
}
.dash-form-card h3:only-child,
.dash-form-card h3:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}
.dash-form-subtitle {
	font-size: 13px;
	color: var(--gray);
	margin: 0 0 28px;
	line-height: 1.5;
}
.dash-form-card h3 + .dash-form-subtitle {
	margin-top: -8px;
	padding-top: 0;
}
.dash-form-info-box {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: #FFF7F2;
	border-left: 3px solid var(--primary);
	border-radius: 0 6px 6px 0;
	padding: 14px 16px;
	margin: 0 0 28px;
}
.dash-form-card h3 + .dash-form-info-box {
	margin-top: -8px;
}
.dash-form-info-box i {
	color: var(--primary);
	font-size: 16px;
	margin-top: 2px;
	flex-shrink: 0;
}
.dash-form-info-box p {
	font-size: 13px;
	color: var(--dark);
	line-height: 1.6;
	margin: 0;
}
.dash-step-errors {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: #FFF0F0;
	border-left: 3px solid #D32F2F;
	border-radius: 0 6px 6px 0;
	padding: 14px 16px;
	margin-bottom: 24px;
}
.dash-step-errors i {
	color: #D32F2F;
	font-size: 16px;
	margin-top: 2px;
	flex-shrink: 0;
}
.dash-step-errors p {
	font-size: 13px;
	color: var(--dark);
	line-height: 1.6;
	margin: 0;
}
.dash-step-errors ul {
	margin: 6px 0 0;
	padding-left: 18px;
	font-size: 13px;
	line-height: 1.6;
}
.dash-input-error {
	border-color: #D32F2F !important;
	box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.15) !important;
}
.dash-form-divider {
	border: none;
	border-top: 1px solid var(--secondary);
	margin: 32px 0;
}

.dash-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.dash-form-row-single {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	max-width: calc(50% - 10px);
}
.dash-form-group {
	margin-bottom: 24px;
}
.dash-form-group label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 6px;
}
.dash-form-group .form-control {
	width: 100%;
}
.dash-form-group select.form-control {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 40px;
	cursor: pointer;
}
.dash-form-hint {
	font-size: 12px;
	color: var(--gray);
	margin-top: 4px;
}
.dash-form-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 28px;
	gap: 12px;
}
.dash-form-nav .btn {
	min-width: 140px;
}

/* ── Image Uploader ── */
.dash-upload-zone {
	border: 2px dashed var(--secondary);
	border-radius: 0;
	padding: 40px 24px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s;
	background: var(--light);
}
.dash-upload-zone:hover,
.dash-upload-zone.dragover {
	border-color: var(--primary);
	background: rgba(253, 91, 0, 0.04);
}
.dash-upload-zone i {
	font-size: 36px;
	color: var(--gray);
	margin-bottom: 12px;
	display: block;
}
.dash-upload-zone p {
	margin: 0;
	font-size: 14px;
	color: var(--gray);
}
.dash-upload-zone p strong {
	color: var(--primary);
}
.dash-upload-previews {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-top: 16px;
}
.dash-upload-thumb {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: 0;
	overflow: hidden;
	background: var(--light);
	cursor: grab;
	border: 2px solid transparent;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.dash-upload-thumb:active {
	cursor: grabbing;
}
.dash-upload-thumb.main {
	border-color: var(--primary);
}
.dash-upload-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dash-upload-thumb-badge {
	position: absolute;
	top: 6px;
	left: 6px;
	background: var(--primary);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 0;
}
.dash-upload-thumb-remove {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	transition: background 0.2s;
}
.dash-upload-thumb-remove:hover {
	background: #dc2626;
}
.dash-upload-thumb-drag {
	position: absolute;
	bottom: 6px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 10px;
	padding: 2px 10px;
	border-radius: 0;
}
/* SortableJS ghost */
.dash-upload-thumb-ghost {
	opacity: 0.4;
	border: 2px dashed var(--primary);
}

/* ── Enquiry List ── */
.dash-enquiry-card {
	background: #fff;
	border: 1px solid var(--secondary);
	border-radius: 0;
	margin-bottom: 8px;
	overflow: hidden;
	transition: box-shadow 0.2s;
	padding: 14px 16px;
	cursor: pointer;
}
.dash-enquiry-card:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.dash-enquiry-card.unread {
	border-left: 4px solid #dc2626;
}
.dash-enquiry-row {
	cursor: pointer;
	border-left: 4px solid transparent;
}
.dash-enquiry-row.unread { border-left-color: #dc2626; font-weight: 600; }
.dash-enquiry-row.read { border-left-color: #f59e0b; }
.dash-enquiry-row.replied { border-left-color: #0d9b5c; }

/* ── Profile layout ── */
.dash-profile-grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 24px;
	align-items: start;
}

/* ── Dashboard alert banners ── */
.dash-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 20px;
	margin-bottom: 20px;
	border-radius: 8px;
	font-size: 14px;
}
.dash-banner-content {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.dash-banner-content i { font-size: 18px; margin-top: 2px; }
.dash-banner-content strong { display: block; margin-bottom: 2px; }
.dash-banner-content p { margin: 0; opacity: 0.85; font-size: 13px; }
.dash-banner-cta {
	white-space: nowrap;
	padding: 8px 18px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	flex-shrink: 0;
}
.dash-banner-cta:hover { opacity: 0.9; }

/* Red (urgent: payment failed, expired, review) */
.dash-banner-red {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
}
.dash-banner-red .dash-banner-cta {
	background: #dc2626;
	color: #fff;
}

/* Amber (warning: canceled, no plan) */
.dash-banner-amber {
	background: #fffbeb;
	border: 1px solid #fde68a;
	color: #92400e;
}
.dash-banner-amber .dash-banner-cta {
	background: #f59e0b;
	color: #fff;
}

/* Info (subtle: no logo, tips) */
.dash-banner-info {
	background: #f0f9ff;
	border: 1px solid #bae6fd;
	color: #0c4a6e;
}
.dash-banner-info .dash-banner-cta {
	background: #0284c7;
	color: #fff;
}

/* ── Welcome banner ── */
.dash-welcome {
	margin-bottom: 32px;
}
.dash-welcome h1 {
	font-size: 24px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 4px;
}
.dash-welcome p {
	font-size: 14px;
	color: var(--gray);
	margin: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
	.dash-content {
		margin: 0;
		padding: 32px 24px;
	}
	.dash-wrapper {
		flex-direction: column;
	}
	.dash-sidebar {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		z-index: 1005;
		width: 280px;
		transform: translateX(-100%);
		transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
		box-shadow: none;
	}
	.dash-sidebar.active {
		transform: translateX(0);
		box-shadow: 8px 0 32px rgba(0, 0, 0, 0.15);
	}
	.dash-sidebar-close {
		display: flex;
		position: absolute;
		top: 12px;
		right: 12px;
		background: none;
		border: none;
		font-size: 20px;
		color: var(--gray);
		cursor: pointer;
		padding: 4px 8px;
	}
	.dash-mobile-toggle {
		display: flex;
	}
	.dash-metrics,
	.dash-metrics-4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.dash-form-row,
	.dash-form-row-single {
		grid-template-columns: 1fr;
		max-width: 100%;
	}
	.dash-upload-previews {
		grid-template-columns: repeat(2, 1fr);
	}
	.dash-profile-grid {
		grid-template-columns: 1fr;
	}
	.dash-form-step span {
		display: none;
	}
	.dash-form-steps {
		justify-content: center;
		gap: 0;
	}
}
@media (max-width: 575px) {
	.dash-content {
		padding: 16px;
	}
	.dash-metrics {
		grid-template-columns: 1fr;
	}
	.dash-metric-card {
		padding: 16px;
	}
	.dash-metric-value {
		font-size: 24px;
	}
	.dash-form-card {
		padding: 24px 16px;
	}
	.dash-banner {
		flex-direction: column;
		align-items: flex-start;
	}
	.dash-banner-cta {
		width: 100%;
		text-align: center;
	}
}

/* ==================== [ Dashboard End ] ==================== */
