/* --- EXISTING GLOSSARY STYLES --- */
.term-card {
	background: white;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	border-left: 5px solid #C9A46A;
	text-align: left;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.term-card h3 {
	font-size: 1.8rem;
	margin-bottom: 15px;
	color: #2B2B2B;
}

.meta-section {
	margin-bottom: 15px;
}

.meta-label {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 1px;
	color: #C9A46A;
	display: block;
	margin-bottom: 5px;
}

.meta-content {
	font-size: 1rem;
	color: #4A4A4A;
	line-height: 1.6;
}

.example-box {
	background: #F5F1EA;
	padding: 20px;
	border-radius: 8px;
	margin-top: 15px;
	font-style: italic;
	border-left: 3px solid #B89154;
}

.term-meta {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #E6DED2;
}

.related-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}

.tag {
	background: #E6DED2;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.85rem;
	color: #2B2B2B;
	font-weight: 500;
}

.term-action {
	margin-top: 15px;
	display: flex;
	text-align: right;
	justify-content: flex-end;
}

.term-card .urbatect-glossary-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	background-color: #E0BC89;
	/* Default background color matching UI */
	color: #2B2B2B;
	/* Default text color */
	padding: 8px 20px;
	border-radius: 8px;
	font-weight: 500;
	font-size: 1rem;
	transition: all 0.3s ease;
	cursor: pointer;
}

.term-card .urbatect-glossary-btn:hover {
	background-color: #C9A46A;
	color: #000;
}

.urbatect-search-container {
	max-width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

.urbatect-search-box {
	background: white;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0 25px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	border: 1px solid #E6DED2;
	border-radius: 50px;
	transition: all 0.3s ease;
	height: 50px;
}

.urbatect-search-box:focus-within {
	border-color: #C9A46A;
	box-shadow: 0 8px 20px rgba(201, 164, 106, 0.15);
}

.urbatect-search-box input {
	border: none;
	outline: none;
	flex-grow: 1;
	padding: 10px 0;
	font-size: 1rem;
	background: transparent;
}

.urbatect-search-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 15px;
	transition: transform 0.2s;
}

.urbatect-search-icon-wrapper:hover {
	transform: scale(1.1);
}

.urbatect-search-box i {
	color: #C9A46A;
	font-size: 18px;
}

.urbatect-search-box svg {
	fill: #C9A46A;
	color: #C9A46A;
	width: 18px;
	height: 18px;
}

.urbatect-stt {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.urbatect-stt.visible {
	opacity: 1;
	visibility: visible;
}

.urbatect-stt:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.urbatect-stt svg {
	display: block;
	margin: auto;
}

/* --- NEW: ADU RULE BOX STYLES --- */
.urbatect-adu-rule-section {

	margin: 0px auto;

	font-family: 'Inter', sans-serif;
}

.rule-header {
	text-align: center;
	margin-bottom: 60px;
}

.rule-main-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 5vw, 3rem);
	color: #222;
	margin-bottom: 20px;
}



