#location-mobile__version {
	display: none;
}
#navbar-postcode {
  	display: none !important;
}
textarea.form-control-floating {
	display: block;
    padding-top: 20px;
}

/* start: Contact */
.contact-section {
	padding: 48px 0;
}
.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 54px;
}
.contact-card {
	background-color: var(--white);
	padding: 32px;
	border-radius: 16px;
}
.contact-card-title {
	font-size: 32px;
	font-weight: 600;
	color: var(--primary-500);
	margin-bottom: 24px;
}
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 28px;
}
.contact-content {
	border-radius: 16px;
	padding: 32px;
	background-image: linear-gradient(90deg, rgba(0,0,0,.7), rgba(0,0,0,.7)), url(/assets/images/contact-banner.jpg);
	background-size: cover;
	background-position: center, bottom -64px center;
}
.contact-content-title {
	font-size: 32px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 40px;
}
.contact-content-list {
	display: flex;
	flex-direction: column;
	gap: 32px;
	list-style-type: none;
}
.contact-content-list-item {
	display: flex;
	gap: 12px;
}
.contact-content-list-item-title {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 12px;
	color: var(--white);
}
.contact-content-list-item-description {
	font-size: 16px;
    color: #EAEAEA;
}
/* end: Contact */

/* start: WhatsApp Contact Button */
.whatsapp-contact-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: whatsapp-pulse 2s infinite;
}
.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ed325c;
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(237, 50, 92, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.whatsapp-link:hover {
    background-color: #d42850;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 50, 92, 0.4);
    text-decoration: none;
}
.whatsapp-link:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
    background-color: #d42850;
    color: white;
}
.whatsapp-link i {
    font-size: 20px;
    line-height: 1;
}
.whatsapp-text {
    font-family: inherit;
    letter-spacing: 0.5px;
}
@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
/* end: WhatsApp Contact Button */

@media (max-width: 992px) {
	.contact-wrapper {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
    .whatsapp-contact-button {
        bottom: 15px;
        right: 15px;
    }
    .whatsapp-link {
        padding: 10px 14px;
        font-size: 13px;
    }
    .whatsapp-link i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
	.contact-card-title,
	.contact-content-title {
		font-size: 24px;
	}
	.contact-card,
	.contact-content {
		padding: 24px;
	}

    .whatsapp-text {
        display: none;
    }
    .whatsapp-link {
        padding: 12px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        justify-content: center;
    }
}
