/* --- CSS SYSTEM CORE VARIABLES --- */
:root {
	--primary-blue: #2563eb;
	--primary-hover: #1d4ed8;
	--text-dark: #1f2937;
	--text-muted: #4b5563;
	--text-light: #9ca3af;
	--bg-light: #f9fafb;
	--bg-dark: #111827;
	--white: #ffffff;
	--font-main: 'Inter', sans-serif;
	--transition: all 0.3s ease;
}

/* --- BASIC RESET LAYOUT RULES --- */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-main);
	color: var(--text-dark);
	line-height: 1.6;
	background-color: var(--white);
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}

ul {
	list-style: none;
}

/* --- STICKY NAVIGATION STRUCTURAL TOKENS --- */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* STICKY TRANSITION EVENT TARGET */
header.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(8px);
}

.nav-container {
	width: 100%;
	margin: 0 auto;
	padding: 0 40px;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 0;
	flex-wrap: wrap; 
	transition: padding 0.3s ease;
}

header.scrolled .navbar {
	padding: 14px 0;
}

/* BRAND DISPLAY TOKENS */
.logo {
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--white);
	letter-spacing: 1px;
	flex-shrink: 0;
	order: 1;
	transition: var(--transition);
	display: inline-flex;
	flex-direction: column;
	line-height: 1.1;
}

header.scrolled .logo {
	color: var(--text-dark);
}

.logo span {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: 0.5px;
	margin-top: 3px;
	text-transform: none;
	transition: var(--transition);
}

header.scrolled .logo span {
	color: var(--text-muted);
}

/* LINK DIRECTORY STRUCTURAL BLOCKS */
.nav-menu {
	display: flex;
	align-items: center;
	gap: 18px;
	transition: var(--transition);
	order: 2;
}

.nav-right-block {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
	order: 3;
}

/* COMPONENT INTERACTION METRICS */
.nav-phone {
	color: var(--white);
	font-size: 0.9rem;
	font-weight: 600;
	background-color: rgba(255, 255, 255, 0.1);
	padding: 6px 14px;
	border-radius: 4px;
	white-space: nowrap;
	transition: var(--transition);
}

header.scrolled .nav-phone {
	color: var(--text-dark);
	background-color: rgba(0, 0, 0, 0.05);
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--white);
	font-size: 1.5rem;
	cursor: pointer;
	padding: 4px;
	transition: var(--transition);
}

header.scrolled .menu-toggle {
	color: var(--text-dark);
}

.nav-item {
	position: relative;
}

.nav-item a {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.85rem;
	font-weight: 500;
	padding: 8px 0;
	display: block;
	white-space: nowrap;
	transition: var(--transition);
}

header.scrolled .nav-item a {
	color: var(--text-muted);
}

.nav-item a:hover, 
.nav-item a:focus {
	color: var(--white);
	outline: none;
}

header.scrolled .nav-item a:hover,
header.scrolled .nav-item a:focus {
	color: var(--text-dark);
}

/* MINIMALIST ACTIVE LINK STATES */
.nav-item.active > a,
header.scrolled .nav-item.active > a {
	color: var(--primary-blue);
}

/* --------------------------------------------------------------------------
   MEDIA RESPONSIVE BREAKPOINTS ARCHITECTURE
   -------------------------------------------------------------------------- */

/* --- 1. Intermediate Resolution Rule --- */
@media (max-width: 1470px) and (min-width: 901px) {
	.navbar {
		padding: 16px 0;
	}

	.logo {
		order: 1;
	}

	.nav-right-block {
		order: 2;
	}

	.nav-menu {
		order: 3; 
		width: 100%;
		justify-content: center;
		gap: 16px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		padding-top: 14px;
		margin-top: 12px;
	}

	header.scrolled .nav-menu {
		border-top: 1px solid rgba(0, 0, 0, 0.05);
	}
	
	header.scrolled .navbar {
		padding: 12px 0;
	}
}