.rule-subtitle {
	font-size: 1.25rem;
	color: #555;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

.rule-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.rule-card {
	background: #fdfdfd;
	padding: 40px;
	border: 1px solid #eee;
	text-align: center;
	transition: all 0.3s ease;

}

.rule-card:hover {
	transform: translateY(-5px);
	border-color: #C9A46A;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rule-icon-wrap {
	width: 64px;
	height: 64px;
	background: #F8F5F1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	color: #C9A46A;
}

.rule-icon-wrap i,
.rule-icon-wrap svg {
	font-size: 24px;
	fill: #C9A46A;
	width: 24px;
	height: 24px;
}

.rule-card-label {
	display: block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #aaa;
	margin-bottom: 15px;
}

.rule-card-text {
	font-size: 1.1rem;
	color: #333;
	font-weight: 500;
	line-height: 1.5;
}

.rule-banner {
	background: #000;
	color: #fff;
	padding: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	border-radius: 10px;
}

.banner-content h4 {

	font-size: 1.5rem;
	margin-bottom: 8px;
	color: #fff;
}

.banner-content p {
	font-size: 0.9rem;
	color: #999;
	margin: 0;
}

.banner-divider {
	flex-grow: 1;
	height: 1px;
	background: #333;
}

.banner-highlight {

	font-size: 1.75rem;
	color: #C9A46A;
}

@media (max-width: 768px) {
	.rule-banner {
		flex-direction: column;
		text-align: center;
	}

	.banner-divider {
		width: 100%;
		height: 1px;
	}
}

/* --- NEW: STEPS WIDGET STYLES --- */
.urbatect-steps-container {
	position: relative;
	padding-left: 0;

}

@media (max-width: 767px) {
	.urbatect-steps-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

.urbatect-step-item {
	display: flex;
	align-items: flex-start;
	position: relative;
	padding-bottom: 0;
	gap: 20px;
}

.urbatect-step-item:last-child {
	padding-bottom: 0;
}

/* The vertical line is removed for grid layout */
.urbatect-step-item::after {
	display: none;
}

.step-number {
	flex-shrink: 0;
	width: 50px;
	font-size: 48px;
	line-height: 1;
	font-weight: 700;
	z-index: 10;
	text-align: center;
	opacity: 0.2;
	/* Subdued watermark look as seen in screenshot */
}

.step-content {
	flex-grow: 1;
	padding-top: 5px;
}

.step-title {
	margin: 0 0 10px;
	font-size: 1.5rem;
}

.step-desc {
	margin: 0;
	line-height: 1.6;
}

/* --- NEW: TIMELINE WIDGET STYLES --- */
.urbatect-timeline-widget {
	max-width: 900px;
	margin: 0 auto;
	font-family: 'Inter', sans-serif;
}

.timeline-header-wrap {
	text-align: center;
	margin-bottom: 40px;
}

.timeline-main-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 4vw, 3rem);
	color: #111;
	margin: 0 0 5px;
	line-height: 1.2;
}

.timeline-sub-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 4vw, 3rem);
	color: #d1b894;
	margin: 0;
	line-height: 1.2;
	font-weight: 400;
}

.timeline-box {
	background: #fff;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	margin-bottom: 25px;
	border-radius: 10px;
}

.timeline-intro {
	text-align: center;
	padding: 30px 20px;
	font-size: 1.1rem;
	color: #333;
	font-weight: 500;
}

.timeline-head {
	display: flex;
	justify-content: space-between;
	padding: 15px 40px;
	background: #fcfcfc;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	font-size: 0.75rem;
	font-weight: 700;
	color: #999;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.t-col-1 {
	flex: 1;
}

.t-col-2 {
	flex: 1;
	text-align: right;
}

.timeline-row {
	display: flex;
	justify-content: space-between;
	padding: 25px 40px;
	border-bottom: 1px solid #f5f5f5;
	transition: background 0.2s;
}

.timeline-row:last-child {
	border-bottom: none;
}

.timeline-row:hover {
	background: #fafafa;
}

.t-row-title {
	font-weight: 700;
	color: #222;
	font-size: 1.05rem;
	flex: 1;
}

.t-row-val {
	font-weight: 600;
	color: #c9a46a;
	font-size: 1.05rem;
	text-align: right;
	flex: 1;
}

.timeline-footer {
	background: #000;
	color: #fff;
	padding: 30px 40px;
	text-align: center;
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-size: 1.4rem;
	border-radius: 10px;
}

@media (max-width: 600px) {
	.timeline-head {
		padding: 15px 20px;
	}

	.timeline-row {
		padding: 20px 20px;

		gap: 8px;
	}

	.t-col-2,
	.t-row-val {
		text-align: right;
	}

	.timeline-footer {
		padding: 25px 20px;
		font-size: 1.2rem;
	}
}

/* --- NEW: SIMPLE TABLE WIDGET STYLES --- */
.urbatect-simple-table-widget {
	max-width: 900px;
	margin: 0 auto;
	font-family: 'Inter', sans-serif;
}

.simple-table-box {
	background: #fff;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	overflow: hidden;
}

.st-head {
	display: flex;
	justify-content: space-between;
	padding: 25px 40px;
	background: #fbfbfb;
	/* Light grey block */
	border: 1px solid #f0f0f0;
	font-size: 0.8rem;
	font-weight: 700;
	color: #999;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.st-col-1 {
	flex: 1;
}

