/* Contact Map Section */
.contact-map-section {
	padding: 60px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-map-container {
	display: flex;
	gap: 50px;
	align-items: stretch;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.map-column,
.contact-details-column {
	flex: 1;
	min-width: 300px;
}

/* Map Styles */
.google-map-wrapper {
	width: 100%;
	height: 450px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-map-wrapper:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.google-map-wrapper iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.google-map-placeholder {
	width: 100%;
	height: 450px;
	background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6c757d;
	font-size: 16px;
}

/* Contact Details Styles */
.contact-details-wrapper {
	background: white;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.contact-details-wrapper h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 30px;
	color: #1b2c31;
	position: relative;
	padding-bottom: 15px;
}

.contact-details-wrapper h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 4px;
	background: linear-gradient(90deg, #3D7176 0%, #3d7a88 100%);
	border-radius: 2px;
}

/* Contact Items */
.contact-item {
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e9ecef;
	transition: all 0.3s ease;
}

.contact-item:last-of-type:not(.contact-directions) {
	border-bottom: none;
	margin-bottom: 30px;
	padding-bottom: 0;
}

.contact-item:hover {
	padding-left: 10px;
}

.contact-item h3 {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #1b2c31;
	margin-bottom: 8px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 8px;
}

.contact-item p {
	font-size: 16px;
	color: #333333;
	line-height: 1.8;
	margin: 0;
	font-weight: 500;
}

.contact-item a {
	color: #3D7176;
	text-decoration: none;
	font-weight: 600;
	position: relative;
	transition: all 0.3s ease;
}

.contact-item a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: #3D7176;
	transition: width 0.3s ease;
}

.contact-item a:hover {
	color: #3d7a88;
}

.contact-item a:hover::after {
	width: 100%;
}

/* Directions Button */
.contact-directions {
	margin-top: auto;
	padding-top: 20px;
	border-top: 2px solid #e9ecef;
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

/* Opening Hours Styles */
.contact-hours {
	margin-top: auto;
	padding-top: 20px;
	border-top: 2px solid #e9ecef;
}

.hours-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hours-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid #f0f0f0;
	font-size: 14px;
}

.hours-row:last-child {
	border-bottom: none;
}

.hours-row .day {
	font-weight: 600;
	color: #1b2c31;
}

.hours-row .time {
	color: #559da4;
	font-weight: 600;
}

.hours-row .time:contains("Κλειστά") {
	color: #e74c3c;
}

.directions-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 32px;
	background: linear-gradient(135deg, #3D7176 0%, #3d7a88 100%);
	color: #ffffff !important;
	text-decoration: none !important;
	border-radius: 8px;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(85, 157, 164, 0.3);
	border: 2px solid transparent;
	width: 100%;
	text-align: center;
}

.directions-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(85, 157, 164, 0.4);
	background: linear-gradient(135deg, #3d7a88 0%, #2d5a66 100%);
}

.directions-button:active {
	transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.contact-map-container {
		gap: 40px;
	}

	.contact-details-wrapper {
		padding: 35px;
	}
}

@media (max-width: 768px) {
	.contact-map-section {
		padding: 40px 0;
	}

	.contact-map-container {
		flex-direction: column;
		gap: 30px;
		padding: 0 15px;
	}

	.map-column,
	.contact-details-column {
		flex: 1 100%;
	}

	.google-map-wrapper,
	.google-map-placeholder {
		height: 350px;
	}

	.contact-details-wrapper {
		padding: 30px;
		border-radius: 10px;
	}

	.contact-details-wrapper h2 {
		font-size: 26px;
		margin-bottom: 25px;
	}

	.contact-item {
		margin-bottom: 22px;
		padding-bottom: 18px;
	}

	.directions-button {
		padding: 12px 24px;
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.contact-map-section {
		padding: 30px 0;
	}

	.contact-map-container {
		gap: 20px;
		padding: 0 10px;
	}

	.google-map-wrapper,
	.google-map-placeholder {
		height: 280px;
		border-radius: 10px;
	}

	.contact-details-wrapper {
		padding: 25px;
	}

	.contact-details-wrapper h2 {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.contact-details-wrapper h2::after {
		width: 40px;
	}

	.contact-item h3 {
		font-size: 11px;
		letter-spacing: 1.5px;
	}

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

	.directions-button {
		padding: 11px 20px;
		font-size: 11px;
	}
}