@font-face {
    font-family: "Rubik";
    src: url("/assets/fonts/Rubik-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Rubik";
    src: url("/assets/fonts/Rubik-ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    direction: rtl;
    scroll-behavior: smooth;
}

*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 4px;
}

:root {
    --primary-color: #2FF1FF;
    --primary-color-rgb: 47, 241, 255;
    --bg-color: #0F172A;
    --bg-color-rgb: 15, 23, 42;
    --secondery-bg-color: #1E3A8A;
    --text-color: #FFFCF2;
    --text-color-rgb: 255, 252, 242;
}

/* Chrome / Edge / Safari Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    border-radius: 999px;
    background-color: var(--bg-color);
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(var(--bg-color-rgb), 0.50);
    background-clip: padding-box;
}

::selection {
    color: var(--bg-color);
    background: var(--primary-color);
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-heading {
    flex-direction: column;
    line-height: 100%;
    font-size: clamp(2.3rem, 5vw, 3.7rem);
    font-weight: 400;
    color: var(--text-color);
}

.section-heading span {
    font-weight: 800;
    color: var(--primary-color);
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    cursor: pointer;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    font-family: inherit;
    background: none;
    transition: .5s ease-in-out;
}

.button:hover {
    transform: scale(1.05);
}

.button .part {
    padding: 0 15px;
    min-height: 40px;
    border-radius: 999px;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 800;
    color: var(--bg-color);
    background: var(--primary-color);
}

.button .arrow {
    padding: 10px;
    min-width: 40px;
    width: 40px;
    height: 40px;
    color: var(--bg-color);
}

.button .arrow svg {
    width: 100%;
    height: 100%;
    transform: rotate(35deg);
    transition: .5s ease-in-out;
}

.button:hover .arrow svg {
    transform: rotate(0deg);
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    border-radius: 999px;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: .5s ease-in-out;
    z-index: 999999;
}

.whatsapp-btn:hover {
    transform: scale(1.07);
}

.whatsapp-btn svg {
    width: 100%;
    height: 100%;
}

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    pointer-events: none;
}

.page-transition .col {
    flex: 1;
    background: var(--primary-color);
    transform: scaleY(0);
    transform-origin: bottom;
}

html,
body {
    width: 100%;
    min-height: 100vh;
    font-family: 'Rubik', sans-serif;
    background: linear-gradient(-270deg, var(--bg-color, #0F172A) 4.84%, var(--secondery-bg-color, #1E3A8A) 133.1%);
}

section {
    padding: 80px 30px;
    width: 100%;
    height: max-content;
}

@media (min-width: 768px) {
    .button .part {
        padding: 0 24px;
        min-height: 52px;
    }

    .button .arrow {
        padding: 15px;
        min-width: 52px;
        width: 52px;
        height: 52px;
    }

    section {
        padding: 80px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .toast {
        transition: none !important;
        transform: none !important;
    }

    .toast.show,
    .toast.hide {
        transition: none !important;
        transform: none !important;
        opacity: 1;
    }

    .toast.hide {
        opacity: 0;
    }

    .button:hover {
        transform: scale(1);
    }

    .button:hover .arrow svg {
        transform: rotate(35deg);
    }

    .process-section .steps {
        flex-direction: column;
        width: 100%;
    }
}