.st-col-2 {
	flex: 1;
	text-align: right;
}

.st-row {
	display: flex;
	justify-content: space-between;
	padding: 30px 40px;
	border-bottom: 1px solid #f5f5f5;
	transition: background 0.2s;
}

.st-row:last-child {
	border-bottom: none;
}

.st-row:hover {
	background: #fafafa;
}

.st-row-title {
	font-weight: 700;
	color: #222;
	font-size: 1.15rem;
	flex: 1;
}

.st-row-val {
	font-weight: 700;
	color: #c9a46a;
	font-size: 1.25rem;
	text-align: right;
	flex: 1;
}

@media (max-width: 600px) {
	.st-head {
		padding: 15px 20px;
	}

	.st-row {
		padding: 20px 20px;
		flex-direction: column;
		gap: 8px;
	}

	.st-col-2,
	.st-row-val {
		text-align: left;
	}
}

/* --- NEW: KEY FACTS SNAPSHOT WIDGET --- */
.urbatect-kfs-widget {
	font-family: 'Inter', sans-serif;
}

.kfs-box {
	background-color: #ffffff;
	border: 1px solid #d0c8be;
	border-radius: 8px;
	padding: 30px;
}

.kfs-heading {
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #1a1a1a;
	margin: 0 0 18px;
	line-height: 1.4;
}

.kfs-divider {
	border: none;
	border-top: 1px solid #d0c8be;
	margin: 0 0 24px;
	opacity: 1;
}

.kfs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
}

.kfs-item {
	padding: 18px 20px 18px 0;
	border-bottom: 1px solid #d7d7d7;
}

.kfs-item:nth-child(odd) {
	padding-right: 30px;
	border-right: 1px solid #d7d7d7;
}

.kfs-item:nth-child(even) {
	padding-left: 30px;
	padding-right: 0;
}

/* Remove bottom border from last row (both last items) */
.kfs-item:nth-last-child(-n+2):nth-child(odd),
.kfs-item:nth-last-child(-n+2):nth-child(even),
.kfs-item:last-child {
	border-bottom: none;
}

.kfs-item-title {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: #a07840;
	margin-bottom: 6px;
	line-height: 1.3;
}

.kfs-item-desc {
	margin: 0;
	font-size: 0.92rem;
	color: #333333;
	line-height: 1.55;
}

.kfs-item-desc p {
	margin: 0;
	font-size: inherit;
	color: inherit;
	line-height: inherit;
}

.kfs-subheading {
	margin: 24px 0 0;
	font-size: 0.82rem;
	color: #666666;
	font-style: italic;
	line-height: 1.6;
}

@media (max-width: 640px) {
	.kfs-grid {
		grid-template-columns: 1fr;
	}

	.kfs-item {
		border-right: none !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		border-bottom: 1px solid #e8e2da;
	}

	.kfs-item:last-child {
		border-bottom: none;
	}
}

/* --- NEW: FAQ ACCORDION WIDGET --- */
.urbatect-faq-accordion {
	font-family: 'Inter', sans-serif;
}

.faq-accordion-item {
	overflow: hidden;
}

.faq-accordion-item+.faq-accordion-item {
	margin-top: 10px;
}

.faq-accordion-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border: 1px solid #d7d7d7;
	padding: 18px 24px;
	background-color: #C9A46A;
	border-radius: 8px;
	cursor: pointer;
	user-select: none;
	transition: background-color 0.25s ease, border-radius 0.25s ease;
}

.faq-accordion-item.is-active .faq-accordion-header {
	background-color: #b8904f;
	border-radius: 8px 8px 0 0;
}

.faq-accordion-title {
	flex: 1;
	font-size: 1rem;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1.5;
	margin: 0;
}

.faq-accordion-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.faq-accordion-icon i {
	font-size: 16px;
	color: #1a1a1a;
}

.faq-accordion-icon svg {
	width: 16px;
	height: 16px;
	fill: #1a1a1a;
}

.faq-accordion-body {
	background-color: #ffffff;
	border: 1px solid #C9A46A;
	border-top: none;
	border-radius: 0 0 8px 8px;
	overflow: hidden;
}

