.premium-footer-container {
	background-image: linear-gradient(rgb(24 24 24), rgb(53 38 35 / 68%)), url(../img/images/footer/footer-bg.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: white;
	padding: 60px 0 20px 0;
	position: relative;
}
.footer-content-grid {
	display: grid;
	grid-template-columns: 2fr 0.8fr 1.2fr;
	gap: 40px;
}
.footer-section-about {
}
.footer-section-links {
}
.footer-section-contact {
}
.section-title-heading {
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 25px;
	color: #ffffff;
	position: relative;
	padding-bottom: 10px;
	letter-spacing: 1px;
}
.section-title-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #772823, #f5b904);
	border-radius: 2px;
}
.about-description-text {
	font-size: 16px;
	line-height: 1.7;
	color: #ededed;
	margin-bottom: 25px;
	letter-spacing: 1px;
}
.social-media-icons-list {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}	
.social-icon-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: white;
	text-decoration: none;
	font-size: 16px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}
.social-icon-link:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.useful-links-navigation {
	list-style: none;
	padding: 0;
	margin: 0;
}
.navigation-link-item {
	margin-bottom: 12px;
}
.footer-navigation-link {
	color: #ededed;
	text-decoration: none;
	font-size: 16px;
	display: flex;
	letter-spacing: 1px;
	align-items: center;
	padding: 8px 0;
	transition: all 0.3s ease;
}
.footer-navigation-link:hover {
	color: #4ecdc4;
	padding-left: 10px;
}
.footer-navigation-link i {
	margin-right: 10px;
	width: 16px;
}
.contact-information-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.contact-detail-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	padding: 15px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: linear-gradient(90deg, #772823, #f5b904);
	border-radius: 50%;
	margin-right: 15px;
	flex-shrink: 0;
}
.contact-icon-wrapper i {
	color: white;
	font-size: 16px;
}
.contact-text-content {
	flex: 1;
}
.contact-label-text {
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 5px;
	font-size: 14px;
	letter-spacing: 1px;
}
.contact-value-text {
	font-size: 16px;
	line-height: 1.4;
	letter-spacing: 1px;
	CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;
}
.contact-value-text a{
	color: #ededed;
}
.footer-bottom-copyright {
	margin-top: 50px;
	padding-top: 20px;
	border-top: 1px solid rgb(255 255 255 / 66%);
	text-align: center;
}
.footer-bottom-copyright p{
	font-size:18px;
	letter-spacing:1px;
	color: #ededed;
}
/* Floating Contact Buttons CSS */
.contact-buttons {
	position: fixed;
	bottom: 10px;
	left: 5px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 1000;
}
.contact-buttons a {
	color: white;
	font-size: 15px;
	padding: 10px 10px;
	border-radius: 50px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
	text-align: center;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	width: 125px;
	text-decoration: none;
	transition: transform 0.3s ease;
	letter-spacing: 1px;
}
.contact-buttons a.call-button {
	background-color: #772823;
}
.contact-buttons a.whatsapp-button {
	background-color: #095702;
}
.contact-buttons a i {
	margin-right: 10px;
}
.contact-buttons a:hover {
	transform: scale(0.95);
}
@media (max-width: 768px) {
	.footer-content-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.premium-footer-container {
		padding: 40px 0 50px 0;
	}
	.section-title-heading {
		font-size: 1.5rem;
		margin-bottom: 20px;
	}
	.social-media-icons-list {
		justify-content: flex-start;
	}
	.contact-detail-item {
		padding: 12px;
	}
	.contact-buttons {
		width: 100%;
		margin: 0;
		padding: 0;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 99;
		display: block;
	}
	.contact-buttons a {
		min-width: auto;
        padding: 10px 12px;
        font-size: 14px;
        float: left;
        width: 50%;
        overflow: hidden;
        text-align: center;
        border-radius: 0;
	}
}
@media (max-width: 480px) {
	.footer-section-about,
	.footer-section-links,
	.footer-section-contact {
	}
	.section-title-heading {
		font-size: 20px;
	}
	.about-description-text {
		font-size: 14px;
	}
	.footer-navigation-link{
		font-size: 14px;
	}
	.contact-value-text{
		font-size: 14px;
	}
	.contact-label-text{
		font-size: 12px;
	}
	.footer-bottom-copyright p{
		font-size: 15px;
	}
	.social-icon-link {
		width: 40px;
		height: 40px;
		font-size: 14px;
	}
}