
@keyframes simpleCardEntrance {
	0% {
		opacity: 0;
		transform: translateY(40px) scale(0.9);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.card-simple {
	background-color: #ffffff;
	border-radius: 12px;

	aspect-ratio: 1 / 1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 70%;

	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
	cursor: pointer;

	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;

	opacity: 0;
	animation: simpleCardEntrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.card-simple:hover {
	transform: translateY(-8px) scale(1.05);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
	z-index: 2;
	position: relative;
}

.card-simple:nth-child(1) { animation-delay: 0.1s; }
.card-simple:nth-child(2) { animation-delay: 0.2s; }
.card-simple:nth-child(3) { animation-delay: 0.3s; }
.card-simple:nth-child(4) { animation-delay: 0.4s; }
.card-simple:nth-child(5) { animation-delay: 0.5s; }
.card-simple:nth-child(6) { animation-delay: 0.6s; }
.card-simple:nth-child(7) { animation-delay: 0.7s; }
.card-simple:nth-child(8) { animation-delay: 0.8s; }

@media (max-width: 480px) {
	.dynamic-logo-grid {
		grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
		gap: 15px;
		padding: 15px;
	}

	.card-simple:hover {
		transform: translateY(-4px) scale(1.02);
	}
}


.contact-info-wrapper {
	color: #ffffff;
	width: 100%;
	box-sizing: border-box;
	gap: 1rem;
}

.contact-item {
	border-bottom: 1px solid var(--primary-green);
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	gap : 10px
}

.contact-title {
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	font-family: Lexend, sans-serif;
	letter-spacing: 0.5px;
}

.contact-desc {
	font-family: Lexend, sans-serif;
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
	line-height: 1.5;
}

@media (max-width: 768px) {

	.contact-title {
		font-size: 16px;
	}

	.contact-desc {
		font-size: 14px;
	}
}
