/* =========================================================
   DMS Property Experts LLP — custom stylesheet
   ========================================================= */

:root {
	--navy: #0e1b30;
	--navy-2: #14233d;
	--gold: #c6a15b;
	--gold-dark: #b38f47;
	--text-dark: #16213a;
	--text-gray: #6b7280;
	--border-light: #e6e6e6;
	--bg-cream: #f4f1ea;
	--font: 'Montserrat', Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font);
	color: var(--text-dark);
	font-weight: 400;
	line-height: 1.7;
	overflow-x: hidden;
}

a,
a:hover,
a:focus {
	text-decoration: none;
	transition: all .25s ease;
}

img {
	max-width: 100%;
}

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

.container {
	max-width: 1200px;
}

.eyebrow {
	display: block;
	color: var(--gold);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.section-title {
	font-size: 34px;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.3;
	margin: 0 0 18px;
}

.section-head {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 50px;
}

.section-pad {
	padding: 90px 0;
}

.btn-dms {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 16px 30px;
	border-radius: 3px;
	border: 2px solid transparent;
	white-space: nowrap;
}

.btn-gold {
	background: var(--gold);
	color: #fff;
}

.btn-gold:hover {
	background: var(--gold-dark);
	color: #fff;
}

.btn-outline-dark {
	border-color: rgba(15, 25, 45, .25);
	color: var(--text-dark);
	background: transparent;
}

.btn-outline-dark:hover {
	background: var(--text-dark);
	border-color: var(--text-dark);
	color: #fff;
}

.btn-outline-white {
	border-color: rgba(255, 255, 255, .5);
	color: #fff;
	background: transparent;
}

.btn-outline-white:hover {
	background: #fff;
	color: var(--navy);
	border-color: #fff;
}

.btn-navy {
	background: var(--navy);
	color: #fff;
}

.btn-navy:hover {
	background: var(--gold);
	color: #fff;
}

/* ===================== HEADER ===================== */
#site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgb(14 27 48 / 0%);
	padding: 18px 0;
	transition: background .3s ease;
}

img.brand-logo {
	width: 80px;
}

#site-header.scrolled {
	background: rgb(14 27 48 / 95%);
}

.header-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand {
	display: flex;
	flex-direction: column;
	line-height: 1;
	color: #fff;
}

.brand .brand-name {
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 3px;
}

.brand .brand-tag {
	font-size: 9px;
	letter-spacing: 3px;
	color: var(--gold);
	margin-top: 4px;
}

.main-nav {
	display: flex;
	gap: 34px;
}

.main-nav a {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}

.main-nav a:hover,
.main-nav a.active {
	color: var(--gold);
}

.header-phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	border: 1px solid rgba(255, 255, 255, .4);
	border-radius: 30px;
	padding: 10px 22px;
}

.header-phone:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.nav-close,
.nav-phone {
	display: none;
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	color: #fff;
	font-size: 26px;
}

/* ===================== HERO ===================== */
#hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background-image: url("../img/b1.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

#hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(90deg, rgba(9, 15, 28, .92), rgba(9, 15, 28, .68) 55%, rgba(9, 15, 28, .35));
}

#hero .hero-inner {
	position: relative;
	z-index: 2;
	padding-top: 90px;
}

.hero-eyebrow {
	color: var(--gold);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 22px;
	display: block;
}

.hero-title {
	color: #fff;
	font-size: 52px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 22px;
	max-width: 700px;
}

.hero-sub {
	color: #cfd4de;
	font-size: 16px;
	max-width: 560px;
	margin-bottom: 40px;
}

.hero-buttons {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

/* ===================== STATS BAR ===================== */
#stats-bar {
	background: #fff;
	border-bottom: 1px solid var(--border-light);
}

.stats-row {
	display: flex;
}

.stat-item {
	flex: 1;
	text-align: center;
	padding: 46px 15px;
	border-right: 1px solid var(--border-light);
}

.stat-item:last-child {
	border-right: none;
}

.stat-item .stat-icon {
	font-size: 30px;
	color: var(--navy);
	margin-bottom: 14px;
}

.stat-item .stat-number {
	font-size: 30px;
	font-weight: 700;
	color: var(--text-dark);
	display: block;
}

.stat-item .stat-label {
	font-size: 13px;
	color: var(--text-gray);
	margin-top: 4px;
	display: block;
}

.stat-item.stat-tags .stat-label {
	font-weight: 700;
	color: var(--text-dark);
	font-size: 13px;
	line-height: 1.6;
	margin-top: 0;
}