/* --- 2. Mobile Views Layout Rules --- */
@media (max-width: 900px) {
	.nav-container {
		padding: 0 24px;
	}

	.navbar {
		flex-direction: column; 
		justify-content: center;
		align-items: center;
		gap: 12px;
		padding: 16px 0;
	}

	.logo {
		width: 100%;
		align-items: center;
		text-align: center; 
	}

	.nav-right-block {
		width: 100%;
		justify-content: center; 
		gap: 20px;
	}

	.menu-toggle {
		display: block;
	}

	.nav-menu {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: rgba(17, 24, 39, 0.98);
		padding: 24px;
		gap: 12px;
		text-align: left;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		max-height: calc(100vh - 120px);
		overflow-y: auto;
		box-shadow: 0 10px 20px rgba(0,0,0,0.3);
	}

	header.scrolled .nav-menu {
		background-color: rgba(255, 255, 255, 0.98);
		border-top: 1px solid rgba(0, 0, 0, 0.05);
		box-shadow: 0 10px 20px rgba(0,0,0,0.05);
	}

	.nav-menu.active {
		display: flex;
	}

	.nav-item {
		width: 100%;
	}

	.nav-item a {
		font-size: 1rem;
		padding: 10px 12px;
		width: 100%;
		border-radius: 4px;
	}

	header.scrolled .nav-item a {
		color: var(--text-dark);
	}

	.nav-item a:hover,
	.nav-item a:focus {
		background-color: rgba(255, 255, 255, 0.05);
	}

	header.scrolled .nav-item a:hover,
	header.scrolled .nav-item a:focus {
		background-color: rgba(0, 0, 0, 0.03);
	}

	/* Distinct Mobile Drawer Active Link State Highlighting Rules */
	.nav-item.active > a {
		background-color: rgba(37, 99, 235, 0.15);
		color: var(--white);
		border-left: 4px solid var(--primary-blue);
		border-radius: 0 4px 4px 0;
	}

	header.scrolled .nav-item.active > a {
		color: var(--primary-blue);
		background-color: rgba(37, 99, 235, 0.08);
		border-left: 4px solid var(--primary-blue);
		border-radius: 0 4px 4px 0;
	}
}

/* --- 3. Extra Narrow Device Strategy --- */
@media (max-width: 600px) {
	.nav-phone {
		display: none !important;
	}
}

/* ==========================================================================
   COMPARTMENTALIZED FOOTER CSS
   ========================================================================== */

.site-footer {
	background-color: var(--bg-dark);
	color: var(--white);
	padding: 60px 0 25px 0;
	font-size: 0.85rem;
	width: 100%;
}

.site-footer .footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 50px;
	border-bottom: 1px solid #1f2937;
	padding-bottom: 40px;
	margin-bottom: 25px;
}

/* Brand Column */
.site-footer .footer-brand h3 {
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
	color: var(--white);
}

.site-footer .footer-brand address {
	font-style: normal;
	color: var(--text-light);
	line-height: 1.6;
}

.site-footer .footer-brand p {
	color: var(--text-light);
	margin-bottom: 12px;
	line-height: 1.6;
	max-width: 320px;
}

.site-footer .footer-brand .license {
	font-size: 0.75rem;
	color: #6b7280;
	margin-top: 8px;
	display: block;
}

/* Navigation Links & Contact Columns */
.site-footer .footer-links h4, 
.site-footer .footer-contact h4 {
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 18px;
	color: var(--white);
}

.site-footer .footer-links ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.site-footer .footer-links a {
	color: var(--text-light);
	display: inline-block;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus {
	color: var(--white);
	outline: 2px dashed var(--primary-blue);
	outline-offset: 4px;
}

.site-footer .footer-contact p {
	color: var(--text-light);
	margin-bottom: 10px;
}

.site-footer .footer-contact p i {
	margin-right: 8px;
	color: var(--text-light);
	width: 14px;
}

/* Footer Interactive Button */
.site-footer .btn-footer {
	background-color: var(--primary-blue);
	color: var(--white);
	padding: 10px 20px;
	font-size: 0.8rem;
	font-weight: 600;
	border-radius: 4px;
	display: inline-block;
	margin-top: 10px;
	border: none;
	cursor: pointer;
	transition: var(--transition);
}

.site-footer .btn-footer:hover,
.site-footer .btn-footer:focus {
	background-color: var(--primary-hover);
	outline: 2px solid var(--white);
	outline-offset: 2px;
}

/* Bottom Copyright Area */
.site-footer .footer-bottom {
	text-align: center;
	color: #6b7280;
	font-size: 0.75rem;
}

/* --- FOOTER RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
	.site-footer .footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
	.site-footer .footer-brand {
		grid-column: span 2;
	}
}

@media (max-width: 580px) {
	.site-footer .footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.site-footer .footer-brand {
		grid-column: span 1;
	}
}

/* --- CONFIGURATION & ARCHITECTURAL TOKENS --- */

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.section-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 25px;
}

/* Accessibility Screen Reader Utility */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Button Design Elements */
.btn {
	display: inline-block;
	padding: 12px 28px;
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: 4px;
	cursor: pointer;
	transition: var(--transition);
	border: none;
	text-align: center;
}

