@charset "utf-8";

/*********************************
4. Breadcrumbs
*********************************/

.breadcrumbs
{
	width: 100%;
	height: 60px;
	border-bottom: solid 1px #ebebeb;
	margin-bottom: 58px;
}
.breadcrumbs ul li
{
	display: inline-block;
	margin-right: 17px;
}
.breadcrumbs ul li.active a
{
	color: #b9b4c7;
}
.breadcrumbs ul li i
{
	margin-right: 17px;
}
.breadcrumbs ul li a
{
	color: #51545f;
	transition: all 0.3s ease;
}
.breadcrumbs ul li a:hover
{
	color: var(--gold-solid);
}

/*********************************
5. Contact Container
*********************************/

.contact_container
{
	margin-top: 150px;
	padding-bottom: 80px;
}

/*********************************
6. Google Map
*********************************/
/*********************************
6. Google Map
*********************************/

#google_map
{
	width: 100%;
	margin-bottom: 59px;
}
.map_container
{
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0px 27px 59px rgba(0, 0, 0, 0.15);
}

.map_container iframe
{
	display: block;
	width: 100%;
	height: 450px;
	border: none;
	transition: all 0.3s ease;
}

.map_container iframe:hover
{
	transform: scale(1.01);
}

/* Responsive Map */
@media (max-width: 768px)
{
	.map_container iframe
	{
		height: 350px;
	}
}

@media (max-width: 576px)
{
	.map_container iframe
	{
		height: 280px;
	}
}
/*********************************
7. Contact Us
*********************************/

.contact_contents
{
	padding-right: 30px;
}
.contact_contents h1,
.follow_us_contents h1,
.get_in_touch_contents h1
{
	font-size: 40px;
	font-weight: 500;
	margin-bottom: 20px;
	color: var(--black);
}
.contact_contents > p,
.get_in_touch_contents > p
{
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 30px;
	color: var(--gray-text);
}

/* Contact Info Items */
.contact_info_item
{
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
	padding: 15px;
	background: var(--white);
	border-radius: 10px;
	transition: all 0.3s ease;
	border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact_info_item:hover
{
	transform: translateX(5px);
	border-color: rgba(212, 175, 55, 0.3);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact_icon
{
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	transition: all 0.3s ease;
}

.contact_info_item:hover .contact_icon
{
	background: var(--gold-mid);
}

.contact_icon i
{
	font-size: 22px;
	color: var(--gold-solid);
	transition: all 0.3s ease;
}

.contact_info_item:hover .contact_icon i
{
	color: var(--white);
}

.contact_text p
{
	font-size: 14px;
	color: var(--gray-text);
	line-height: 1.6;
	margin-bottom: 0;
}

.contact_text strong
{
	color: var(--black);
	font-weight: 600;
}

/*********************************
8. Follow Us
*********************************/

.follow_us_contents
{
	margin-top: 40px;
	padding: 25px;
	background: var(--white);
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(212, 175, 55, 0.1);
}

.follow_us_contents h1
{
	font-size: 28px !important;
	margin-bottom: 10px;
}

.follow_us_contents p
{
	font-size: 13px;
	color: var(--gray-text);
	margin-bottom: 20px;
}

.social
{
	margin-top: 20px;
}
.social li
{
	margin-right: 12px;
}
.social li:last-child
{
	margin-right: 0px;
}
.social li a
{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.social li a i
{
	color: #FFFFFF;
	font-size: 20px;
}
.social li:hover a
{
	transform: translateY(-5px);
	box-shadow: 0px 10px 20px rgba(0,0,0,0.3);
}

/*********************************
9. Contact Form
*********************************/

.get_in_touch_contents
{
	padding: 30px;
	background: var(--white);
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(212, 175, 55, 0.1);
}

.get_in_touch_contents h1
{
	font-size: 28px !important;
}

.form_input
{
	display: block;
	width: 100%;
	height: 50px;
	border: solid 1px #e5e5e5;
	padding-left: 20px;
	font-size: 14px;
	margin-bottom: 15px;
	border-radius: 5px;
	transition: all 0.3s ease;
}
.input_message
{
	width: 100%;
	margin-bottom: 15px;
	font-size: 14px;
	padding: 15px 20px;
	border-radius: 5px;
	resize: vertical;
}
.form_input:focus,
.input_message:focus,
#newsletter_email:focus
{
	border: solid 1px var(--gold-solid) !important;
	box-shadow: none !important;
	outline: none;
}
.message_submit_btn
{
	background: var(--gold-mid);
	color: var(--white);
	text-transform: uppercase;
	width: 100%;
	border: none;
	height: 50px;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	border-radius: 5px;
	transition: all 0.3s ease;
}
.message_submit_btn:hover
{
	background: var(--gold-royal);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
:focus
{
	outline: none !important;
}
.input_ph::-webkit-input-placeholder
{
	font-size: 14px !important;
	font-weight: 400;
	color: #b9b4c7 !important;
}
.input_ph:-moz-placeholder
{
	font-size: 14px !important;
	font-weight: 400;
	color: #b9b4c7 !important;
}
.input_ph::-moz-placeholder
{
	font-size: 14px !important;
	font-weight: 400;
	color: #b9b4c7 !important;
}
.input_ph:-ms-input-placeholder
{
	font-size: 14px !important;
	font-weight: 400;
	color: #b9b4c7 !important;
}
.input_ph::input-placeholder
{
	font-size: 14px !important;
	font-weight: 400;
	color: #b9b4c7 !important;
}
textarea
{
	border: solid 1px #e5e5e5;
	font-family: 'Poppins', sans-serif;
}
textarea:hover,
.form_input:hover
{
	border-color: var(--gold-solid) !important;
}
.privacy_note
{
	font-size: 12px;
	margin-top: 15px;
	color: #999;
	text-align: center;
}
.input_name
{
	margin-bottom: 15px;
}

/*********************************
10. Responsive
*********************************/

@media (max-width: 992px)
{
	.contact_container
	{
		margin-top: 120px;
	}
	.contact_contents
	{
		padding-right: 0;
		margin-bottom: 30px;
	}
	.contact_contents h1,
	.follow_us_contents h1,
	.get_in_touch_contents h1
	{
		font-size: 32px;
	}
}

@media (max-width: 768px)
{
	.contact_container
	{
		margin-top: 100px;
	}
	.contact_contents h1,
	.follow_us_contents h1,
	.get_in_touch_contents h1
	{
		font-size: 28px;
	}
	.contact_info_item
	{
		padding: 12px;
	}
	.contact_icon
	{
		width: 40px;
		height: 40px;
	}
	.contact_icon i
	{
		font-size: 18px;
	}
}

@media (max-width: 576px)
{
	.contact_container
	{
		margin-top: 80px;
	}
	.contact_contents h1,
	.follow_us_contents h1,
	.get_in_touch_contents h1
	{
		font-size: 24px;
	}
	.social li a
	{
		width: 35px;
		height: 35px;
	}
	.social li a i
	{
		font-size: 16px;
	}
}