HTML
<!-- HTML: این خط را در جای دکمه داخل صفحه قرار دهید -->
<a class="ir-cta-button" href="/contact">تماس با ما</a>
<!-- CSS: این بخش را داخل فایل CSS یا داخل تگ style قرار دهید -->
<style>
.ir-cta-button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
min-height: 56px;
padding: 16px 30px;
border-radius: 999px;
border: 1px solid rgba(255,255,255,0.32);
background: linear-gradient(135deg, #0F766E 0%, #14B8A6 52%, #5EEAD4 100%);
color: #FFFFFF;
box-shadow: 0 18px 36px rgba(20, 184, 166, 0.28);
font-size: 16px;
font-weight: 800;
line-height: 1;
text-decoration: none;
letter-spacing: 0;
cursor: pointer;
user-select: none;
-webkit-tap-highlight-color: transparent;
transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}
.ir-cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 24px 48px rgba(20, 184, 166, 0.36);
filter: saturate(1.08);
}
.ir-cta-button:active {
transform: translateY(0);
}
.ir-cta-button:focus-visible {
outline: 3px solid #14B8A6;
outline-offset: 3px;
}
</style>