/* ===================== ABOUT ===================== */
#about {
	padding: 50px 0;
}

.about-media {
	width: 100%;
	aspect-ratio: 4/3.2;
	border-radius: 6px;
	background-image: url('../img/b2.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}

.about-text {
	padding-left: 50px;
}

.about-text p {
	color: var(--text-gray);
	margin-bottom: 26px;
}

/* ===================== INDUSTRIES ===================== */
#industries {
	background: #fff;
	padding: 40px 0;
}

.industries-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 14px;
}

.industry-card {
	border: 1px solid var(--border-light);
	border-radius: 4px;
	text-align: center;
	padding: 26px 10px;
	transition: all .25s ease;
}

.industry-card:hover {
	border-color: var(--gold);
	box-shadow: 0 10px 25px rgba(14, 27, 48, .08);
	transform: translateY(-4px);
}

.industry-card .ic {
	font-size: 24px;
	color: var(--gold-dark);
	margin-bottom: 14px;
	display: block;
}

.industry-card .lbl {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--text-dark);
}

/* ===================== SOLUTIONS ===================== */
#solutions {
	background: var(--bg-cream);
	padding: 40px 0;
}

.solutions-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.solution-card {
	position: relative;
	aspect-ratio: 4/3;
	border-radius: 4px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	transition: transform .3s ease;
}

.solution-card:hover {
	transform: translateY(-4px);
}

.solution-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(10, 16, 30, .28);
}

.solution-card[data-key="industrial-leasing"] {
	background-image: url('../img/Industrial\ Leasing\ 500x400\ px.jpg');
}

.solution-card[data-key="commercial-offices"] {
	background-image: url('../img/Commercial\ office\ 500x400.jpg');
}

.solution-card[data-key="retail-expansion"] {
	background-image: url('../img/Retail\ Expansion\ 500x400.jpg');
}

.solution-card[data-key="land-acquisition"] {
	background-image: url('../img/Land\ Acquisition\ 500x400.jpg');
}

.solution-card[data-key="warehouse-solutions"] {
	background-image: url('../img/Warehouse\ solution\ 500x400.jpg');
}

.solution-card[data-key="investment-advisory"] {
	background-image: url('../img/Investment\ Advisory\ 500x400.jpg');
}

.solution-card[data-key="residential"] {
	background-image: url('../img/Residence\ 500x400.jpg');
}

.solution-card[data-key="property-management"] {
	background-image: url('../img/Property\ management\ 500x400.jpg');
}

.solution-card .sc-overlay {
	position: relative;
	z-index: 1;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	background: linear-gradient(0deg, rgba(0, 0, 0, .8), transparent 100%);
}

.solution-card .sc-label {
	color: #fff;
	font-size: 14.5px;
	font-weight: 600;
}

.solution-card .sc-arrow {
	color: #fff;
	font-size: 13px;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(255, 255, 255, .5);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.solution-card:hover .sc-arrow {
	background: var(--gold);
	border-color: var(--gold);
}

/* ===================== MARKETS ===================== */
#markets {
	background: #fff;
}

.markets-row {
	display: flex;
	align-items: stretch;
}

.markets-text {
	flex: 0 0 34%;
	max-width: 34%;
	background: var(--bg-cream);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 70px 60px;
}

.markets-text p {
	color: var(--text-gray);
	margin-bottom: 30px;
}

.markets-map {
	flex: 1;
	position: relative;
	min-height: 480px;
	overflow: hidden;
}

.markets-map::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('https://picsum.photos/seed/dms-region-map/1200/900');
	background-size: cover;
	background-position: center;
	filter: grayscale(.35) contrast(1.05) brightness(1.05);
}

.markets-map::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(223, 231, 234, .5), rgba(199, 211, 216, .35));
}

.markets-map .pin {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--text-dark);
	transform: translate(-50%, -100%);
}

.markets-map .pin i {
	color: var(--gold-dark);
	font-size: 18px;
}

.markets-map .pin-line {
	position: absolute;
	width: 2px;
	background: rgba(14, 27, 48, .15);
}

/* ===================== PROCESS ===================== */
#process {
	padding: 40px 0;
	background: #fff;
}

.process-row {
	display: flex;
	justify-content: space-between;
	position: relative;
}

.process-row::before {
	content: '';
	position: absolute;
	top: 32px;
	left: 5%;
	right: 5%;
	border-top: 2px dotted var(--gold);
	z-index: 0;
}

.process-step {
	position: relative;
	z-index: 1;
	flex: 1;
	text-align: center;
	padding: 0 6px;
}