.btn-primary {
	background-color: var(--primary-blue);
	color: var(--white);
}

.btn-primary:hover, .btn-primary:focus {
	background-color: var(--primary-hover);
	outline: 2px solid var(--primary-blue);
	outline-offset: 2px;
}

.btn-secondary {
	background-color: var(--white);
	color: var(--text-dark);
}

.btn-secondary:hover, .btn-secondary:focus {
	background-color: #f3f4f6;
	outline: 2px solid var(--white);
	outline-offset: 2px;
}

/* --- HERO SECTION --- */
.hero {
	position: relative;
	height: 100vh;
	min-height: 600px;
	background: #000;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--white);
}

.hero-content {
	max-width: 850px;
	padding: 0 20px;
}

.hero-title {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}

.hero-subtitle {
	font-size: 1.15rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 35px;
	max-width: 655px;
	margin-left: auto;
	margin-right: auto;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
}

/* --- MISSION SECTION --- */
.mission {
	padding: 90px 0;
	text-align: center;
	background-color: var(--white);
}

.mission-intro {
	max-width: 750px;
	margin: 0 auto 60px auto;
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.7;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.feature-item {
	text-align: center;
}

.feature-item h3 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--text-dark);
}

.feature-item p {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* --- SERVICES SECTION --- */
.services {
	padding: 90px 0;
	background-color: var(--bg-light);
	text-align: center;
}

.services-intro {
	color: var(--text-muted);
	margin-bottom: 50px;
	font-size: 1rem;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.quick-access {
	grid-template-columns: repeat(3, 1fr);
}

.real-estate-services {
    grid-template-columns: repeat(2, 1fr);
}

.capsule-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.service-card {
	background-color: var(--white);
	padding: 35px 24px;
	border-radius: 4px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	text-align: left;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.service-icon {
	font-size: 2rem;
	margin-bottom: 20px;
}

.icon-blue { color: #3b82f6; }
.icon-cyan { color: #06b6d4; }
.icon-amber { color: #f59e0b; }
.icon-gold { color: #eab308; }

.service-card h3 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--text-dark);
}

.service-card p {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 20px;
	flex-grow: 1;
}

.service-link {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--primary-blue);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.service-link:hover, .service-link:focus {
	color: var(--primary-hover);
	outline: none;
	text-decoration: underline;
}

/* --- FULL SERVICE SECTION --- */
.services-intro-section {
	padding: 90px 0;
	text-align: center;
	background-color: var(--white);
}

.intro-body {
	max-width: 800px;
	margin: 0 auto 50px auto;
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.7;
}

.intro-body p {
	margin-bottom: 20px;
}

/* --- GRID CAPSULES --- */
.capsule-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 50px;
}

.capsule-card {
	background-color: var(--bg-light);
	padding: 30px 24px;
	border-radius: 4px;
	text-align: left;
	border-left: 3px solid transparent;
	transition: var(--transition);
}

.capsule-card:hover {
	border-left-color: var(--primary-blue);
	background-color: #f3f4f6;
}

.capsule-card h3 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--text-dark);
}

.capsule-card p {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* --- WHY CHOOSE US SECTION --- */
.why-choose-services {
	padding: 90px 0;
	background-color: var(--bg-light);
}

.why-choose {
	padding: 90px 0;
	background-color: var(--white);
}

.why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.why-image img {
	border-radius: 4px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.why-content h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 25px;
	text-align: left;
}

.why-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.why-list-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.95rem;
	color: var(--text-muted);
}

.why-list-item i {
	color: var(--primary-blue);
	margin-top: 4px;
	font-size: 0.9rem;
}

.sub-feature {
	margin-bottom: 20px;
}

.sub-feature:last-child {
	margin-bottom: 0;
}

.sub-feature h4 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 4px;
}

.sub-feature p {
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.5;
}

/* --- CTA SECTION --- */
.cta {
	background-color: var(--primary-blue);
	color: var(--white);
	padding: 70px 0;
	text-align: center;
}

.cta h2 {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.cta p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 30px;
}

.cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	align-items: center;
}

.btn-cta-phone {
	background-color: var(--white);
	color: var(--primary-blue);
}
.btn-cta-phone:hover, .btn-cta-phone:focus {
	background-color: #f3f4f6;
	outline: 2px solid var(--white);
	outline-offset: 2px;
}

.btn-cta-outline {
	background-color: transparent;
	color: var(--white);
	border: 1.5px solid var(--white);
}
.btn-cta-outline:hover, .btn-cta-outline:focus {
	background-color: rgba(255, 255, 255, 0.1);
	outline: 2px solid var(--white);
	outline-offset: 2px;
}

