/* PAGE BANNER */
.page-banner {
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	background:
		linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .75)),
		url("../assets/about.jpg") center/cover no-repeat;
}

.page-banner::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.banner-content {
	position: relative;
	z-index: 2;
}

.banner-content span {
	color: var(--gold-light);
	font-family: Georgia, serif;
	font-style: italic;
	font-size: 22px;
}

.banner-content h1 {
	font-family: Georgia, serif;
	font-size: 48px;
	text-transform: uppercase;
	margin: 5px 0;
}

.breadcrumb {
	font-size: 14px;
	color: #ddd;
}

.breadcrumb b {
	color: var(--gold-light);
}


/* INTRO */
.about-section {
	padding: 75px 0;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 55px;
	align-items: center;
}

.about-image {
	position: relative;
}

.about-image img {
	width: 100%;
	border-radius: 14px;
	border: 1px solid rgba(215, 155, 53, .5);
}

.about-image::before {
	content: "";
	position: absolute;
	width: 85%;
	height: 85%;
	left: -18px;
	bottom: -18px;
	border: 1px solid var(--gold);
	border-radius: 14px;
	z-index: -1;
}

.section-label {
	color: var(--gold-light);
	font-family: Georgia, serif;
	font-style: italic;
	font-size: 21px;
}

.section-heading {
	font-family: Georgia, serif;
	font-size: 38px;
	line-height: 1.2;
	margin: 8px 0 20px;
}

.section-heading span {
	color: var(--gold-light);
}

.about-content p {
	color: #cfcac0;
	margin-bottom: 17px;
}

.signature {
	font-family: Georgia, serif;
	font-style: italic;
	color: var(--gold-light);
	font-size: 21px;
	margin-top: 25px;
}


/* MISSION VISION */
.mission-section {
	padding: 70px 0;
	background: #10100d;
	border-top: 1px solid rgba(215, 155, 53, .2);
	border-bottom: 1px solid rgba(215, 155, 53, .2);
}

.mission-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.mission-card {
	background: linear-gradient(180deg, #17150f, #0d0e0c);
	border: 1px solid rgba(215, 155, 53, .4);
	border-radius: 12px;
	padding: 35px 27px;
	text-align: center;
	transition: .3s;
}

.mission-card:hover {
	transform: translateY(-7px);
	border-color: var(--gold);
}

.card-icon {
	width: 68px;
	height: 68px;
	margin: 0 auto 18px;
	border: 1px solid var(--gold);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--gold-light);
	font-size: 30px;
}

.mission-card h3 {
	font-family: Georgia, serif;
	color: var(--gold-light);
	font-size: 23px;
	margin-bottom: 12px;
}

.mission-card p {
	color: #cfcac0;
	font-size: 14px;
}


/* TRUST SECTION */
.trust-section {
	padding: 75px 0;
}

.center-title {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 45px;
}

.center-title h2 {
	font-family: Georgia, serif;
	font-size: 38px;
	margin-bottom: 10px;
}

.center-title p {
	color: #bdb7ac;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.value-item {
	text-align: center;
	padding: 25px 15px;
}

.value-icon {
	width: 65px;
	height: 65px;
	margin: auto;
	border: 1px solid var(--gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-light);
	font-size: 27px;
}

.value-item h4 {
	color: var(--gold-light);
	margin: 13px 0 5px;
}

.value-item p {
	color: #c5c0b8;
	font-size: 13px;
}


/* MESSAGE */
.message-section {
	padding: 70px 0;
	background: var(--cream);
	color: #2a2118;
}

.message-wrap {
	display: grid;
	grid-template-columns: 330px 1fr;
	gap: 50px;
	align-items: center;
}

.message-img img {
	border-radius: 15px;
	border: 3px solid #d4a14b;
}

.message-content h2 {
	font-family: Georgia, serif;
	font-size: 36px;
	margin-bottom: 15px;
}

.quote {
	font-family: Georgia, serif;
	font-style: italic;
	font-size: 21px;
	color: #704b1a;
	padding-left: 20px;
	border-left: 3px solid var(--gold);
	margin: 20px 0;
}


/* CTA */
.cta {
	padding: 55px 0;
	background:
		linear-gradient(90deg, #25170b, #100d08);
	border-top: 1px solid var(--gold);
	border-bottom: 1px solid var(--gold);
}

.cta-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 25px;
}

.cta h2 {
	font-family: Georgia, serif;
	color: #f7e5c0;
	font-size: 30px;
}

.cta p {
	color: #cfc8bd;
}

.cta-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.btn {
	display: inline-block;
	padding: 13px 22px;
	border-radius: 5px;
	border: 1px solid var(--gold);
	font-weight: bold;
}

.btn-gold {
	background: linear-gradient(135deg, #e8ae45, #a76b0e);
}

.btn-dark {
	background: #111;
}


/* RESPONSIVE */
@media(max-width:900px) {


	.about-grid,
	.message-wrap {
		grid-template-columns: 1fr;
	}

	.mission-grid {
		grid-template-columns: 1fr;
	}

	.values-grid {
		grid-template-columns: repeat(2, 1fr);
	}


	.cta-inner {
		flex-direction: column;
		text-align: center;
	}
}

@media(max-width:550px) {

	.contact-info span:not(:first-child) {
		display: none;
	}

	.logo-text strong {
		font-size: 14px;
	}

	.banner-content h1 {
		font-size: 36px;
	}

	.section-heading,
	.center-title h2 {
		font-size: 30px;
	}

	.values-grid,


	.about-section,
	.mission-section,
	.trust-section,
	.message-section {
		padding: 50px 0;
	}
}