/* Inter Font - Variable */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/Inter-CyrillicExt.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/Inter-Cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/Inter-Latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Base */
body {
  font-family: 'Inter', sans-serif;
}

/* Custom Colors */
.text-primary { color: #5e2a2a; }
.bg-primary { background-color: #5e2a2a; }
.border-primary { border-color: #5e2a2a; }
.hover-bg-primary:hover { background-color: #4a2020; }

/* Modal */
#consultation-modal.active {
  display: flex;
}

#consultation-modal .relative {
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Phone input mask placeholder */
#form-phone::-webkit-input-placeholder {
  color: #9ca3af;
}

/* Focus ring for primary color */
#consultation-form input:focus,
#consultation-form textarea:focus {
  border-color: #5e2a2a;
  box-shadow: 0 0 0 3px rgba(94, 42, 42, 0.15);
}

