#contact-us-page {
	background-color: #ffffff;
	font-family: 'Gentona', sans-serif;
}

/* Header */
#contact-us-page header {
	background-color: #ffffff;
	padding: 20px 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	position: sticky;
	top: 0;
	z-index: 1000;
}

#contact-us-page .logo img {
	max-width: 280px; 
  	display: block;
}

#contact-us-page header img {
	padding-top: 5px;
	padding-bottom: 5px;
}

#contact-us-page header .vertical-bar {
	border-left: 1px solid rgba(128, 128, 128, 0.3);
	height: 20px;
	display: inline-block;
	margin: 0 10px;
}

#contact-us-page header .links {
	padding-top: 15px;
	text-align: right;
}

#contact-us-page header a.link {
    font-size: 14px;
    font-weight: 500;
    margin: 0 15px;
    padding: 5px 0;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
	color: #2e3840;
}

#contact-us-page header a.link:hover {
    text-decoration: none;
    color: #1a76ba;
    border-bottom: 2px solid #1a76ba;
}

#contact-us-page header a.login {
    color: #1a76ba;
}

#contact-us-page header .btn-demo {
	background-color: #1a76ba;
	color: #ffffff;
	padding: 8px 20px;
	border-radius: 4px;
	margin: 0 15px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	display: inline-block;
}

#contact-us-page header .btn-demo:hover {
	background-color: #155a91;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(26, 118, 186, 0.3);
}

/* Contact Hero */
#contact-hero {
	background: linear-gradient(135deg, #1a76ba 0%, #2e3840 100%);
	color: #ffffff;
	padding: 80px 0;
	text-align: center;
}

#contact-hero .contact-main-title {
	font-size: 48px;
	font-weight: 300;
	margin-bottom: 20px;
}

#contact-hero .contact-subtitle {
	font-size: 24px;
	font-weight: 300;
	margin-bottom: 10px;
	opacity: 0.95;
}

/* Contact Form Section */
#contact-form-section {
	padding: 80px 0;
	background-color: #f9f9f9;
}

/* Contact Information Card */
#contact-form-section .contact-info-card {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 40px 35px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	height: 100%;
}

#contact-form-section .contact-info-card h3 {
	font-size: 28px;
	font-weight: 600;
	color: #2e3840;
	margin-bottom: 30px;
}

#contact-form-section .info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #f0f0f0;
}

#contact-form-section .info-item:last-of-type {
	border-bottom: none;
	margin-bottom: 40px;
}

#contact-form-section .info-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #1a76ba 0%, #155a91 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	flex-shrink: 0;
}

#contact-form-section .info-icon .glyphicon {
	font-size: 24px;
	color: #ffffff;
}

#contact-form-section .info-content {
	flex-grow: 1;
}

#contact-form-section .info-content h4 {
	font-size: 18px;
	font-weight: 600;
	color: #2e3840;
	margin: 0 0 8px 0;
}

#contact-form-section .info-content p {
	font-size: 15px;
	color: #666666;
	line-height: 1.6;
	margin: 0;
}

#contact-form-section .info-content a {
	color: #1a76ba;
	text-decoration: none;
	transition: color 0.3s ease;
}

#contact-form-section .info-content a:hover {
	color: #155a91;
	text-decoration: underline;
}

#contact-form-section .demo-link {
	font-weight: 500;
}

#contact-form-section .social-links {
	display: flex;
	gap: 15px;
	justify-content: flex-start;
	margin-top: 20px;
}

#contact-form-section .social-links a {
	display: inline-block;
	transition: transform 0.3s ease;
}

#contact-form-section .social-links a:hover {
	transform: translateY(-3px);
}

#contact-form-section .social-links img {
	width: 40px;
	height: 40px;
}

/* Contact Form Card */
#contact-form-section .contact-form-card {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 40px 35px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

#contact-form-section .contact-form-card h3 {
	font-size: 28px;
	font-weight: 600;
	color: #2e3840;
	margin-bottom: 30px;
}

#contact-form-section .form-group {
	margin-bottom: 25px;
}

#contact-form-section .form-group label {
	font-weight: 500;
	color: #2e3840;
	margin-bottom: 8px;
	font-size: 15px;
	display: block;
}

#contact-form-section .form-control {
	border: 1px solid #dddddd;
	border-radius: 6px;
	padding: 12px 15px;
	font-size: 15px;
	width: 100%;
	transition: all 0.3s ease;
}

#contact-form-section .form-control:focus {
	border-color: #1a76ba;
	box-shadow: 0 0 0 0.2rem rgba(26, 118, 186, 0.25);
	outline: none;
}

#contact-form-section textarea.form-control {
	resize: vertical;
	min-height: 120px;
}

#contact-form-section .loading-container {
	text-align: center;
	padding: 60px 0;
}

#contact-form-section .loading {
	width: 100px;
}

#contact-form-section .btn-submit {
	display: block;
	width: 100%;
	padding: 15px 30px;
	background-color: #1a76ba;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	border: none;
	border-radius: 6px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	margin-top: 10px;
}

#contact-form-section .btn-submit:hover:not(:disabled) {
	background-color: #155a91;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(26, 118, 186, 0.4);
}

#contact-form-section .btn-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Footer */
#contact-footer.footer {
	background-color: #cd1919;
	color: #faebd7;
	padding: 60px 0 20px;
	font-size: 16px;
}

#contact-footer .title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #faebd7;
}

#contact-footer a {
	color: #faebd7;
	text-decoration: underline;
}

#contact-footer a:hover {
	color: #ffffff;
}

#contact-footer .protected-seal img {
	max-width: 400px;
}

#contact-footer img {    
	max-width: 50px;
    padding: 10px;
    margin: 10px 5px;
}

#contact-footer .glyphicon {   
    font-size: 39px;
    color: #faebd7;
    vertical-align: -10px;
    padding-left: 6px;
}

#contact-footer .fineprint {
	padding-top: 30px;
	font-size: 14px;
	opacity: 0.8;
}

/* Responsive Design */
@media only screen and (max-width: 991px) {
	#contact-us-page header .links {
		text-align: center;
		padding-top: 20px;
	}

	#contact-us-page header a.link {
		margin: 5px 10px;
		font-size: 13px;
	}

	#contact-hero .contact-main-title {
		font-size: 36px;
	}

	#contact-hero .contact-subtitle {
		font-size: 20px;
	}

	#contact-form-section .contact-info-card {
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 767px) {
	#contact-us-page .logo img {
		max-width: 200px;
	}

	#contact-hero .contact-main-title {
		font-size: 32px;
	}

	#contact-hero .contact-subtitle {
		font-size: 18px;
	}

	#contact-form-section .contact-info-card h3,
	#contact-form-section .contact-form-card h3 {
		font-size: 24px;
	}

	#contact-form-section .info-icon {
		width: 45px;
		height: 45px;
	}

	#contact-form-section .info-icon .glyphicon {
		font-size: 20px;
	}
}