/* Page Hero */
.page-hero {
	padding: 200px 0 100px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	text-align: center;
}
.page-hero .hero-title {
	color: #fff;
	font-size: 48px;
	font-family: "Playfair Display", serif;
	margin-bottom: 20px;
}
.page-hero .hero-subtitle {
	color: #fff;
	font-size: 18px;
	font-weight: 300;
	max-width: 600px;
	margin: 0 auto;
}

/* Section Badge */
.section-badge {
	display: inline-block;
	background: rgba(47, 37, 186, 0.1);
	color: #2F25BA;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 8px 16px;
	border-radius: 20px;
	margin-bottom: 15px;
}

/* Section Title */
.section-title {
	font-size: 36px;
	font-family: "Playfair Display", serif;
	color: #000;
	margin-bottom: 30px;
}

/* Brand Card */
.brand-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	padding: 20px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.brand-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.brand-card img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* Value Item */
.value-item {
	margin-bottom: 30px;
}
.value-item .value-number {
	font-family: "Playfair Display", serif;
	font-size: 24px;
	font-style: italic;
	color: #BE8C35;
	margin-bottom: 8px;
}
.value-item .value-title {
	font-size: 18px;
	font-weight: 600;
	color: #000;
	margin-bottom: 10px;
}
.value-item .value-desc {
	font-size: 14px;
	font-weight: 300;
	color: #666;
	line-height: 1.6;
}

/* CTA Section */
.cta-section {
	padding: 100px 0;
	text-align: center;
	background: #fff;
}
.cta-section .cta-title {
	font-size: 36px;
	font-family: "Playfair Display", serif;
	color: #000;
	margin-bottom: 20px;
}
.cta-section .cta-text {
	font-size: 16px;
	font-weight: 300;
	color: #666;
	max-width: 700px;
	margin: 0 auto 30px;
	line-height: 1.6;
}
.cta-section .btn-cta {
	display: inline-block;
	padding: 15px 40px;
	background: #BE8C35;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	border-radius: 35px;
	border: 1px solid #BE8C35;
	transition: all 0.3s ease;
}
.cta-section .btn-cta:hover {
	background: #fff;
	color: #BE8C35;
}

/* Ecosystem Section */
.ecosystem-section {
	padding: 80px 0;
	background-color: #fafafa;
	background-image: url('../images/world-map.png');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 50%;
}
.ecosystem-section .brands-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	max-width: 400px;
}
.ecosystem-section .ecosystem-content {
	padding-left: 40px;
}
.ecosystem-section .ecosystem-content p {
	font-size: 16px;
	line-height: 1.7;
	color: #333;
	margin-bottom: 20px;
}
.ecosystem-section .ecosystem-content ul {
	padding-left: 20px;
	margin-bottom: 20px;
}
.ecosystem-section .ecosystem-content ul li {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
}
.ecosystem-section .ecosystem-content ul li strong {
	font-weight: 600;
}

/* Values Section */
.values-section {
	padding: 80px 0;
	background: #F5F7FB;
}
.values-section .values-image {
	border-radius: 12px;
	overflow: hidden;
}
.values-section .values-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.values-section .values-content {
	padding-left: 40px;
}
.values-section .values-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

/* Contact Page */
.contact-page {
	display: flex;
	min-height: 100vh;
}
.contact-left {
	width: 35%;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: flex-start;
	padding: 40px;
}
.contact-left .contact-logo {
	max-width: 180px;
}
.contact-right {
	width: 65%;
	padding: 120px 60px 60px;
	display: flex;
	gap: 50px;
}
.contact-info {
	flex: 1;
}
.contact-info .contact-title {
	font-size: 32px;
	font-family: "Playfair Display", serif;
	color: #000;
	margin-bottom: 15px;
}
.contact-info .contact-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 30px;
}
.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 20px;
}
.contact-info-item .icon {
	width: 30px;
	height: 30px;
	flex-shrink: 0;
	background: rgba(47, 37, 186, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact-info-item .icon img {
	width: 18px;
	height: 18px;
}
.contact-info-item .label {
	font-size: 12px;
	color: #999;
	margin-bottom: 2px;
}
.contact-info-item .value {
	font-size: 14px;
	color: #BE8C35;
	font-weight: 500;
}
.contact-info-item .value.dark {
	color: #000;
}

/* Contact Form */
.contact-form {
	flex: 1;
}
.form-group {
	margin-bottom: 20px;
}
.form-group label {
	display: block;
	font-size: 14px;
	color: #333;
	margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px 0;
	border: none;
	border-bottom: 1px solid #ddd;
	font-size: 14px;
	font-family: "Inter", serif;
	outline: none;
	transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
	border-color: #BE8C35;
}
.form-group textarea {
	resize: vertical;
	min-height: 80px;
}
.form-checkboxes {
	margin-bottom: 20px;
}
.form-checkboxes label.group-label {
	display: block;
	font-size: 14px;
	color: #333;
	margin-bottom: 12px;
}
.checkbox-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}
.checkbox-item {
	display: flex;
	align-items: center;
	gap: 8px;
}
.checkbox-item input[type="checkbox"] {
	width: 16px;
	height: 16px;
	accent-color: #BE8C35;
}
.checkbox-item label {
	font-size: 13px;
	color: #666;
	cursor: pointer;
}
.btn-submit {
	display: inline-block;
	padding: 14px 35px;
	background: #BE8C35;
	color: #fff;
	font-size: 14px;
	font-family: "Inter", serif;
	text-decoration: none;
	border: 1px solid #BE8C35;
	border-radius: 35px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.btn-submit:hover {
	background: #fff;
	color: #BE8C35;
}

/* Responsive */
@media (max-width: 991px) {
	.page-hero {
		padding: 180px 0 80px;
	}
	.page-hero .hero-title {
		font-size: 36px;
	}
	.ecosystem-section {
		background-size: 100%;
		background-position: top center;
	}
	.ecosystem-section .ecosystem-content {
		padding-left: 0;
		margin-top: 40px;
	}
	.values-section .values-content {
		padding-left: 0;
		margin-top: 40px;
	}
	.contact-page {
		flex-direction: column;
	}
	.contact-left {
		width: 100%;
		min-height: 300px;
	}
	.contact-right {
		width: 100%;
		padding: 40px 20px;
		flex-direction: column;
		gap: 30px;
	}
}

@media (max-width: 767px) {
	.page-hero {
		padding: 150px 0 60px;
	}
	.page-hero .hero-title {
		font-size: 28px;
	}
	.page-hero .hero-subtitle {
		font-size: 16px;
	}
	.section-title {
		font-size: 28px;
	}
	.ecosystem-section .brands-grid {
		max-width: 100%;
	}
	.values-section .values-grid {
		grid-template-columns: 1fr;
	}
	.cta-section {
		padding: 60px 0;
	}
	.cta-section .cta-title {
		font-size: 28px;
	}
	.contact-left {
		min-height: 250px;
		padding: 20px;
	}
	.contact-left .contact-logo {
		max-width: 120px;
	}
	.contact-info .contact-title {
		font-size: 26px;
	}
	.checkbox-grid {
		grid-template-columns: 1fr;
	}
}
