/**
 * Contact Widget Styles
 *
 * @package KO_Elementor_Addons
 */

/* Section Container */
.ko-contact-section {
	text-align: center;
}

.ko-contact-section .ko-container {
	max-width: 800px;
	margin: 0 auto;
}

/* Contact Info Box */
.ko-contact-info {
	text-align: left;
}

.ko-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 16px 0;
}

.ko-contact-item:not(:last-child) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ko-contact-item-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ko-contact-item-icon svg {
	width: 24px;
	height: 24px;
	stroke-width: 2;
}

.ko-contact-item-text {
	flex: 1;
	font-size: 16px;
	line-height: 1.6;
}

.ko-contact-item-text a {
	text-decoration: none;
	transition: color 0.3s ease;
}

.ko-contact-item-text a:hover {
	text-decoration: underline;
}

/* Social Media Section */
.ko-social-section {
	text-align: center;
}

.ko-social-title {
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}

.ko-social-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.ko-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	transition: all 0.3s ease;
	text-decoration: none;
}

.ko-social-icon:hover {
	transform: translateY(-3px);
}

.ko-social-icon svg {
	transition: fill 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
	.ko-contact-section .ko-container {
		max-width: 100%;
	}

	.ko-contact-item {
		gap: 12px;
		padding: 12px 0;
	}

	.ko-contact-item-text {
		font-size: 15px;
	}

	.ko-social-title {
		font-size: 18px;
	}

	.ko-social-icon {
		width: 44px;
		height: 44px;
	}
}