.faq-accordion-body-inner {
	padding: 20px 24px;
	font-size: 0.95rem;
	color: #333333;
	line-height: 1.7;
}

.faq-accordion-body-inner p {
	margin: 0 0 12px;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}

.faq-accordion-body-inner p:last-child {
	margin-bottom: 0;
}

@media (max-width: 600px) {
	.faq-accordion-header {
		padding: 14px 18px;
	}

	.faq-accordion-title {
		font-size: 0.95rem;
	}

	.faq-accordion-body-inner {
		padding: 16px 18px;
	}
}

/* --- NEW: RENT TABLE WIDGET --- */
.urbatect-rent-table-container {
	margin-bottom: 24px;
}

.rent-table-title {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 1.2;
	margin: 0 0 24px 0;
	color: #000;
}

.rent-table-wrapper {
	width: 100%;
	overflow-x: auto;
	background: #fff;

	border-radius: 12px;

}

.rent-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	min-width: 600px;
	margin-bottom: 0 !important;
}

.rent-table th,
.rent-table td {
	padding: 20px;
	border: 1px solid #e8e2da;
	font-family: 'Inter', sans-serif;
}

.rent-table thead th {
	background-color: transparent;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.05em;
	color: #000;
}

.rent-table td {
	font-size: 16px;
	color: #000;
}

.rent-table th.col-accent,
.rent-table td.col-accent {
	color: #C9A46A;
}

.rent-table td.col-accent strong {
	font-weight: 700;
}

.rent-table-subheading {
	margin-top: 16px;
	font-size: 12px;
	color: #777;
	font-style: italic;
	font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
	.rent-table-title {
		font-size: 22px;
	}

	.rent-table th,
	.rent-table td {
		padding: 15px 12px;
		font-size: 14px;
	}
}

/* --- NEW: KEY FACTS TABLE WIDGET --- */
.urbatect-kft-widget {
	margin-bottom: 24px;
}

.kft-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border: 1px solid #d7d7d7;
	border-radius: 8px;
	overflow: hidden;
}

.kft-table th,
.kft-table td {
	padding: 15px 20px;
	border: 1px solid #d7d7d7;
	font-family: 'Inter', sans-serif;
	text-align: left;
	background-color: #fff !important;
}

.kft-table th {
	background-color: #fff !important;
	font-weight: 700;
	font-size: 14px;
	color: #1a1a1a;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.kft-table td {
	font-size: 16px;
	color: #333333;
	line-height: 1.5;
}

/* 2-Column Layout */
.urbatect-kft-widget .kft-table[data-columns="2"] .kft-col-1 {
	width: 30%;
	font-weight: 600;
}

.urbatect-kft-widget .kft-table[data-columns="2"] .kft-col-2 {
	width: 70%;
}

/* 3-Column Layout (with Official Source) */
.urbatect-kft-widget .kft-table[data-columns="3"] .kft-col-1 {
	width: 25%;
	font-weight: 600;
}

.urbatect-kft-widget .kft-table[data-columns="3"] .kft-col-2 {
	width: 50%;
}

.urbatect-kft-widget .kft-table[data-columns="3"] .kft-col-3 {
	width: 25%;
}

.kft-bottom-content {
	margin-top: 20px;
	font-size: 14px;
	color: #666666;
	line-height: 1.6;
}

.kft-bottom-content p {
	margin: 0 0 10px;
}

.kft-bottom-content p:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.kft-table th,
	.kft-table td {
		padding: 12px 15px;
		font-size: 14px;
	}

	/* 2-Column responsive */
	.urbatect-kft-widget .kft-table[data-columns="2"] .kft-col-1 {
		width: 35%;
	}

	.urbatect-kft-widget .kft-table[data-columns="2"] .kft-col-2 {
		width: 65%;
	}

	/* 3-Column responsive */
	.urbatect-kft-widget .kft-table[data-columns="3"] .kft-col-1 {
		width: 30%;
	}

	.urbatect-kft-widget .kft-table[data-columns="3"] .kft-col-2 {
		width: 40%;
	}

	.urbatect-kft-widget .kft-table[data-columns="3"] .kft-col-3 {
		width: 30%;
	}
}