@font-face {
    font-family: 'Special Gothic';
    src: url('../fonts/SpecialGothic-VariableFont_wdth_wght.ttf') format('truetype');
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('../fonts/Vazirmatn-Black.ttf') format('truetype');
    font-weight: 900;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('../fonts/Vazirmatn-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('../fonts/Vazirmatn-ExtraBold.ttf') format('truetype');
    font-weight: 800;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('../fonts/Vazirmatn-ExtraLight.ttf') format('truetype');
    font-weight: 200;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('../fonts/Vazirmatn-Light.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('../fonts/Vazirmatn-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('../fonts/Vazirmatn-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('../fonts/Vazirmatn-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('../fonts/Vazirmatn-Thin.ttf') format('truetype');
    font-weight: 100;
}

:root{
    --footer-bg-color: #2E261F;
}

body {
    font-family: 'Special Gothic', 'Vazirmatn', sans-serif;
    background-color: #F5F5F5;
}

.footer-container{
    background-color: var(--footer-bg-color);
}

.footer-logo{
    max-height: 3rem;
}

.page-header{
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.app-button{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 5px 3px 5px 22px;
  border: 2px solid #000;
  border-radius: 999px;
  background-color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s ease;
}

[dir="rtl"] .app-button {
  padding: 5px 22px 5px 3px;
}

.app-button .text {
  white-space: nowrap;
  text-transform: uppercase;
}

.app-button .icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
}

.app-button:hover {
  background-color: #000;
  color: #fff;
}

.app-button:hover .icon {
  background-color: #fff;
  color: #000;
}

.app-button:hover .icon svg path {
    stroke: #000;
}

.iti {
    width: 100% !important
}

@media (max-width: 768px) {
    .iti__country-list {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        max-height: 70vh !important;
        width: 90vw !important;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        z-index: 9999;
        background: #fff;
    }
}

.change-language{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
}

.change-language a{
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #fff;
  transition: all 0.25s ease;
  text-decoration: none;
  color: #000;
}

.form-check-input, input[type="checkbox"] {
    width: 1.5em;
    height: 1.5em;
    border: 2px solid var(--footer-bg-color);
    border-radius: 0.25em;
    background-color: #fff;
    transition: box-shadow 0.2s, border-color 0.2s;
}

    .form-check-input:checked, input[type="checkbox"]:checked {
        background-color: var(--footer-bg-color);
        border-color: var(--footer-bg-color);
        box-shadow: 0 0 0 0.2rem rgba(132,24,73,0.15);
    }

    .form-check-input:focus, input[type="checkbox"]:focus {
        box-shadow: 0 0 0 0.2rem rgba(132,24,73,0.25);
        border-color: var(--footer-bg-color);
    }