:root {
	--ol-primary: #239322;
	--ol-secondary: #18273A;
	--ol-bg: #FFFFFF;
}

.ol-wrapper-fb00e6c4 {
	position: relative;
	width: 100%;
	padding: 100px 20px;
	overflow: hidden;
	background: var(--ol-bg);
	font-family: system-ui, -apple-system, sans-serif;
}

/* Background Elements */
.ol-bg-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

.ol-shape-1 {
	position: absolute;
	top: -10%;
	right: -5%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(35, 147, 34, 0.05) 0%, rgba(255,255,255,0) 70%);
	border-radius: 50%;
	animation: float1 15s infinite ease-in-out alternate;
}

.ol-shape-2 {
	position: absolute;
	bottom: -10%;
	left: -5%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(24, 39, 58, 0.03) 0%, rgba(255,255,255,0) 70%);
	border-radius: 50%;
	animation: float2 12s infinite ease-in-out alternate;
}

.ol-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(rgba(35, 147, 34, 0.1) 1px, transparent 1px);
	background-size: 30px 30px;
	opacity: 0.5;
}

@keyframes float1 {
	0% { transform: translate(0, 0); }
	100% { transform: translate(-30px, 30px); }
}

@keyframes float2 {
	0% { transform: translate(0, 0); }
	100% { transform: translate(30px, -30px); }
}

/* Header */
.ol-header {
	position: relative;
	z-index: 1;
	text-align: center;
	margin-bottom: 60px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.ol-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	color: var(--ol-primary);
	letter-spacing: 2px;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.ol-heading {
	font-size: clamp(32px, 4vw, 48px);
	color: var(--ol-secondary);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}

.ol-highlight {
	color: var(--ol-primary);
}

.ol-subtitle {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
}

/* Container & Layout */
.ol-container {
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	gap: 40px;
	align-items: stretch;
}

.ol-left-panel {
	flex: 0 0 40%;
}

.ol-right-panel {
	flex: 0 0 calc(60% - 40px);
}

/* Info Card */
.ol-info-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 28px;
	padding: 40px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.5);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.ol-info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
}

.ol-icon {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(35, 147, 34, 0.1);
	color: var(--ol-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.ol-icon svg {
	width: 24px;
	height: 24px;
}

.ol-details h4 {
	font-size: 18px;
	color: var(--ol-secondary);
	font-weight: 600;
	margin: 0 0 8px 0;
}

.ol-details p {
	font-size: 15px;
	color: #555;
	line-height: 1.5;
	margin: 0;
}

/* Buttons */
.ol-buttons {
	display: flex;
	gap: 16px;
	margin-top: 10px;
	margin-bottom: 30px;
}

.ol-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	flex: 1;
}

.ol-btn svg {
	width: 18px;
	height: 18px;
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.ol-btn:hover {
	transform: translateY(-4px);
}

.ol-btn:hover svg {
	transform: translateX(4px);
}

.ol-btn-primary {
	background: var(--ol-primary);
	color: #FFF;
	box-shadow: 0 10px 20px rgba(35, 147, 34, 0.2);
}

.ol-btn-primary:hover {
	background: #1d7b1d;
	box-shadow: 0 15px 25px rgba(35, 147, 34, 0.3);
}

.ol-btn-outline {
	background: transparent;
	color: var(--ol-secondary);
	border: 1px solid var(--ol-secondary);
}

.ol-btn-outline:hover {
	background: var(--ol-secondary);
	color: #FFF;
	box-shadow: 0 10px 20px rgba(24, 39, 58, 0.15);
}

/* Help Box */
.ol-help-box {
	margin-top: auto;
	background: #F8F9FA;
	padding: 20px;
	border-radius: 16px;
	border-left: 4px solid var(--ol-primary);
}

.ol-help-box strong {
	display: block;
	color: var(--ol-secondary);
	margin-bottom: 4px;
	font-size: 15px;
}

.ol-help-box p {
	color: #666;
	font-size: 14px;
	margin: 0;
	line-height: 1.4;
}

/* Map Wrapper */
.ol-map-wrapper {
	width: 100%;
	height: 600px;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
	background: #EAEAEA; /* Fallback loading color */
	position: relative;
	transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
	.ol-observe-fb00e6c4 .ol-anim-up {
		opacity: 0;
		transform: translateY(30px);
		transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	}

	.ol-observe-fb00e6c4 .ol-slide-left {
		opacity: 0;
		transform: translateX(-40px);
		transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
	}

	.ol-observe-fb00e6c4 .ol-slide-right {
		opacity: 0;
		transform: translateX(40px) scale(0.98);
		transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
	}

	.ol-observe-fb00e6c4 .ol-stagger {
		opacity: 0;
		transform: translateY(20px);
		transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
	}

	.ol-observe-fb00e6c4.ol-visible .ol-anim-up,
	.ol-observe-fb00e6c4.ol-visible .ol-slide-left,
	.ol-observe-fb00e6c4.ol-visible .ol-slide-right {
		opacity: 1;
		transform: translate(0) scale(1);
	}

	/* Staggered delays inside card */
	.ol-observe-fb00e6c4.ol-visible .ol-stagger:nth-child(1) { transition-delay: 0.12s; }
	.ol-observe-fb00e6c4.ol-visible .ol-stagger:nth-child(2) { transition-delay: 0.24s; }
	.ol-observe-fb00e6c4.ol-visible .ol-stagger:nth-child(3) { transition-delay: 0.36s; }
	.ol-observe-fb00e6c4.ol-visible .ol-stagger:nth-child(4) { transition-delay: 0.48s; }
	.ol-observe-fb00e6c4.ol-visible .ol-stagger:nth-child(5) { transition-delay: 0.60s; }
	.ol-observe-fb00e6c4.ol-visible .ol-stagger:nth-child(6) { transition-delay: 0.72s; }

	.ol-observe-fb00e6c4.ol-visible .ol-stagger {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 1024px) {
	.ol-container {
		flex-direction: column;
	}
	.ol-left-panel, .ol-right-panel {
		flex: 1 1 100%;
		width: 100%;
	}
	.ol-map-wrapper {
		height: 450px;
	}
}

@media (max-width: 768px) {
	.ol-wrapper-fb00e6c4 {
		padding: 60px 16px;
	}
	.ol-info-card {
		padding: 30px 20px;
	}
	.ol-buttons {
		flex-direction: column;
	}
	.ol-btn {
		width: 100%;
	}
	.ol-map-wrapper {
		height: 400px;
	}
}