/* --- BREAKPOINT MEDIA QUERIES --- */
@media (max-width: 1024px) {
	.features-grid, .services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.2rem;
	}
	.why-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.why-image img {
		height: 300px;
	}
}

@media (max-width: 480px) {
	.features-grid, .services-grid {
		grid-template-columns: 1fr;
	}
	.hero-buttons, .cta-buttons {
		flex-direction: column;
		width: 100%;
		max-width: 280px;
		margin: 0 auto;
	}
	.hero-buttons .btn, .cta-buttons .btn {
		width: 100%;
	}
}

/* --- OUR MISSION CONTENT LAYOUT --- */
.listings-section {
	padding: 90px 0;
	background-color: var(--bg-light);
	text-align: center;
}

.listings-stack {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.listings-card {
	background-color: var(--white);
	padding: 35px 40px;
	border-radius: 4px;
	text-align: center;
	box-shadow: 0 1px 3px rgba(0,0,0,0.02);
	border-top: 3px solid transparent;
	transition: var(--transition);
}

.listings-card:hover {
	border-top-color: var(--primary-blue);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.listings-card h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 12px;
}

.listings-card p {
	font-size: 0.92rem;
	color: var(--text-muted);
	line-height: 1.6;
	max-width: 650px;
	margin: 0 auto;
}

/* FAQ SECTION */
.faq-section {
	padding: 90px 0;
	background-color: var(--white);
	text-align: center;
}

.faq-stack {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq-card {
	background-color: var(--bg-light);
	padding: 35px 40px;
	border-radius: 4px;
	text-align: center;
	box-shadow: 0 1px 3px rgba(0,0,0,0.02);
	border-top: 3px solid transparent;
	transition: var(--transition);
}

.faq-card:hover {
	border-top-color: var(--primary-blue);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-card h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 12px;
}

.faq-card p {
	font-size: 0.92rem;
	color: var(--text-muted);
	line-height: 1.6;
	max-width: 650px;
	margin: 0 auto;
}

/* --- OUR STORY CONTENT LAYOUT --- */
.story-section {
	padding: 90px 0;
	background-color: var(--white);
	text-align: center;
}

.story-body {
	max-width: 800px;
	margin: 0 auto;
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.75;
}

.story-body p {
	margin-bottom: 24px;
}

.story-body p:last-child {
	margin-bottom: 0;
}

/* --- OUR MISSION CONTENT LAYOUT --- */
.mission-section {
	padding: 90px 0;
	background-color: var(--bg-light);
	text-align: center;
}

.mission-stack {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.mission-card {
	background-color: var(--white);
	padding: 35px 40px;
	border-radius: 4px;
	text-align: center;
	box-shadow: 0 1px 3px rgba(0,0,0,0.02);
	border-top: 3px solid transparent;
	transition: var(--transition);
}

.mission-card:hover {
	border-top-color: var(--primary-blue);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.mission-card h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 12px;
}

.mission-card p {
	font-size: 0.92rem;
	color: var(--text-muted);
	line-height: 1.6;
	max-width: 650px;
	margin: 0 auto;
}

/* --- OUR JOURNEY TIMELINE LAYOUT --- */
.journey-section {
	padding: 90px 0;
	background-color: var(--white);
}

.journey-section h2 {
	text-align: center;
}

.timeline-container {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.timeline-row {
	display: grid;
	grid-template-columns: 120px 1fr;
	align-items: center;
	gap: 24px;
}

.timeline-year {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--primary-blue);
}

.timeline-card {
	background-color: var(--bg-light);
	padding: 24px 30px;
	border-radius: 4px;
	border-left: 3px solid transparent;
	transition: var(--transition);
}

.timeline-card:hover {
	border-left-color: var(--primary-blue);
	background-color: #f3f4f6;
}

.timeline-card h3 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 6px;
}

.timeline-card p {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* --- OUR VALUES CAPSULE LAYOUT (2X2 GRID) --- */
.values-section {
	padding: 90px 0;
	background-color: var(--bg-light);
	text-align: center;
}

/*.values-section .capsule-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
}*/

.values-section .capsule-card {
	background-color: var(--white);
	padding: 30px 24px;
	border-radius: 4px;
	text-align: left;
	border-left: 3px solid transparent;
	transition: var(--transition);
	box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.values-section .capsule-card:hover {
	border-left-color: var(--primary-blue);
	background-color: #fcfdfe;
	box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.values-section .capsule-card h3 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--text-dark);
}

.values-section .capsule-card p {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* --- VISIT OUR OFFICE TWO-COLUMN LAYOUT --- */
.office-section {
	padding: 90px 0;
	background-color: var(--white);
}

.office-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 1000px;
	margin: 0 auto;
}

.office-image img {
	border-radius: 4px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	width: 100%;
	height: 425px;
	object-fit: cover;
}

.office-content h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 30px;
	text-align: left;
	line-height: 1.3;
}

.office-content h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 15px;
}

.office-details {
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.7;
}

.office-details p {
	margin-bottom: 16px;
}

.office-details strong {
	color: var(--text-dark);
}

.office-details a {
	color: var(--primary-blue);
	font-weight: 500;
}

.office-details a:hover {
	color: var(--primary-hover);
	text-decoration: underline;
}

/* --- RESPONSIVE DESIGN (MEDIA QUERIES) --- */
@media (max-width: 1024px) {
	.hero-title {
		font-size: 3rem;
	}
	.capsule-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	.office-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.office-image img {
		height: 300px;
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.2rem;
	}
	.why-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.why-image img {
		height: 300px;
	}
	.timeline-row {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	.timeline-year {
		padding-top: 0;
		font-size: 1.25rem;
	}
}

@media (max-width: 580px) {
	.capsule-grid {
		grid-template-columns: 1fr;
	}
	.mission-card {
		padding: 24px;
	}
}

/* ==========================================================================
   TEAM PAGE STYLES - COMPARTMENTALIZED FOR STYLESHEET
   ========================================================================== */

.team-page-body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #1f2937;
	background-color: #ffffff;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.team-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* --- HERO BANNER --- */
.team-hero-section {
	background-color: #f9fafb;
	padding: 80px 0 60px 0;
	text-align: center;
}

.team-hero-section h1 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 16px;
	letter-spacing: -0.02em;
}

.team-hero-section p {
	font-size: 0.95rem;
	color: #4b5563;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* --- TEAM GRID ARCHITECTURE --- */
.team-grid-section {
	background-color: #ffffff;
	padding: 60px 0 80px 0;
}

.team-members-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.team-member-card {
	background-color: #ffffff;
	border: 1px solid #f3f4f6;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
	transition: all 0.25s ease-in-out;
}

.team-member-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 20px -3px rgba(0, 0, 0, 0.04);
	border-color: #e5e7eb;
}

/* Photo block */
.team-card-image {
	width: 100%;
	height: 400px;
	overflow: hidden;
	background-color: #f3f4f6;
}

.team-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Placeholder block for members missing photos */
.team-card-initials {
	width: 100%;
	height: 160px;
	background-color: #eff6ff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.25rem;
	font-weight: 600;
	color: #2563eb;
	letter-spacing: 0.05em;
}

.team-card-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.team-card-content h2 {
	font-size: 1.15rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 4px;
}

.team-card-role {
	font-size: 0.82rem;
	font-weight: 600;
	color: #2563eb;
	margin-bottom: 14px;
}

.team-card-bio {
	font-size: 0.85rem;
	color: #4b5563;
	line-height: 1.6;
	margin-bottom: auto; 
	padding-bottom: 24px;
}

.team-card-contact {
	border-top: 1px solid #f3f4f6;
	padding-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 0.82rem;
}

.team-card-contact a {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #4b5563;
	text-decoration: none;
	width: fit-content;
	transition: color 0.2s ease;
}

.team-card-contact a:hover {
	color: #2563eb;
}

.team-card-contact i {
	color: #9ca3af;
	font-size: 0.85rem;
	width: 14px;
	text-align: center;
}

/* --- TRUST / METRICS SECTION --- */
.team-metrics-section {
	background-color: #f9fafb;
	padding: 80px 0;
	text-align: center;
}

.team-metrics-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 40px;
}

.team-metrics-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 950px;
	margin: 0 auto;
}

.metric-block {
	background-color: #ffffff;
	padding: 30px 20px;
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.01);
	border: 1px solid #f3f4f6;
}

.metric-value {
	font-size: 2.25rem;
	font-weight: 700;
	color: #2563eb;
	line-height: 1;
	margin-bottom: 10px;
}

.metric-label {
	font-size: 0.85rem;
	color: #4b5563;
	line-height: 1.4;
	font-weight: 500;
}

/* --- RESPONSIVE ADAPTATIONS --- */
@media (max-width: 992px) {
	.team-members-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

@media (max-width: 768px) {
	.team-metrics-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.team-hero-section h1 {
		font-size: 2rem;
	}
}

@media (max-width: 600px) {
	.team-members-grid {
		grid-template-columns: 1fr;
	}
}