/* Experience Nosy Komba - 1f86af3c */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Dancing+Script:wght@400;500;600&family=Inter:wght@300;400;500;600&display=swap');

/* Section */
.enk-1f86af3c-section {
	background-color: #FAF8F3;
	padding: 80px 40px;
	box-sizing: border-box;
	width: 100%;
}

.enk-1f86af3c-inner {
	max-width: 1400px;
	margin: 0 auto;
}

/* Header */
.enk-1f86af3c-header {
	text-align: center;
	margin-bottom: 10px;
}

.enk-1f86af3c-heading {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 60px;
	font-weight: 400;
	color: #143C46;
	margin: 0 0 20px 0;
	line-height: 1.15;
	letter-spacing: -0.01em;
}

/* Divider */
.enk-1f86af3c-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-bottom: 16px;
}

.enk-1f86af3c-divider-line {
	display: block;
	width: 50px;
	height: 1.5px;
	background-color: #C9A15D;
	border-radius: 1px;
}

.enk-1f86af3c-divider-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #C9A15D;
	font-size: 20px;
	line-height: 1;
}

.enk-1f86af3c-divider-icon svg {
	width: 20px;
	height: 20px;
	fill: #C9A15D;
}

/* Subtitle */
.enk-1f86af3c-subtitle {
	font-family: 'Dancing Script', cursive;
	font-size: 26px;
	font-weight: 400;
	color: #7FCFE8;
	margin: 0 0 50px 0;
	line-height: 1.4;
}

/* Grid */
.enk-1f86af3c-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

/* Card */
.enk-1f86af3c-card {
	position: relative;
	border-radius: 24px;
	border: 1px solid #E8DCC6;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 6px 30px rgba(20, 60, 70, 0.08);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.enk-1f86af3c-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 48px -4px rgba(20, 60, 70, 0.14);
}

/* Card Image */
.enk-1f86af3c-card-image-wrap {
	width: 100%;
	height: 260px;
	overflow: hidden;
	border-radius: 24px 24px 0 0;
	position: relative;
}

.enk-1f86af3c-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.enk-1f86af3c-card:hover .enk-1f86af3c-card-image {
	transform: scale(1.08);
}

/* Floating Icon */
.enk-1f86af3c-float-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 2px solid #C9A15D;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-top: -30px;
	z-index: 3;
	box-shadow: 0 4px 16px rgba(20, 60, 70, 0.1);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
	color: #143C46;
	font-size: 22px;
	line-height: 1;
}

.enk-1f86af3c-float-icon svg {
	width: 22px;
	height: 22px;
	fill: #143C46;
}

.enk-1f86af3c-card:hover .enk-1f86af3c-float-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 6px 20px rgba(201, 161, 93, 0.25);
}

/* Card Body */
.enk-1f86af3c-card-body {
	padding: 20px 28px 32px 28px;
	text-align: center;
	background-color: #FAF8F3;
	width: 100%;
	box-sizing: border-box;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.enk-1f86af3c-card-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 20px;
	font-weight: 600;
	color: #143C46;
	margin: 0 0 12px 0;
	line-height: 1.3;
}

/* Card Divider */
.enk-1f86af3c-card-divider {
	display: block;
	width: 36px;
	height: 2px;
	background-color: #C9A15D;
	border-radius: 1px;
	margin: 0 auto 14px auto;
}

.enk-1f86af3c-card-desc {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #2F2F2F;
	line-height: 1.65;
	margin: 0;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1024px) {
	.enk-1f86af3c-section {
		padding: 60px 24px;
	}

	.enk-1f86af3c-heading {
		font-size: 44px;
	}

	.enk-1f86af3c-subtitle {
		font-size: 22px;
		margin-bottom: 36px;
	}

	.enk-1f86af3c-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

@media (max-width: 640px) {
	.enk-1f86af3c-section {
		padding: 44px 16px;
	}

	.enk-1f86af3c-heading {
		font-size: 34px;
	}

	.enk-1f86af3c-subtitle {
		font-size: 20px;
		margin-bottom: 28px;
	}

	.enk-1f86af3c-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		max-width: 440px;
		margin: 0 auto;
	}

	.enk-1f86af3c-card-image-wrap {
		height: 220px;
	}

	.enk-1f86af3c-card-body {
		padding: 18px 20px 28px 20px;
	}

	.enk-1f86af3c-card-title {
		font-size: 18px;
	}
}