.process-step .ps-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--navy);
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin: 0 auto 16px;
}

.process-step .ps-label {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--text-dark);
}

/* ===================== CTA ===================== */
#cta {
	position: relative;
	background-image: url('../img/b4.jpg');
	background-size: cover;
	background-position: center;
	padding: 53px 0;
	color: #fff;
	overflow: hidden;
}

#cta::before {
	content: '';
	position: absolute;
	inset: 0;
	/* background: linear-gradient(120deg, rgba(14, 27, 48, .93) 55%, rgba(27, 44, 71, .8) 100%); */
}

#cta .container {
	position: relative;
	z-index: 1;
}

.cta-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}

.cta-flex h2 {
	font-size: 28px;
	font-weight: 700;
	margin: 10px 0 14px;
	max-width: 520px;
}

.cta-flex p {
	color: #b7bfcc;
	max-width: 480px;
	margin: 0;
}

.cta-buttons {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

/* ===================== FOOTER ===================== */
#site-footer {
	background: var(--navy);
	color: #b7bfcc;
	padding: 70px 0 0;
}

#site-footer h5 {
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 24px;
}

#site-footer p {
	font-size: 13.5px;
	color: #9aa3b2;
}

#site-footer ul li {
	margin-bottom: 12px;
}

#site-footer ul li a {
	color: #b7bfcc;
	font-size: 13.5px;
}

#site-footer ul li a:hover {
	color: var(--gold);
}

#site-footer ul li i {
	color: var(--gold);
	width: 18px;
}

.footer-social {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.footer-social a {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .25);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
}

.footer-social a:hover {
	background: var(--gold);
	border-color: var(--gold);
}

.footer-bottom {
	margin-top: 50px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding: 22px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 13px;
}

.footer-bottom a {
	color: #b7bfcc;
	margin-left: 20px;
}

.footer-bottom a:hover {
	color: var(--gold);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
	.industries-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.solutions-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hero-title {
		font-size: 42px;
	}
}

@media (max-width: 991px) {
	.main-nav {
		position: fixed;
		top: 0;
		right: -280px;
		width: 260px;
		height: 100vh;
		background: var(--navy-2);
		flex-direction: column;
		gap: 0;
		padding: 90px 30px;
		transition: right .3s ease;
	}

	.main-nav.open {
		right: 0;
	}

	.main-nav a {
		padding: 12px 0;
		border-bottom: 1px solid rgba(255, 255, 255, .08);
	}

	.nav-toggle {
		display: block;
	}

	.header-phone {
		display: none;
	}

	.nav-close {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 24px;
		right: 24px;
		width: 40px;
		height: 40px;
		border: 1px solid rgba(255, 255, 255, .25);
		border-radius: 50%;
		background: none;
		color: #fff;
		font-size: 18px;
	}

	.nav-close:hover {
		border-color: var(--gold);
		color: var(--gold);
	}

	.nav-phone {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		margin-top: 24px;
		color: var(--gold);
		font-size: 14px;
		font-weight: 600;
	}

	.about-row {
		flex-direction: column;
		align-items: stretch !important;
	}

	.about-row>div {
		width: 100%;
	}

	.about-text {
		padding-left: 0;
		margin-top: 40px;
	}

	.markets-row {
		flex-direction: column;
	}

	.markets-text {
		max-width: 100%;
		flex: 0 0 auto;
		padding: 50px 30px;
	}

	.process-row {
		flex-wrap: wrap;
		row-gap: 40px;
	}

	.process-row::before {
		display: none;
	}

	.process-step {
		flex: 0 0 25%;
		max-width: 25%;
	}
}

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

	.section-title {
		font-size: 26px;
	}

	.hero-title {
		font-size: 32px;
	}

	#hero {
		min-height: auto;
		padding: 140px 0 70px;
	}

	.stats-row {
		flex-wrap: wrap;
	}

	.stat-item {
		flex: 0 0 50%;
		max-width: 50%;
		border-right: 1px solid var(--border-light);
		border-bottom: 1px solid var(--border-light);
		padding: 28px 10px;
	}

	.stat-item:nth-child(2n) {
		border-right: none;
	}

	.industries-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.solutions-grid {
		grid-template-columns: 1fr;
	}

	.process-step {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.cta-flex {
		text-align: center;
		justify-content: center;
	}

	.cta-flex h2,
	.cta-flex p {
		max-width: 100%;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.footer-bottom a {
		margin: 0 10px;
	}
}